c6179a50c0
BUG= Review URL: https://codereview.chromium.org//12225109 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@18295 260f80e4-7a28-3924-810f-c04153c831b5
89 lines
2.7 KiB
Dart
89 lines
2.7 KiB
Dart
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
part of test_suite;
|
|
|
|
String getHtmlContents(String title,
|
|
Path controllerScript,
|
|
Path dartJsScript,
|
|
String scriptType,
|
|
Path sourceScript) =>
|
|
"""
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title> Test $title </title>
|
|
<style>
|
|
.unittest-table { font-family:monospace; border:1px; }
|
|
.unittest-pass { background: #6b3;}
|
|
.unittest-fail { background: #d55;}
|
|
.unittest-error { background: #a11;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1> Running $title </h1>
|
|
<script type="text/javascript" src="$controllerScript"></script>
|
|
<script type="$scriptType" src="$sourceScript" onerror="externalError(null)">
|
|
</script>
|
|
<script type="text/javascript" src="$dartJsScript"></script>
|
|
</body>
|
|
</html>
|
|
""";
|
|
|
|
String getHtmlLayoutContents(String scriptType, String sourceScript) =>
|
|
"""
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
if (navigator.webkitStartDart) navigator.webkitStartDart();
|
|
</script>
|
|
<script type="$scriptType" src="$sourceScript"></script>
|
|
</body>
|
|
</html>
|
|
""";
|
|
|
|
String wrapDartTestInLibrary(Path test, String testPath) =>
|
|
"""
|
|
library libraryWrapper;
|
|
part '${pathLib.relative(test.toNativePath(),
|
|
from: pathLib.dirname(testPath)).replaceAll('\\', '\\\\')}';
|
|
""";
|
|
|
|
String dartTestWrapper(Path dartHome, String testPath, Path library) {
|
|
var testPathDir = pathLib.dirname(testPath);
|
|
var dartHomePath = dartHome.toNativePath();
|
|
// TODO(efortuna): Unify path libraries used in test.dart.
|
|
var unitTest = pathLib.relative(pathLib.join(dartHomePath,
|
|
'pkg/unittest/lib'), from: testPathDir).replaceAll('\\', '\\\\');
|
|
|
|
var libString = library.toNativePath();
|
|
if (!pathLib.isAbsolute(libString)) {
|
|
libString = pathLib.join(dartHome.toNativePath(), libString);
|
|
}
|
|
// Tests inside "pkg" import unittest using "package:". All others use a
|
|
// relative path. The imports need to agree, so use a matching form here.
|
|
if (pathLib.split(pathLib.relative(libString,
|
|
from: dartHome.toNativePath())).contains("pkg")) {
|
|
unitTest = 'package:unittest';
|
|
}
|
|
return """
|
|
library test;
|
|
|
|
import '$unitTest/unittest.dart' as unittest;
|
|
import '$unitTest/html_config.dart' as config;
|
|
import '${pathLib.relative(libString, from: testPathDir).replaceAll(
|
|
'\\', '\\\\')}' as Test;
|
|
|
|
main() {
|
|
config.useHtmlConfiguration();
|
|
unittest.group('', Test.main);
|
|
}
|
|
""";
|
|
}
|