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 '../../descriptor.dart' as d; | |
10 import '../../test_pub.dart'; | 9 import '../../test_pub.dart'; |
11 | 10 |
12 main() { | 11 main() { |
13 integration("doesn't update one locked Git package's dependencies if it's " | 12 integration("doesn't update one locked Git package's dependencies if it's " |
14 "not necessary", () { | 13 "not necessary", () { |
15 ensureGit(); | 14 ensureGit(); |
16 | 15 |
17 d.git('foo.git', [ | 16 git('foo.git', [ |
18 d.libDir('foo'), | 17 libDir('foo'), |
19 d.libPubspec("foo", "1.0.0", deps: [{"git": "../foo-dep.git"}]) | 18 libPubspec("foo", "1.0.0", deps: [{"git": "../foo-dep.git"}]) |
20 ]).create(); | 19 ]).scheduleCreate(); |
21 | 20 |
22 d.git('foo-dep.git', [ | 21 git('foo-dep.git', [ |
23 d.libDir('foo-dep'), | 22 libDir('foo-dep'), |
24 d.libPubspec('foo-dep', '1.0.0') | 23 libPubspec('foo-dep', '1.0.0') |
25 ]).create(); | 24 ]).scheduleCreate(); |
26 | 25 |
27 d.appDir([{"git": "../foo.git"}]).create(); | 26 appDir([{"git": "../foo.git"}]).scheduleCreate(); |
28 | 27 |
29 schedulePub(args: ['install'], | 28 schedulePub(args: ['install'], |
30 output: new RegExp(r"Dependencies installed!$")); | 29 output: new RegExp(r"Dependencies installed!$")); |
31 | 30 |
32 d.dir(packagesPath, [ | 31 dir(packagesPath, [ |
33 d.dir('foo', [ | 32 dir('foo', [ |
34 d.file('foo.dart', 'main() => "foo";') | 33 file('foo.dart', 'main() => "foo";') |
35 ]), | 34 ]), |
36 d.dir('foo-dep', [ | 35 dir('foo-dep', [ |
37 d.file('foo-dep.dart', 'main() => "foo-dep";') | 36 file('foo-dep.dart', 'main() => "foo-dep";') |
38 ]) | 37 ]) |
39 ]).validate(); | 38 ]).scheduleValidate(); |
40 | 39 |
41 d.git('foo.git', [ | 40 git('foo.git', [ |
42 d.libDir('foo', 'foo 2'), | 41 libDir('foo', 'foo 2'), |
43 d.libPubspec("foo", "1.0.0", deps: [{"git": "../foo-dep.git"}]) | 42 libPubspec("foo", "1.0.0", deps: [{"git": "../foo-dep.git"}]) |
44 ]).create(); | 43 ]).scheduleCreate(); |
45 | 44 |
46 d.git('foo-dep.git', [ | 45 git('foo-dep.git', [ |
47 d.libDir('foo-dep', 'foo-dep 2'), | 46 libDir('foo-dep', 'foo-dep 2'), |
48 d.libPubspec('foo-dep', '1.0.0') | 47 libPubspec('foo-dep', '1.0.0') |
49 ]).commit(); | 48 ]).scheduleCommit(); |
50 | 49 |
51 schedulePub(args: ['update', 'foo'], | 50 schedulePub(args: ['update', 'foo'], |
52 output: new RegExp(r"Dependencies updated!$")); | 51 output: new RegExp(r"Dependencies updated!$")); |
53 | 52 |
54 d.dir(packagesPath, [ | 53 dir(packagesPath, [ |
55 d.dir('foo', [ | 54 dir('foo', [ |
56 d.file('foo.dart', 'main() => "foo 2";') | 55 file('foo.dart', 'main() => "foo 2";') |
57 ]), | 56 ]), |
58 d.dir('foo-dep', [ | 57 dir('foo-dep', [ |
59 d.file('foo-dep.dart', 'main() => "foo-dep";') | 58 file('foo-dep.dart', 'main() => "foo-dep";') |
60 ]), | 59 ]), |
61 ]).validate(); | 60 ]).scheduleValidate(); |
62 }); | 61 }); |
63 } | 62 } |
OLD | NEW |