| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 import 'dart:io'; | |
| 6 | |
| 7 import 'package:path/path.dart' as p; | |
| 8 import 'package:scheduled_test/scheduled_process.dart'; | |
| 9 import 'package:scheduled_test/scheduled_stream.dart'; | |
| 10 import 'package:scheduled_test/scheduled_test.dart'; | |
| 11 | |
| 12 import '../../../lib/src/io.dart'; | |
| 13 import '../../descriptor.dart' as d; | |
| 14 import '../../test_pub.dart'; | |
| 15 import 'utils.dart'; | |
| 16 | |
| 17 main() { | |
| 18 initConfig(); | |
| 19 integration("a binstub runs 'pub global run' for an outdated snapshot", () { | |
| 20 servePackages((builder) { | |
| 21 builder.serve("foo", "1.0.0", pubspec: { | |
| 22 "executables": { | |
| 23 "foo-script": "script" | |
| 24 } | |
| 25 }, contents: [ | |
| 26 d.dir("bin", [ | |
| 27 d.file("script.dart", "main(args) => print('ok \$args');") | |
| 28 ]) | |
| 29 ]); | |
| 30 }); | |
| 31 | |
| 32 schedulePub(args: ["global", "activate", "foo"]); | |
| 33 | |
| 34 d.dir(cachePath, [ | |
| 35 d.dir('global_packages', [ | |
| 36 d.dir('foo', [ | |
| 37 d.dir('bin', [d.outOfDateSnapshot('script.dart.snapshot')]) | |
| 38 ]) | |
| 39 ]) | |
| 40 ]).create(); | |
| 41 | |
| 42 var process = new ScheduledProcess.start( | |
| 43 p.join(sandboxDir, cachePath, "bin", binStubName("foo-script")), | |
| 44 ["arg1", "arg2"], | |
| 45 environment: getEnvironment()); | |
| 46 | |
| 47 process.stderr.expect(startsWith("Wrong script snapshot version")); | |
| 48 process.stdout.expect(consumeThrough("ok [arg1, arg2]")); | |
| 49 process.shouldExit(); | |
| 50 | |
| 51 d.dir(cachePath, [ | |
| 52 d.dir('global_packages/foo/bin', [ | |
| 53 d.binaryMatcherFile('script.dart.snapshot', isNot(equals( | |
| 54 readBinaryFile(testAssetPath('out-of-date.snapshot'))))) | |
| 55 ]) | |
| 56 ]).validate(); | |
| 57 }); | |
| 58 } | |
| OLD | NEW |