OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library pub_tests; | 5 library pub_tests; |
6 | 6 |
7 import 'dart:io'; | 7 import 'dart:io'; |
8 | 8 |
9 import '../../../../pkg/pathos/lib/path.dart' as path; | 9 import '../../../../pkg/pathos/lib/path.dart' as path; |
10 import '../../../../pkg/unittest/lib/unittest.dart'; | |
11 | 10 |
| 11 import '../descriptor.dart' as d; |
12 import '../test_pub.dart'; | 12 import '../test_pub.dart'; |
13 | 13 |
14 main() { | 14 main() { |
15 initConfig(); | 15 initConfig(); |
16 integration('replaces a broken "packages" symlink', () { | 16 integration('replaces a broken "packages" symlink', () { |
17 dir(appPath, [ | 17 d.dir(appPath, [ |
18 appPubspec([]), | 18 d.appPubspec([]), |
19 libDir('foo'), | 19 d.libDir('foo'), |
20 dir("bin") | 20 d.dir("bin") |
21 ]).scheduleCreate(); | 21 ]).create(); |
22 | 22 |
23 // Create a broken "packages" symlink in "bin". | 23 // Create a broken "packages" symlink in "bin". |
24 scheduleSymlink("nonexistent", path.join(appPath, "packages")); | 24 scheduleSymlink("nonexistent", path.join(appPath, "packages")); |
25 | 25 |
26 schedulePub(args: ['install'], | 26 schedulePub(args: ['install'], |
27 output: new RegExp(r"Dependencies installed!$")); | 27 output: new RegExp(r"Dependencies installed!$")); |
28 | 28 |
29 dir(appPath, [ | 29 d.dir(appPath, [ |
30 dir("bin", [ | 30 d.dir("bin", [ |
31 dir("packages", [ | 31 d.dir("packages", [ |
32 dir("myapp", [ | 32 d.dir("myapp", [ |
33 file('foo.dart', 'main() => "foo";') | 33 d.file('foo.dart', 'main() => "foo";') |
34 ]) | 34 ]) |
35 ]) | 35 ]) |
36 ]) | 36 ]) |
37 ]).scheduleValidate(); | 37 ]).validate(); |
38 }); | 38 }); |
39 | 39 |
40 integration('replaces a broken secondary "packages" symlink', () { | 40 integration('replaces a broken secondary "packages" symlink', () { |
41 dir(appPath, [ | 41 d.dir(appPath, [ |
42 appPubspec([]), | 42 d.appPubspec([]), |
43 libDir('foo'), | 43 d.libDir('foo'), |
44 dir("bin") | 44 d.dir("bin") |
45 ]).scheduleCreate(); | 45 ]).create(); |
46 | 46 |
47 // Create a broken "packages" symlink in "bin". | 47 // Create a broken "packages" symlink in "bin". |
48 scheduleSymlink("nonexistent", path.join(appPath, "bin", "packages")); | 48 scheduleSymlink("nonexistent", path.join(appPath, "bin", "packages")); |
49 | 49 |
50 schedulePub(args: ['install'], | 50 schedulePub(args: ['install'], |
51 output: new RegExp(r"Dependencies installed!$")); | 51 output: new RegExp(r"Dependencies installed!$")); |
52 | 52 |
53 dir(appPath, [ | 53 d.dir(appPath, [ |
54 dir("bin", [ | 54 d.dir("bin", [ |
55 dir("packages", [ | 55 d.dir("packages", [ |
56 dir("myapp", [ | 56 d.dir("myapp", [ |
57 file('foo.dart', 'main() => "foo";') | 57 d.file('foo.dart', 'main() => "foo";') |
58 ]) | 58 ]) |
59 ]) | 59 ]) |
60 ]) | 60 ]) |
61 ]).scheduleValidate(); | 61 ]).validate(); |
62 }); | 62 }); |
63 } | 63 } |
OLD | NEW |