| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2013, 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 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: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 import 'utils.dart'; | 11 import 'utils.dart'; |
| 12 | 12 |
| 13 main() { | 13 main() { |
| 14 initConfig(); | |
| 15 integration("gets first if a dependency's source doesn't match the one in " | 14 integration("gets first if a dependency's source doesn't match the one in " |
| 16 "the lock file", () { | 15 "the lock file", () { |
| 17 d.dir("foo", [ | 16 d.dir("foo", [ |
| 18 d.libPubspec("foo", "0.0.1"), | 17 d.libPubspec("foo", "0.0.1"), |
| 19 d.libDir("foo") | 18 d.libDir("foo") |
| 20 ]).create(); | 19 ]).create(); |
| 21 | 20 |
| 22 d.dir(appPath, [ | 21 d.dir(appPath, [ |
| 23 // A pubspec with a path source. | 22 // A pubspec with a path source. |
| 24 d.appPubspec({ | 23 d.appPubspec({ |
| 25 "foo": {"path": "../foo"} | 24 "foo": {"path": "../foo"} |
| 26 }), | 25 }), |
| 27 // A lock file with the hosted source. | 26 // A lock file with the hosted source. |
| 28 d.file("pubspec.lock", JSON.encode({ | 27 d.file("pubspec.lock", JSON.encode({ |
| 29 'packages': { | 28 'packages': { |
| 30 'foo': { | 29 'foo': { |
| 31 'version': '0.0.0', | 30 'version': '0.0.0', |
| 32 'source': 'hosted', | 31 'source': 'hosted', |
| 33 'description': 'foo' | 32 'description': 'foo' |
| 34 } | 33 } |
| 35 } | 34 } |
| 36 })) | 35 })) |
| 37 ]).create(); | 36 ]).create(); |
| 38 | 37 |
| 39 pubServe(shouldGetFirst: true); | 38 pubServe(shouldGetFirst: true); |
| 40 requestShouldSucceed("packages/foo/foo.dart", 'main() => "foo";'); | 39 requestShouldSucceed("packages/foo/foo.dart", 'main() => "foo";'); |
| 41 endPubServe(); | 40 endPubServe(); |
| 42 }); | 41 }); |
| 43 } | 42 } |
| OLD | NEW |