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

Unified Diff: utils/tests/pub/test_pub.dart

Issue 11035066: Spit pub tests into smaller suites. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 months 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 side-by-side diff with in-line comments
Download patch
Index: utils/tests/pub/test_pub.dart
diff --git a/utils/tests/pub/test_pub.dart b/utils/tests/pub/test_pub.dart
index c5a6b84d3ec3cda484fe1cff5f8a92d2f923b143..52087782a876354b9122cf577f3ac251c67d1e61 100644
--- a/utils/tests/pub/test_pub.dart
+++ b/utils/tests/pub/test_pub.dart
@@ -501,6 +501,14 @@ void run() {
});
}
+/// Get the path to the root "util/test/pub" directory containing the pub tests.
+String get testDirectory {
+ var dir = new Path.fromNative(new Options().script);
+ while (dir.filename != 'pub') dir = dir.directoryPath;
+
+ return dir.toNativePath();
+}
+
/**
* Schedules a call to the Pub command-line utility. Runs Pub with [args] and
* validates that its results match [output], [error], and [exitCode].
@@ -521,10 +529,8 @@ void schedulePub([List<String> args, Pattern output, Pattern error,
dartBin = new File(dartBin).fullPathSync();
}
- var scriptDir = new File(new Options().script).directorySync().path;
-
// Find the main pub entrypoint.
- var pubPath = fs.joinPaths(scriptDir, '../../pub/pub.dart');
+ var pubPath = fs.joinPaths(testDirectory, '../../pub/pub.dart');
var dartArgs =
['--enable-type-checks', '--enable-asserts', pubPath, '--trace'];
@@ -664,7 +670,7 @@ void _validateOutputString(String expectedText, List<String> actual) {
* directory can contain a heterogeneous collection of files and
* subdirectories.
*/
-class Descriptor {
+abstract class Descriptor {
/**
* The name of this file or directory. This must be a [String] if the fiel or
* directory is going to be created.
@@ -1045,10 +1051,8 @@ class TarFileDescriptor extends Descriptor {
args.addAll(contents.map(
(child) => '-i!"${join(tempDir, child.name)}"'));
- // Find 7zip. Note: this assumes the tests are being run from
- // utils/tests/pub/
- var scriptDir = new File(new Options().script).directorySync().path;
- var command = fs.joinPaths(scriptDir,
+ // Find 7zip.
+ var command = fs.joinPaths(testDirectory,
'../../../third_party/7zip/7za.exe');
return runProcess(command, args).chain((_) {
@@ -1075,6 +1079,10 @@ class TarFileDescriptor extends Descriptor {
throw "TODO(nweiz): implement this";
}
+ Future delete(dir) {
+ throw new UnsupportedOperationException('');
+ }
+
/**
* Loads the contents of this tar file.
*/
« no previous file with comments | « utils/tests/pub/pub_update_test.dart ('k') | utils/tests/pub/update/git/do_not_update_if_unneeded_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698