| 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 '../../descriptor.dart' as d; | 7 import '../../descriptor.dart' as d; |
| 8 import '../../test_pub.dart'; | 8 import '../../test_pub.dart'; |
| 9 | 9 |
| 10 main() { | 10 main() { |
| 11 initConfig(); | 11 initConfig(); |
| 12 integration("upgrades Git packages to a nonexistent pubspec", () { | 12 integration("upgrades Git packages to a nonexistent pubspec", () { |
| 13 ensureGit(); | 13 ensureGit(); |
| 14 | 14 |
| 15 var repo = d.git('foo.git', [ | 15 var repo = |
| 16 d.libDir('foo'), | 16 d.git('foo.git', [d.libDir('foo'), d.libPubspec('foo', '1.0.0')]); |
| 17 d.libPubspec('foo', '1.0.0') | |
| 18 ]); | |
| 19 repo.create(); | 17 repo.create(); |
| 20 | 18 |
| 21 d.appDir({"foo": {"git": "../foo.git"}}).create(); | 19 d.appDir({ |
| 20 "foo": { |
| 21 "git": "../foo.git" |
| 22 } |
| 23 }).create(); |
| 22 | 24 |
| 23 pubGet(); | 25 pubGet(); |
| 24 | 26 |
| 25 d.dir(packagesPath, [ | 27 d.dir( |
| 26 d.dir('foo', [ | 28 packagesPath, |
| 27 d.file('foo.dart', 'main() => "foo";') | 29 [d.dir('foo', [d.file('foo.dart', 'main() => "foo";')])]).validate(); |
| 28 ]) | |
| 29 ]).validate(); | |
| 30 | 30 |
| 31 repo.runGit(['rm', 'pubspec.yaml']); | 31 repo.runGit(['rm', 'pubspec.yaml']); |
| 32 repo.runGit(['commit', '-m', 'delete']); | 32 repo.runGit(['commit', '-m', 'delete']); |
| 33 | 33 |
| 34 pubUpgrade(error: new RegExp(r'Could not find a file named "pubspec.yaml" ' | 34 pubUpgrade( |
| 35 r'in "[^\n]*"\.')); | 35 error: new RegExp( |
| 36 r'Could not find a file named "pubspec.yaml" ' r'in "[^\n]*"\.')); |
| 36 | 37 |
| 37 d.dir(packagesPath, [ | 38 d.dir( |
| 38 d.dir('foo', [ | 39 packagesPath, |
| 39 d.file('foo.dart', 'main() => "foo";') | 40 [d.dir('foo', [d.file('foo.dart', 'main() => "foo";')])]).validate(); |
| 40 ]) | |
| 41 ]).validate(); | |
| 42 }); | 41 }); |
| 43 } | 42 } |
| OLD | NEW |