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