| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 'package:path/path.dart' as p; | 7 import 'package:path/path.dart' as p; |
| 8 import 'package:scheduled_test/scheduled_test.dart'; | 8 import 'package:scheduled_test/scheduled_test.dart'; |
| 9 | 9 |
| 10 import '../descriptor.dart' as d; | 10 import '../descriptor.dart' as d; |
| 11 import '../test_pub.dart'; | 11 import '../test_pub.dart'; |
| 12 | 12 |
| 13 main() { | 13 main() { |
| 14 initConfig(); | 14 initConfig(); |
| 15 integration("upgrades a snapshot when its package is upgraded", () { | 15 integration("upgrades a snapshot when its package is upgraded", () { |
| 16 servePackages((builder) { | 16 servePackages((builder) { |
| 17 builder.serve("foo", "1.2.3", contents: [ | 17 builder.serve( |
| 18 d.dir("bin", [ | 18 "foo", |
| 19 d.file("hello.dart", "void main() => print('hello!');") | 19 "1.2.3", |
| 20 ]) | 20 contents: [ |
| 21 ]); | 21 d.dir("bin", [d.file("hello.dart", "void main() => print('hello!')
;")])]); |
| 22 }); | 22 }); |
| 23 | 23 |
| 24 d.appDir({"foo": "any"}).create(); | 24 d.appDir({ |
| 25 "foo": "any" |
| 26 }).create(); |
| 25 | 27 |
| 26 pubGet(output: contains("Precompiled foo:hello.")); | 28 pubGet(output: contains("Precompiled foo:hello.")); |
| 27 | 29 |
| 28 d.dir(p.join(appPath, '.pub', 'bin', 'foo'), [ | 30 d.dir( |
| 29 d.matcherFile('hello.dart.snapshot', contains('hello!')) | 31 p.join(appPath, '.pub', 'bin', 'foo'), |
| 30 ]).validate(); | 32 [d.matcherFile('hello.dart.snapshot', contains('hello!'))]).validate(); |
| 31 | 33 |
| 32 servePackages((builder) { | 34 servePackages((builder) { |
| 33 builder.serve("foo", "1.2.4", contents: [ | 35 builder.serve( |
| 34 d.dir("bin", [ | 36 "foo", |
| 35 d.file("hello.dart", "void main() => print('hello 2!');") | 37 "1.2.4", |
| 36 ]) | 38 contents: [ |
| 37 ]); | 39 d.dir("bin", [d.file("hello.dart", "void main() => print('hello 2!
');")])]); |
| 38 }); | 40 }); |
| 39 | 41 |
| 40 pubUpgrade(output: contains("Precompiled foo:hello.")); | 42 pubUpgrade(output: contains("Precompiled foo:hello.")); |
| 41 | 43 |
| 42 d.dir(p.join(appPath, '.pub', 'bin', 'foo'), [ | 44 d.dir( |
| 43 d.matcherFile('hello.dart.snapshot', contains('hello 2!')) | 45 p.join(appPath, '.pub', 'bin', 'foo'), |
| 44 ]).validate(); | 46 [d.matcherFile('hello.dart.snapshot', contains('hello 2!'))]).validate()
; |
| 45 | 47 |
| 46 var process = pubRun(args: ['foo:hello']); | 48 var process = pubRun(args: ['foo:hello']); |
| 47 process.stdout.expect("hello 2!"); | 49 process.stdout.expect("hello 2!"); |
| 48 process.shouldExit(); | 50 process.shouldExit(); |
| 49 }); | 51 }); |
| 50 } | 52 } |
| OLD | NEW |