| Index: samples/third_party/dromaeo/web/Suites.dart
|
| diff --git a/samples/third_party/dromaeo/web/Suites.dart b/samples/third_party/dromaeo/web/Suites.dart
|
| deleted file mode 100644
|
| index eefe85652eaf74e6dd57ac2436e68986063b064c..0000000000000000000000000000000000000000
|
| --- a/samples/third_party/dromaeo/web/Suites.dart
|
| +++ /dev/null
|
| @@ -1,174 +0,0 @@
|
| -library Suites;
|
| -
|
| -class Origin {
|
| - final String author;
|
| - final String url;
|
| -
|
| - const Origin(this.author, this.url);
|
| -}
|
| -
|
| -class SuiteDescription {
|
| - final String file;
|
| - final String name;
|
| - final Origin origin;
|
| - final String description;
|
| - final List<String> tags;
|
| - final List testVariants;
|
| -
|
| - const SuiteDescription(this.file, this.name, this.origin,
|
| - this.description, this.tags, this.testVariants);
|
| -}
|
| -
|
| -class Suites {
|
| - static const JOHN_RESIG = const Origin('John Resig', 'http://ejohn.org/');
|
| -
|
| - static const CATEGORIES = const {
|
| - // Platform tags
|
| - 'js': 'DOM Core Tests (JavaScript)',
|
| - 'dart': 'DOM Core Tests (dart)',
|
| - 'dart2js': 'DOM Core Tests (dart2js)',
|
| -
|
| - // Library tags
|
| - 'html': 'DOM Core Tests (dart:html)',
|
| - };
|
| -
|
| - static const _CORE_TEST_OPTIONS = const [
|
| - // A list of valid combinations for core Dromaeo DOM tests.
|
| - // Each item in the list is a pair of (platform x [variants]).
|
| - const ['js', const ['']],
|
| - const ['dart', const ['html']],
|
| - const ['dart2js', const ['html']],
|
| - ];
|
| -
|
| - static const _CORE_SUITE_DESCRIPTIONS = const [
|
| - const SuiteDescription(
|
| - 'tests/dom-attr.html',
|
| - 'DOM Attributes',
|
| - JOHN_RESIG,
|
| - 'Setting and getting DOM node attributes',
|
| - const ['attributes'],
|
| - _CORE_TEST_OPTIONS),
|
| - const SuiteDescription(
|
| - 'tests/dom-modify.html',
|
| - 'DOM Modification',
|
| - JOHN_RESIG,
|
| - 'Creating and injecting DOM nodes into a document',
|
| - const ['modify'],
|
| - _CORE_TEST_OPTIONS),
|
| - const SuiteDescription(
|
| - 'tests/dom-query.html',
|
| - 'DOM Query',
|
| - JOHN_RESIG,
|
| - 'Querying DOM elements in a document',
|
| - const ['query'],
|
| - _CORE_TEST_OPTIONS),
|
| - const SuiteDescription(
|
| - 'tests/dom-traverse.html',
|
| - 'DOM Traversal',
|
| - JOHN_RESIG,
|
| - 'Traversing a DOM structure',
|
| - const ['traverse'],
|
| - _CORE_TEST_OPTIONS),
|
| - const SuiteDescription(
|
| - '/root_dart/tests/html/dromaeo_smoke.html',
|
| - 'Smoke test',
|
| - const Origin('', ''),
|
| - 'Dromaeo no-op smoke test',
|
| - const ['nothing'],
|
| - _CORE_TEST_OPTIONS),
|
| - ];
|
| -
|
| - // Mappings from original path to actual path given platform/library.
|
| - static _getHtmlPathForVariant(platform, lib, path) {
|
| - if (lib != '') {
|
| - lib = '-$lib';
|
| - }
|
| - switch (platform) {
|
| - case 'js':
|
| - case 'dart':
|
| - return path.replaceFirst('.html', '$lib.html');
|
| - case 'dart2js':
|
| - int i = path.indexOf('/');
|
| - String topLevelDir = '';
|
| - if (i != -1) topLevelDir = '${path.substring(0, i)}';
|
| - return '$topLevelDir/'
|
| - '${path.substring(i + 1).replaceFirst(".html", "$lib-js.html")}';
|
| - }
|
| - }
|
| -
|
| - static var _SUITE_DESCRIPTIONS;
|
| -
|
| - static List<SuiteDescription> get SUITE_DESCRIPTIONS {
|
| - if (_SUITE_DESCRIPTIONS != null) {
|
| - return _SUITE_DESCRIPTIONS;
|
| - }
|
| - _SUITE_DESCRIPTIONS = <SuiteDescription>[];
|
| -
|
| - // Expand the list to include a unique SuiteDescription for each
|
| - // tested variant.
|
| - for (SuiteDescription suite in _CORE_SUITE_DESCRIPTIONS) {
|
| - List variants = suite.testVariants;
|
| - for (List variant in variants) {
|
| - assert(variant.length == 2);
|
| - String platform = variant[0];
|
| - List<String> libraries = variant[1];
|
| - for(String lib in libraries) {
|
| - String path = _getHtmlPathForVariant(platform, lib, suite.file);
|
| - final combined = new List.from(suite.tags);
|
| - combined.add(platform);
|
| - if (lib != '') {
|
| - combined.add(lib);
|
| - lib = ':$lib';
|
| - }
|
| - final name = (variant == null)
|
| - ? suite.name
|
| - : '${suite.name} ($platform$lib)';
|
| - _SUITE_DESCRIPTIONS.add(new SuiteDescription(
|
| - path,
|
| - name,
|
| - suite.origin,
|
| - suite.description,
|
| - combined,
|
| - []));
|
| - }
|
| - }
|
| - }
|
| -
|
| - return _SUITE_DESCRIPTIONS;
|
| - }
|
| -
|
| - static List<SuiteDescription> getSuites(String tags) {
|
| - // Allow AND and OR in place of '&' and '|' for browsers where
|
| - // those symbols are escaped.
|
| - tags = tags.replaceAll('OR', '|').replaceAll('AND', '&');
|
| - // A disjunction of conjunctions (e.g.,
|
| - // 'js&modify|dart&dom&modify').
|
| - final taglist = tags.split('|').map((tag) => tag.split('&')).toList();
|
| -
|
| - bool match(suite) {
|
| - // If any conjunction matches, return true.
|
| - for (final tagset in taglist) {
|
| - if (tagset.every((tag) => suite.tags.indexOf(tag) >= 0)) {
|
| - return true;
|
| - }
|
| - }
|
| - return false;
|
| - }
|
| - final suites = SUITE_DESCRIPTIONS.where(match).toList();
|
| -
|
| - suites.sort((s1, s2) => s1.name.compareTo(s2.name));
|
| - return suites;
|
| - }
|
| -
|
| - static getCategory(String tags) {
|
| - if (CATEGORIES.containsKey(tags)) {
|
| - return CATEGORIES[tags];
|
| - }
|
| - for (final suite in _CORE_SUITE_DESCRIPTIONS) {
|
| - if (suite.tags[0] == tags) {
|
| - return suite.name;
|
| - }
|
| - }
|
| - return null;
|
| - }
|
| -}
|
|
|