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

Side by Side Diff: utils/testrunner/pipeline_task.dart

Issue 10897016: Testrunner for 3rd parties. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/testrunner/pipeline_runner.dart ('k') | utils/testrunner/run_process_task.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 /**
6 * A test execution pipeline is made up of a list of tasks. Each task is a
7 * subclass of [PipelineTask].
8 */
9 abstract class PipelineTask {
10
11 abstract void execute(Path testfile, List stdout, List stderr,
12 bool logging, Function exitHandler);
13
14 void cleanup(Path testfile, List stdout, List stderr,
15 bool verboseLogging, bool keepTestFiles) {
16 }
17
18 void deleteFiles(List templates, Path testfile, bool logging, bool keepFiles,
19 List stdout) {
20 if (!keepFiles) {
21 for (var template in templates) {
22 var fname = expandMacros(template, testfile);
23 deleteFile(fname);
24 if (logging) {
25 stdout.add('Removing $fname');
26 }
27 }
28 }
29 }
30
31 String flattenPath(String path) {
32 return makePathAbsolute(path).
33 replaceAll(Platform.pathSeparator, "_").
34 replaceAll(":","");
35 }
36
37 // This takes a string used in a template and does macro expansion for
38 // a specific test file.
39 String expandMacros(String template, Path testfile) {
40 String path = makePathAbsolute(testfile.directoryPath.toString());
41 return template.
42 replaceAll(Macros.fullFilePath, testfile.toNativePath()).
43 replaceAll(Macros.filenameNoExtension,
44 testfile.filenameWithoutExtension).
45 replaceAll(Macros.filename, testfile.filename).
46 replaceAll(Macros.directory, path).
47 replaceAll(Macros.flattenedDirectory, flattenPath(path));
48 }
49 }
50
51
OLDNEW
« no previous file with comments | « utils/testrunner/pipeline_runner.dart ('k') | utils/testrunner/run_process_task.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698