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'; |
10 | 11 |
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 d.dir(appPath, [ | 17 dir(appPath, [ |
18 d.appPubspec([]), | 18 appPubspec([]), |
19 d.libDir('foo'), | 19 libDir('foo'), |
20 d.dir("bin") | 20 dir("bin") |
21 ]).create(); | 21 ]).scheduleCreate(); |
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 d.dir(appPath, [ | 29 dir(appPath, [ |
30 d.dir("bin", [ | 30 dir("bin", [ |
31 d.dir("packages", [ | 31 dir("packages", [ |
32 d.dir("myapp", [ | 32 dir("myapp", [ |
33 d.file('foo.dart', 'main() => "foo";') | 33 file('foo.dart', 'main() => "foo";') |
34 ]) | 34 ]) |
35 ]) | 35 ]) |
36 ]) | 36 ]) |
37 ]).validate(); | 37 ]).scheduleValidate(); |
38 }); | 38 }); |
39 | 39 |
40 integration('replaces a broken secondary "packages" symlink', () { | 40 integration('replaces a broken secondary "packages" symlink', () { |
41 d.dir(appPath, [ | 41 dir(appPath, [ |
42 d.appPubspec([]), | 42 appPubspec([]), |
43 d.libDir('foo'), | 43 libDir('foo'), |
44 d.dir("bin") | 44 dir("bin") |
45 ]).create(); | 45 ]).scheduleCreate(); |
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 d.dir(appPath, [ | 53 dir(appPath, [ |
54 d.dir("bin", [ | 54 dir("bin", [ |
55 d.dir("packages", [ | 55 dir("packages", [ |
56 d.dir("myapp", [ | 56 dir("myapp", [ |
57 d.file('foo.dart', 'main() => "foo";') | 57 file('foo.dart', 'main() => "foo";') |
58 ]) | 58 ]) |
59 ]) | 59 ]) |
60 ]) | 60 ]) |
61 ]).validate(); | 61 ]).scheduleValidate(); |
62 }); | 62 }); |
63 } | 63 } |
OLD | NEW |