OLD | NEW |
---|---|
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 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 | 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 import 'dart:io'; | 5 import 'dart:io'; |
6 | 6 |
7 import 'package:path/path.dart' as path; | 7 import 'package:path/path.dart' as path; |
8 import 'package:async_helper/async_helper.dart'; | 8 import 'package:async_helper/async_helper.dart'; |
9 import 'package:expect/expect.dart'; | 9 import 'package:expect/expect.dart'; |
10 import 'source_map_validator_helper.dart'; | 10 import 'source_map_validator_helper.dart'; |
11 | 11 |
12 void main() { | 12 void main() { |
13 asyncTest(() => createTempDir().then((Directory tmpDir) { | 13 asyncTest(() async { |
14 Directory sunflowerDir = new Directory.fromUri( | 14 Directory tmpDir = createTempDir(); |
Bill Hesse
2015/08/18 09:41:25
This needs to be = await createTempDir();
| |
15 Platform.script.resolve('../../../third_party/sunflower')); | 15 try { |
16 Directory sunflowerDir = new Directory.fromUri( | |
17 Platform.script.resolve('../../../third_party/sunflower')); | |
16 | 18 |
17 print("Copying '${sunflowerDir.path}' to '${tmpDir.path}'."); | 19 print("Copying '${sunflowerDir.path}' to '${tmpDir.path}'."); |
18 copyDirectory(sunflowerDir, tmpDir); | 20 copyDirectory(sunflowerDir, tmpDir); |
19 String ext = Platform.isWindows ? '.bat' : ''; | 21 String ext = Platform.isWindows ? '.bat' : ''; |
20 String command = path.normalize(path.join(path.fromUri(Platform.script), | 22 String command = path.normalize(path.join( |
21 '../../../../sdk/bin/pub${ext}')); | 23 path.fromUri(Platform.script), |
22 String file = path.join(tmpDir.path, 'build/web/sunflower.dart.js'); | 24 '../../../../sdk/bin/pub${ext}')); |
23 print("Running '$command build --mode=debug' from '${tmpDir}'."); | 25 String file = path.join(tmpDir.path, 'build/web/sunflower.dart.js'); |
24 return Process.run(command, ['build','--mode=debug'], | 26 |
25 workingDirectory: tmpDir.path).then((ProcessResult processResult) { | 27 print("Running '$command get' from '${tmpDir}'."); |
26 print(processResult.stdout); | 28 ProcessResult getResult = await Process.run( |
27 print(processResult.stderr); | 29 command, ['get'], workingDirectory: tmpDir.path); |
28 Expect.equals(0, processResult.exitCode, 'Unexpected exitCode from pub'); | 30 print(getResult.stdout); |
Bill Hesse
2015/08/18 08:05:09
Perhaps put these print statements inside the chec
| |
31 print(getResult.stderr); | |
32 Expect.equals(0, getResult.exitCode, 'Unexpected exitCode from pub get'); | |
33 | |
34 print("Running '$command build --mode=debug' from '${tmpDir}'."); | |
35 ProcessResult buildResult = await Process.run( | |
36 command, ['build','--mode=debug'], workingDirectory: tmpDir.path); | |
37 print(buildResult.stdout); | |
38 print(buildResult.stderr); | |
39 Expect.equals(0, buildResult.exitCode, 'Unexpected exitCode from pub'); | |
29 validateSourceMap(new Uri.file(file, windows: Platform.isWindows)); | 40 validateSourceMap(new Uri.file(file, windows: Platform.isWindows)); |
30 print("Deleting '${tmpDir.path}'."); | 41 print("Deleting '${tmpDir.path}'."); |
42 } finally { | |
31 tmpDir.deleteSync(recursive: true); | 43 tmpDir.deleteSync(recursive: true); |
32 }); | 44 } |
33 })); | 45 })); |
Bill Hesse
2015/08/18 09:41:25
Extra parenthesis.
| |
34 } | 46 } |
OLD | NEW |