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

Side by Side Diff: tools/testing/dart/lib/html_test.dart

Issue 841193003: cleanup to tools/testing/dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: one last bit Created 5 years, 11 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 | « tools/testing/dart/lib/drt_updater.dart ('k') | tools/testing/dart/lib/http_server.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 /** 5 /**
6 * Classes and methods for running HTML tests. 6 * Classes and methods for running HTML tests.
7 * 7 *
8 * HTML tests are valid HTML files whose names end in _htmltest.html, and that 8 * HTML tests are valid HTML files whose names end in _htmltest.html, and that
9 * contain annotations specifying the scripts in the test and the 9 * contain annotations specifying the scripts in the test and the
10 * messages the test should post to its window, in order to pass. 10 * messages the test should post to its window, in order to pass.
11 */ 11 */
12 library html_test; 12 library html_test;
13 13
14 import "dart:convert"; 14 import 'dart:convert';
15 import "dart:io"; 15 import 'dart:io';
16 16
17 import "path.dart"; 17 import 'path.dart';
18 import "test_suite.dart"; 18 import 'test_information.dart';
19 import "utils.dart"; 19 import 'utils.dart';
20 20
21 RegExp htmlAnnotation = 21 RegExp htmlAnnotation =
22 new RegExp("START_HTML_DART_TEST([\\s\\S]*?)END_HTML_DART_TEST"); 22 new RegExp("START_HTML_DART_TEST([\\s\\S]*?)END_HTML_DART_TEST");
23 23
24 HtmlTestInformation getInformation(String filename) { 24 HtmlTestInformation getInformation(String filename) {
25 if (!filename.endsWith("_htmltest.html")) { 25 if (!filename.endsWith("_htmltest.html")) {
26 DebugLogger.warning("File $filename is not an HTML test." 26 DebugLogger.warning("File $filename is not an HTML test."
27 " Should end in _htmltest.html."); 27 " Should end in _htmltest.html.");
28 return null; 28 return null;
29 } 29 }
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 </head><body> 68 </head><body>
69 <h1>Failing HTML test</h1> 69 <h1>Failing HTML test</h1>
70 $message 70 $message
71 <script> 71 <script>
72 throw "HTML test failed: $message"; 72 throw "HTML test failed: $message";
73 </script> 73 </script>
74 </body> 74 </body>
75 </html> 75 </html>
76 '''; 76 ''';
77 } 77 }
OLDNEW
« no previous file with comments | « tools/testing/dart/lib/drt_updater.dart ('k') | tools/testing/dart/lib/http_server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698