| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS d.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 d.file. | 3 // BSD-style license that can be found in the LICENSE d.file. |
| 4 | 4 |
| 5 library pub_tests; | 5 library pub_tests; |
| 6 | 6 |
| 7 import 'dart:convert'; | 7 import 'dart:convert'; |
| 8 | 8 |
| 9 import 'descriptor.dart' as d; | 9 import 'descriptor.dart' as d; |
| 10 import 'test_pub.dart'; | 10 import 'test_pub.dart'; |
| 11 | 11 |
| 12 main() { | 12 main() { |
| 13 initConfig(); | 13 initConfig(); |
| 14 | 14 |
| 15 forBothPubInstallAndUpdate((command) { | 15 forBothPubGetAndUpgrade((command) { |
| 16 integration('fails gracefully on a dependency from an unknown source', () { | 16 integration('fails gracefully on a dependency from an unknown source', () { |
| 17 d.appDir({"foo": {"bad": "foo"}}).create(); | 17 d.appDir({"foo": {"bad": "foo"}}).create(); |
| 18 | 18 |
| 19 pubCommand(command, error: | 19 pubCommand(command, error: |
| 20 "Package 'myapp' depends on 'foo' from unknown source 'bad'."); | 20 "Package 'myapp' depends on 'foo' from unknown source 'bad'."); |
| 21 }); | 21 }); |
| 22 | 22 |
| 23 integration('fails gracefully on transitive dependency from an unknown ' | 23 integration('fails gracefully on transitive dependency from an unknown ' |
| 24 'source', () { | 24 'source', () { |
| 25 d.dir('foo', [ | 25 d.dir('foo', [ |
| (...skipping 30 matching lines...) Expand all Loading... |
| 56 'description': { | 56 'description': { |
| 57 'name': 'foo' | 57 'name': 'foo' |
| 58 } | 58 } |
| 59 } | 59 } |
| 60 } | 60 } |
| 61 })) | 61 })) |
| 62 ]).create(); | 62 ]).create(); |
| 63 | 63 |
| 64 pubCommand(command); | 64 pubCommand(command); |
| 65 | 65 |
| 66 // Should update to the new one. | 66 // Should upgrade to the new one. |
| 67 d.dir(packagesPath, [ | 67 d.dir(packagesPath, [ |
| 68 d.dir("foo", [ | 68 d.dir("foo", [ |
| 69 d.file("foo.dart", 'main() => "foo";') | 69 d.file("foo.dart", 'main() => "foo";') |
| 70 ]) | 70 ]) |
| 71 ]).validate(); | 71 ]).validate(); |
| 72 }); | 72 }); |
| 73 }); | 73 }); |
| 74 } | 74 } |
| OLD | NEW |