OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 'dart:io'; | 7 import 'dart:io'; |
8 | 8 |
9 import 'package:pathos/path.dart' as path; | 9 import 'package:pathos/path.dart' as path; |
10 import 'package:unittest/unittest.dart'; | 10 import 'package:scheduled_test/scheduled_process.dart'; |
| 11 import 'package:scheduled_test/scheduled_test.dart'; |
11 import 'test_pub.dart'; | 12 import 'test_pub.dart'; |
12 | 13 |
13 main() { | 14 main() { |
14 initConfig(); | 15 initConfig(); |
15 | 16 |
16 // This test is a bit funny. | 17 // This test is a bit funny. |
17 // | 18 // |
18 // Pub parses the "version" file that gets generated and shipped with the SDK. | 19 // Pub parses the "version" file that gets generated and shipped with the SDK. |
19 // Most of the pub tests here generate a synthetic SDK directory so that we | 20 // Most of the pub tests here generate a synthetic SDK directory so that we |
20 // can tests against a known SDK state. But we want to make sure that the | 21 // can tests against a known SDK state. But we want to make sure that the |
21 // actual version file that gets created is also one pub can parse. If this | 22 // actual version file that gets created is also one pub can parse. If this |
22 // test fails, it means the version file's format has changed in a way pub | 23 // test fails, it means the version file's format has changed in a way pub |
23 // didn't expect. | 24 // didn't expect. |
24 // | 25 // |
25 // Note that this test expects to be invoked from a Dart executable that is | 26 // Note that this test expects to be invoked from a Dart executable that is |
26 // in the built SDK's "bin" directory. Note also that this invokes pub from | 27 // in the built SDK's "bin" directory. Note also that this invokes pub from |
27 // the built SDK directory, and not the live pub code directly in the repo. | 28 // the built SDK directory, and not the live pub code directly in the repo. |
28 test('parse the real SDK "version" file', () { | 29 integration('parse the real SDK "version" file', () { |
29 // Get the path to the pub binary in the SDK. | 30 // Get the path to the pub binary in the SDK. |
30 var dartPath = new Options().executable; | 31 var dartPath = new Options().executable; |
31 var pubPath = path.join(path.dirname(dartPath), "pub"); | 32 var pubPath = path.join(path.dirname(dartPath), "pub"); |
32 if (Platform.operatingSystem == "windows") pubPath = '$pubPath.bat'; | 33 if (Platform.operatingSystem == "windows") pubPath = '$pubPath.bat'; |
33 | 34 |
34 Process.run(pubPath, ['version']).then(expectAsync1((result) { | 35 var pub = new ScheduledProcess.start(pubPath, ['version']); |
35 expect(result.stdout, startsWith("Pub")); | 36 expect(pub.nextLine(), completion(startsWith("Pub"))); |
36 expect(result.exitCode, equals(0)); | 37 pub.shouldExit(0); |
37 })); | |
38 }); | 38 }); |
39 } | 39 } |
OLD | NEW |