gecko/dom/imptests
Ralph Giles 15bd8b322a Bug 887978 - Enable WebVTT. r=cpearce, bz
New global interfaces need to be added to test_interfaces.html
and marked with the same conditional as the pref. The test must
also be updated if the conditional is changed on the pref.

We now pass the track element portion of the imptests.
2013-11-29 16:57:00 -08:00
..
editing Bug 908879 - 1 failure on b2g mochitest test_event.html: number of input events fired expected 0 but got 1. r=ehsan 2013-09-16 11:47:37 +02:00
failures Bug 887978 - Enable WebVTT. r=cpearce, bz 2013-11-29 16:57:00 -08:00
html Bug 932501. Drop nextElementSibling/previousElementSibling from DocumentType. r=smaug 2013-11-17 00:10:19 -05:00
webapps Bug 920043 - Update DOM tests from web-platform-tests; f=RyanVM rs=mounir 2013-09-25 19:27:28 +02:00
editing.mozbuild
editing.txt
html.mozbuild Bug 910121 - Update web-platform-test tests. 2013-10-20 09:25:20 +02:00
html.txt Bug 920043 - Update DOM tests from web-platform-tests; f=RyanVM rs=mounir 2013-09-25 19:27:28 +02:00
idlharness.js Bug 885878 - Update testharness.js; r=jgraham 2013-11-28 15:07:56 +01:00
importTestsuite.py Bug 859252 - Part a: Update importTestsuite.py to import reftests as well; r=jhammel 2013-05-10 09:12:48 +02:00
Makefile.in Bug 912293 - Remove now redundant boilerplate from Makefile.in. r=gps 2013-09-05 09:01:46 +09:00
moz.build Bug 910121 - Update web-platform-test tests. 2013-10-20 09:25:20 +02:00
parseFailures.py
parseManifest.py No bug - Update parseManifest.py. 2013-09-25 19:25:30 +02:00
README
reftest.list Bug 859252 - Part c: Hook up the reftests in dom/imptests; r=jhammel 2013-05-10 09:13:19 +02:00
testharness.css
testharness.js Bug 885878 - Update testharness.js; r=jgraham 2013-11-28 15:07:56 +01:00
testharnessreport.js Bug 868426 - Display results table when running testharness.js tests by themselves; r=jhammel 2013-05-10 09:13:25 +02:00
updateTestharness.py Bug 885107 - Sync testharness with the latest upstream. r=Ms2ger 2013-10-01 00:35:32 +09:00
webapps.mozbuild Bug 920043 - Update DOM tests from web-platform-tests; f=RyanVM rs=mounir 2013-09-25 19:27:28 +02:00
webapps.txt Bug 920043 - Update DOM tests from web-platform-tests; f=RyanVM rs=mounir 2013-09-25 19:27:28 +02:00
WebIDLParser.js Bug 885107 - Sync testharness with the latest upstream. r=Ms2ger 2013-10-01 00:35:32 +09:00
writeBuildFiles.py Bug 912293 - Remove now redundant boilerplate from Makefile.in. r=gps 2013-09-05 09:01:46 +09:00

This directory contains tests imported from W3C test suites. In order to make it
as easy as possible to update these tests, no changes are made to the imported
files (names for scripted tests do get a test_ prefix to integrate with the test
runner, however). The scripts to update tests are provided.


=======================
Files in this directory
=======================

Source;  Usage and purpose;  License

* testharness.js / testharness.css
  Directly imported from the W3C repository (<http://dvcs.w3.org/hg/resources>),
  with the updateTestharness.py script.
  Provide the test harness.
  W3C Test Suite License / W3C 3-clause BSD License

* idlharness.js
  Directly imported from the W3C repository (<http://dvcs.w3.org/hg/resources>),
  with the updateTestharness.py script.
  Used to test WebIDL.
  W3C Test Suite License / W3C 3-clause BSD License

* WebIDLParser.js
  Directly imported from the W3C repository (<http://dvcs.w3.org/hg/resources>),
  with the updateTestharness.py script.
  Used by idlharness.js to parse IDL blocks.
  MIT License

* updateTestharness.py
  Used to update the above files.
  MPL

* parseManifest.py
  Imported from <https://bitbucket.org/ms2ger/test-runner>. Parses MANIFEST
  files (provided in the W3C repository) as documented at
  <https://bitbucket.org/ms2ger/test-runner/raw/tip/manifests.txt>.
  MIT License

* testharnessreport.js
  Glue between testharness.js and our Mochitest runner.
  MPL

* importTestsuite.py
  Imports a test suite from a remote repository. Takes one argument, a file in
  the format described under webapps.txt.
  Note: removes both source and destination directory before starting. Do not
        use with outstanding changes in either directory.
  MPL

* parseFailures.py
  Parses failures out of a mochitest log and writes out JSON files and Makefiles
  into the correct failures/ folder.
  The mochitest log should be produced by setting the 'dumpFailures' flag in
  testharnessreport.js; this will print out the encountered failures, marked
  by @ signs.
  MPL

* writeBuildFiles.py
  Helper functions to write out automatically generated build files.
  MPL

* Makefile.in
  Integration with our build system. Installs support files into /resources and
  includes a .mk file for each repository.
  MPL

* failures/
  Expected failures for tests in each repository.  Each test's failures, if
  any, are in a file with the same path and name with .json appended.  New
  expected fail files currently needed to be added manually to makefiles.

* html.mk / webapps.mk / ...
  Generated by importTestsuite.py from webapps.txt.
  Contains a list of the directories with tests. To be included in Makefile.in.

* html.txt / webapps.txt / ...
  Input to importTestsuite.py.
  Lists the URL of the repository and the destination directory (separated by a
  vertical bar), followed by a list of directories within the repository
  (separated by line feeds).

* html / webapps / ...
  Actual tests.
  W3C Test Suite License / W3C 3-clause BSD License


=====================================================================
Importing an additional directory from an already-imported repository
=====================================================================

Add a line to the relevant data file (e.g. webapps.txt), with the path to the
additional directory relative to the root of the remote repository, and then run
the importTestsuite.py script, passing the data file as its argument.


==========================
Importing a new test suite
==========================

Create a data file in the format documented above, and run the
importTestsuite.py script, passing the data file as its argument.
This will create a foo.mk file; include this file in dom/imptests/Makefile.in.

Add any necessary files in failures/.