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:path/path.dart' as path; | 9 import 'package:path/path.dart' as path; |
10 import 'package:scheduled_test/scheduled_process.dart'; | 10 import 'package:scheduled_test/scheduled_process.dart'; |
11 import 'package:scheduled_test/scheduled_test.dart'; | 11 import 'package:scheduled_test/scheduled_test.dart'; |
12 | 12 |
13 import '../lib/src/exit_codes.dart' as exit_codes; | 13 import '../lib/src/exit_codes.dart' as exit_codes; |
14 import '../lib/src/sdk.dart' as sdk; | |
15 import 'test_pub.dart'; | 14 import 'test_pub.dart'; |
16 | 15 |
17 main() { | 16 main() { |
18 initConfig(); | 17 initConfig(); |
19 | 18 |
20 // This test is a bit funny. | 19 // This test is a bit funny. |
21 // | 20 // |
22 // Pub parses the "version" file that gets generated and shipped with the SDK. | 21 // Pub parses the "version" file that gets generated and shipped with the SDK. |
23 // We want to make sure that the actual version file that gets created is | 22 // We want to make sure that the actual version file that gets created is |
24 // also one pub can parse. If this test fails, it means the version file's | 23 // also one pub can parse. If this test fails, it means the version file's |
25 // format has changed in a way pub didn't expect. | 24 // format has changed in a way pub didn't expect. |
26 // | 25 // |
27 // 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 |
28 // 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 |
29 // 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. |
30 integration('parse the real SDK "version" file', () { | 29 integration('parse the real SDK "version" file', () { |
31 // Get the path to the pub binary in the SDK. | 30 // Get the path to the pub binary in the SDK. Note that we can't use |
32 var pubPath = path.join(sdk.rootDirectory, 'bin', | 31 // sdk.rootDirectory here because that assumes the entrypoint Dart script |
| 32 // being run is pub itself. Here, the entrypoint is this test file. |
| 33 var pubPath = path.join(path.dirname(Platform.executable), |
33 Platform.operatingSystem == "windows" ? "pub.bat" : "pub"); | 34 Platform.operatingSystem == "windows" ? "pub.bat" : "pub"); |
34 | 35 |
35 var pub = new ScheduledProcess.start(pubPath, ['version']); | 36 var pub = new ScheduledProcess.start(pubPath, ['version']); |
36 pub.stdout.expect(startsWith("Pub")); | 37 pub.stdout.expect(startsWith("Pub")); |
37 pub.shouldExit(exit_codes.SUCCESS); | 38 pub.shouldExit(exit_codes.SUCCESS); |
38 }); | 39 }); |
39 } | 40 } |
OLD | NEW |