OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library pub_tests; | |
6 | |
7 import 'dart:io'; | |
8 | |
9 import 'package:pathos/path.dart' as path; | |
10 import 'package:unittest/unittest.dart'; | |
11 import 'test_pub.dart'; | |
12 | |
13 main() { | |
14 initConfig(); | |
15 | |
16 // This test is a bit funny. | |
17 // | |
18 // 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 // 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 // test fails, it means the version file's format has changed in a way pub | |
23 // didn't expect. | |
24 // | |
25 // 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 // the built SDK directory, and not the live pub code directly in the repo. | |
28 test('parse the real SDK "version" file', () { | |
29 // Get the path to the pub binary in the SDK. | |
30 var dartPath = new Options().executable; | |
31 var pubPath = path.join(path.dirname(dartPath), "pub"); | |
32 if (Platform.operatingSystem == "windows") pubPath = '$pubPath.bat'; | |
33 | |
34 Process.run(pubPath, ['version']).then(expectAsync1((result) { | |
35 expect(result.stdout, startsWith("Pub")); | |
36 expect(result.exitCode, equals(0)); | |
37 })); | |
38 }); | |
39 } | |
OLD | NEW |