| 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 }, | |
| 26 contents: [ | |
| 27 d.dir("bin", [d.file("script.dart", "main(args) => print('ok \$arg
s');")])]); | |
| 28 }); | |
| 29 | |
| 30 schedulePub(args: ["global", "activate", "foo"]); | |
| 31 | |
| 32 d.dir( | |
| 33 cachePath, | |
| 34 [ | |
| 35 d.dir( | |
| 36 'global_packages', | |
| 37 [ | |
| 38 d.dir( | |
| 39 'foo', | |
| 40 [d.dir('bin', [d.outOfDateSnapshot('script.dart.snapshot
')])])])]).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( | |
| 52 cachePath, | |
| 53 [ | |
| 54 d.dir( | |
| 55 'global_packages/foo/bin', | |
| 56 [ | |
| 57 d.binaryMatcherFile( | |
| 58 'script.dart.snapshot', | |
| 59 isNot( | |
| 60 equals(readBinaryFile(testAssetPath('out-of-date.sna
pshot')))))])]).validate(); | |
| 61 }); | |
| 62 } | |
| OLD | NEW |