Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(332)

Side by Side Diff: samples/sample_extension/test/sample_extension_test.dart

Issue 53313007: Change dart:io Platform.script to return a URI. Change all uses of Platform.script to work with th… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix dom.py docs Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 // Dart test program for testing native extensions. 5 // Dart test program for testing native extensions.
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:io'; 8 import 'dart:io';
9 import 'dart:isolate'; 9 import 'dart:isolate';
10 10
(...skipping 21 matching lines...) Expand all
32 case 'macos': 32 case 'macos':
33 return join(buildDirectory, 'libsample_extension.dylib'); 33 return join(buildDirectory, 'libsample_extension.dylib');
34 case 'windows': 34 case 'windows':
35 return join(buildDirectory, 'sample_extension.dll'); 35 return join(buildDirectory, 'sample_extension.dll');
36 default: 36 default:
37 Expect.fail('Unknown operating system ${Platform.operatingSystem}'); 37 Expect.fail('Unknown operating system ${Platform.operatingSystem}');
38 } 38 }
39 } 39 }
40 40
41 void main() { 41 void main() {
42 String scriptDirectory = dirname(Platform.script);
43 String buildDirectory = dirname(Platform.executable); 42 String buildDirectory = dirname(Platform.executable);
44 Directory tempDirectory = 43 Directory tempDirectory =
45 Directory.systemTemp.createTempSync('sample_extension_'); 44 Directory.systemTemp.createTempSync('sample_extension_');
46 String testDirectory = tempDirectory.path; 45 String testDirectory = tempDirectory.path;
47 String sourceDirectory = join(scriptDirectory, '..'); 46 String sourceDirectory = Platform.script.resolve('..').toFilePath();
48 47
49 // Copy sample_extension shared library, sample_extension dart files and 48 // Copy sample_extension shared library, sample_extension dart files and
50 // sample_extension tests to the temporary test directory. 49 // sample_extension tests to the temporary test directory.
51 copyFileToDirectory(getNativeLibraryPath(buildDirectory), testDirectory) 50 copyFileToDirectory(getNativeLibraryPath(buildDirectory), testDirectory)
52 .then((_) => Future.forEach(['sample_synchronous_extension.dart', 51 .then((_) => Future.forEach(['sample_synchronous_extension.dart',
53 'sample_asynchronous_extension.dart', 52 'sample_asynchronous_extension.dart',
54 'test_sample_synchronous_extension.dart', 53 'test_sample_synchronous_extension.dart',
55 'test_sample_asynchronous_extension.dart'], 54 'test_sample_asynchronous_extension.dart'],
56 (file) => copyFileToDirectory(join(sourceDirectory, file), testDirectory) 55 (file) => copyFileToDirectory(join(sourceDirectory, file), testDirectory)
57 )) 56 ))
58 57
59 .then((_) => Future.forEach(['test_sample_synchronous_extension.dart', 58 .then((_) => Future.forEach(['test_sample_synchronous_extension.dart',
60 'test_sample_asynchronous_extension.dart'], 59 'test_sample_asynchronous_extension.dart'],
61 (test) => Process.run(Platform.executable, [join(testDirectory, test)]) 60 (test) => Process.run(Platform.executable, [join(testDirectory, test)])
62 .then((ProcessResult result) { 61 .then((ProcessResult result) {
63 if (result.exitCode != 0) { 62 if (result.exitCode != 0) {
64 print('Failing test: ${join(sourceDirectory, test)}'); 63 print('Failing test: ${join(sourceDirectory, test)}');
65 print('Failing process stdout: ${result.stdout}'); 64 print('Failing process stdout: ${result.stdout}');
66 print('Failing process stderr: ${result.stderr}'); 65 print('Failing process stderr: ${result.stderr}');
67 print('End failing process stderr'); 66 print('End failing process stderr');
68 Expect.fail('Test failed with exit code ${result.exitCode}'); 67 Expect.fail('Test failed with exit code ${result.exitCode}');
69 } 68 }
70 }) 69 })
71 )) 70 ))
72 .whenComplete(() => tempDirectory.deleteSync(recursive: true)); 71 .whenComplete(() => tempDirectory.deleteSync(recursive: true));
73 } 72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698