gecko/dom/imptests/importTestsuite.py

173 lines
5.9 KiB
Python
Raw Normal View History

#!/usr/bin/env python
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
"""
Imports a test suite from a remote repository. Takes one argument, a file in
the format described in README.
Note: removes both source and destination directory before starting. Do not
use with outstanding changes in either directory.
"""
from __future__ import print_function, unicode_literals
import os
import shutil
import subprocess
import sys
import parseManifest
import writeBuildFiles
HEADERS_SUFFIX = "^headers^"
def parseManifestFile(dest, dir):
subdirs, mochitests, _, __, supportfiles = parseManifest.parseManifestFile("hg-%s/%s/MANIFEST" % (dest, dir))
return subdirs, mochitests, supportfiles
def getData(confFile):
"""This function parses a file of the form
URL of remote repository|Name of the destination directory
First directory of tests
...
Last directory of tests"""
repo = ""
dest = ""
directories = []
try:
with open(confFile, 'r') as fp:
first = True
for line in fp:
if first:
idx = line.index("|")
repo = line[:idx].strip()
dest = line[idx + 1:].strip()
first = False
else:
directories.append(line.strip())
finally:
return repo, dest, directories
def makePath(a, b):
if not b:
# Empty directory, i.e., the repository root.
return a
return "%s/%s" % (a, b)
bug 859101: tar Cannot open: File or path name too long when for test_document.getElementsByName-newelements.html.json and test_script-IDL-event-htmlfor.html.json - shorten imported w3c tests. r=Ms2ger --HG-- rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/Makefile.in => dom/imptests/failures/html/html/dom/documents/dta/Makefile.in rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/Makefile.in => dom/imptests/failures/html/html/dom/documents/dta/doc.gEBN/Makefile.in rename : dom/imptests/failures/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/moz.build => dom/imptests/failures/html/html/dom/documents/dta/doc.gEBN/moz.build rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-newelements.html.json => dom/imptests/failures/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-newelements.html.json rename : dom/imptests/failures/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/moz.build => dom/imptests/failures/html/html/dom/documents/dta/moz.build rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/test_document.body-getter-frameset-and-body.html.json => dom/imptests/failures/html/html/dom/documents/dta/test_document.body-getter-frameset-and-body.html.json rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/test_document.title-04.xhtml.json => dom/imptests/failures/html/html/dom/documents/dta/test_document.title-03.html.json rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/test_document.title-04.xhtml.json => dom/imptests/failures/html/html/dom/documents/dta/test_document.title-04.xhtml.json rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/test_document.title-06.html.json => dom/imptests/failures/html/html/dom/documents/dta/test_document.title-06.html.json rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/test_document.title-07.html.json => dom/imptests/failures/html/html/dom/documents/dta/test_document.title-07.html.json rename : dom/imptests/failures/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/Makefile.in => dom/imptests/failures/html/html/obsolete/implreq/oeaaa/Makefile.in rename : dom/imptests/failures/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/moz.build => dom/imptests/failures/html/html/obsolete/implreq/oeaaa/moz.build rename : dom/imptests/failures/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_script-IDL-event-htmlfor.html.json => dom/imptests/failures/html/html/obsolete/implreq/oeaaa/test_script-IDL-event-htmlfor.html.json rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/Makefile.in => dom/imptests/html/html/dom/documents/dta/Makefile.in rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/Makefile.in => dom/imptests/html/html/dom/documents/dta/doc.gEBN/Makefile.in rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/moz.build => dom/imptests/html/html/dom/documents/dta/doc.gEBN/moz.build rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-case.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-case.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-case.xhtml => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-case.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-id.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-id.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-id.xhtml => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-id.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-namespace.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-namespace.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-namespace.xhtml => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-namespace.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-newelements.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-newelements.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-newelements.xhtml => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-newelements.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-null-undef.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-null-undef.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-null-undef.xhtml => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-null-undef.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-param.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-param.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-param.xhtml => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-param.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-same.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-same.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/moz.build => dom/imptests/html/html/dom/documents/dta/moz.build rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_Document.getElementsByClassName-null-undef.html => dom/imptests/html/html/dom/documents/dta/test_Document.getElementsByClassName-null-undef.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_Element.getElementsByClassName-null-undef.html => dom/imptests/html/html/dom/documents/dta/test_Element.getElementsByClassName-null-undef.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.body-getter-body-and-frameset.html => dom/imptests/html/html/dom/documents/dta/test_document.body-getter-body-and-frameset.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.body-getter-foreign-frameset.html => dom/imptests/html/html/dom/documents/dta/test_document.body-getter-foreign-frameset.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.body-getter-frameset-and-body.html => dom/imptests/html/html/dom/documents/dta/test_document.body-getter-frameset-and-body.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.body-setter-01.html => dom/imptests/html/html/dom/documents/dta/test_document.body-setter-01.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.embeds-document.plugins-01.html => dom/imptests/html/html/dom/documents/dta/test_document.embeds-document.plugins-01.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.getElementsByClassName-same.html => dom/imptests/html/html/dom/documents/dta/test_document.getElementsByClassName-same.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.head-01.html => dom/imptests/html/html/dom/documents/dta/test_document.head-01.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.head-02.html => dom/imptests/html/html/dom/documents/dta/test_document.head-02.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-01.html => dom/imptests/html/html/dom/documents/dta/test_document.title-01.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-02.xhtml => dom/imptests/html/html/dom/documents/dta/test_document.title-02.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-03.html => dom/imptests/html/html/dom/documents/dta/test_document.title-03.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-04.xhtml => dom/imptests/html/html/dom/documents/dta/test_document.title-04.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-05.html => dom/imptests/html/html/dom/documents/dta/test_document.title-05.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-06.html => dom/imptests/html/html/dom/documents/dta/test_document.title-06.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-07.html => dom/imptests/html/html/dom/documents/dta/test_document.title-07.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_nameditem-01.html => dom/imptests/html/html/dom/documents/dta/test_nameditem-01.html rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/Makefile.in => dom/imptests/html/html/obsolete/implreq/oeaaa/Makefile.in rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/moz.build => dom/imptests/html/html/obsolete/implreq/oeaaa/moz.build rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_document-color-01.html => dom/imptests/html/html/obsolete/implreq/oeaaa/test_document-color-01.html rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_document-color-02.html => dom/imptests/html/html/obsolete/implreq/oeaaa/test_document-color-02.html rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_document-color-03.html => dom/imptests/html/html/obsolete/implreq/oeaaa/test_document-color-03.html rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_document-color-04.html => dom/imptests/html/html/obsolete/implreq/oeaaa/test_document-color-04.html rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_heading-obsolete-attributes-01.html => dom/imptests/html/html/obsolete/implreq/oeaaa/test_heading-obsolete-attributes-01.html rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_script-IDL-event-htmlfor.html => dom/imptests/html/html/obsolete/implreq/oeaaa/test_script-IDL-event-htmlfor.html
2013-04-12 11:35:15 -07:00
def shorten(path):
path = path.replace('dom-tree-accessors', 'dta')
path = path.replace('document.getElementsByName', 'doc.gEBN')
path = path.replace('requirements-for-implementations', 'implreq')
path = path.replace('other-elements-attributes-and-apis', 'oeaaa')
return path
def copyTest(source, dest):
"""Copy the file at source to dest, as well as any ^headers^ file associated
with it."""
bug 859101: tar Cannot open: File or path name too long when for test_document.getElementsByName-newelements.html.json and test_script-IDL-event-htmlfor.html.json - shorten imported w3c tests. r=Ms2ger --HG-- rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/Makefile.in => dom/imptests/failures/html/html/dom/documents/dta/Makefile.in rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/Makefile.in => dom/imptests/failures/html/html/dom/documents/dta/doc.gEBN/Makefile.in rename : dom/imptests/failures/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/moz.build => dom/imptests/failures/html/html/dom/documents/dta/doc.gEBN/moz.build rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-newelements.html.json => dom/imptests/failures/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-newelements.html.json rename : dom/imptests/failures/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/moz.build => dom/imptests/failures/html/html/dom/documents/dta/moz.build rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/test_document.body-getter-frameset-and-body.html.json => dom/imptests/failures/html/html/dom/documents/dta/test_document.body-getter-frameset-and-body.html.json rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/test_document.title-04.xhtml.json => dom/imptests/failures/html/html/dom/documents/dta/test_document.title-03.html.json rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/test_document.title-04.xhtml.json => dom/imptests/failures/html/html/dom/documents/dta/test_document.title-04.xhtml.json rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/test_document.title-06.html.json => dom/imptests/failures/html/html/dom/documents/dta/test_document.title-06.html.json rename : dom/imptests/failures/html/html/dom/documents/dom-tree-accessors/test_document.title-07.html.json => dom/imptests/failures/html/html/dom/documents/dta/test_document.title-07.html.json rename : dom/imptests/failures/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/Makefile.in => dom/imptests/failures/html/html/obsolete/implreq/oeaaa/Makefile.in rename : dom/imptests/failures/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/moz.build => dom/imptests/failures/html/html/obsolete/implreq/oeaaa/moz.build rename : dom/imptests/failures/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_script-IDL-event-htmlfor.html.json => dom/imptests/failures/html/html/obsolete/implreq/oeaaa/test_script-IDL-event-htmlfor.html.json rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/Makefile.in => dom/imptests/html/html/dom/documents/dta/Makefile.in rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/Makefile.in => dom/imptests/html/html/dom/documents/dta/doc.gEBN/Makefile.in rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/moz.build => dom/imptests/html/html/dom/documents/dta/doc.gEBN/moz.build rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-case.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-case.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-case.xhtml => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-case.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-id.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-id.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-id.xhtml => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-id.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-namespace.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-namespace.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-namespace.xhtml => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-namespace.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-newelements.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-newelements.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-newelements.xhtml => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-newelements.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-null-undef.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-null-undef.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-null-undef.xhtml => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-null-undef.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-param.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-param.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-param.xhtml => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-param.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/document.getElementsByName/test_document.getElementsByName-same.html => dom/imptests/html/html/dom/documents/dta/doc.gEBN/test_doc.gEBN-same.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/moz.build => dom/imptests/html/html/dom/documents/dta/moz.build rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_Document.getElementsByClassName-null-undef.html => dom/imptests/html/html/dom/documents/dta/test_Document.getElementsByClassName-null-undef.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_Element.getElementsByClassName-null-undef.html => dom/imptests/html/html/dom/documents/dta/test_Element.getElementsByClassName-null-undef.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.body-getter-body-and-frameset.html => dom/imptests/html/html/dom/documents/dta/test_document.body-getter-body-and-frameset.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.body-getter-foreign-frameset.html => dom/imptests/html/html/dom/documents/dta/test_document.body-getter-foreign-frameset.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.body-getter-frameset-and-body.html => dom/imptests/html/html/dom/documents/dta/test_document.body-getter-frameset-and-body.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.body-setter-01.html => dom/imptests/html/html/dom/documents/dta/test_document.body-setter-01.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.embeds-document.plugins-01.html => dom/imptests/html/html/dom/documents/dta/test_document.embeds-document.plugins-01.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.getElementsByClassName-same.html => dom/imptests/html/html/dom/documents/dta/test_document.getElementsByClassName-same.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.head-01.html => dom/imptests/html/html/dom/documents/dta/test_document.head-01.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.head-02.html => dom/imptests/html/html/dom/documents/dta/test_document.head-02.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-01.html => dom/imptests/html/html/dom/documents/dta/test_document.title-01.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-02.xhtml => dom/imptests/html/html/dom/documents/dta/test_document.title-02.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-03.html => dom/imptests/html/html/dom/documents/dta/test_document.title-03.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-04.xhtml => dom/imptests/html/html/dom/documents/dta/test_document.title-04.xhtml rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-05.html => dom/imptests/html/html/dom/documents/dta/test_document.title-05.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-06.html => dom/imptests/html/html/dom/documents/dta/test_document.title-06.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_document.title-07.html => dom/imptests/html/html/dom/documents/dta/test_document.title-07.html rename : dom/imptests/html/html/dom/documents/dom-tree-accessors/test_nameditem-01.html => dom/imptests/html/html/dom/documents/dta/test_nameditem-01.html rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/Makefile.in => dom/imptests/html/html/obsolete/implreq/oeaaa/Makefile.in rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/moz.build => dom/imptests/html/html/obsolete/implreq/oeaaa/moz.build rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_document-color-01.html => dom/imptests/html/html/obsolete/implreq/oeaaa/test_document-color-01.html rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_document-color-02.html => dom/imptests/html/html/obsolete/implreq/oeaaa/test_document-color-02.html rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_document-color-03.html => dom/imptests/html/html/obsolete/implreq/oeaaa/test_document-color-03.html rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_document-color-04.html => dom/imptests/html/html/obsolete/implreq/oeaaa/test_document-color-04.html rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_heading-obsolete-attributes-01.html => dom/imptests/html/html/obsolete/implreq/oeaaa/test_heading-obsolete-attributes-01.html rename : dom/imptests/html/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/test_script-IDL-event-htmlfor.html => dom/imptests/html/html/obsolete/implreq/oeaaa/test_script-IDL-event-htmlfor.html
2013-04-12 11:35:15 -07:00
dest = shorten(dest)
shutil.copy(source, dest)
if os.path.exists(source + HEADERS_SUFFIX):
shutil.copy(source + HEADERS_SUFFIX, dest + HEADERS_SUFFIX)
def copy(thissrcdir, dest, directories):
"""Copy mochitests and support files from the external HG directory to their
place in mozilla-central.
"""
print("Copying %s..." % directories)
for d in directories:
subdirs, mochitests, supportfiles = parseManifestFile(dest, d)
sourcedir = makePath("hg-%s" % dest, d)
destdir = makePath(dest, d)
os.makedirs(destdir)
for mochitest in mochitests:
copyTest("%s/%s" % (sourcedir, mochitest), "%s/test_%s" % (destdir, mochitest))
for support in supportfiles:
copyTest("%s/%s" % (sourcedir, support), "%s/%s" % (destdir, support))
if len(subdirs):
if d:
importDirs(thissrcdir, dest, ["%s/%s" % (d, subdir) for subdir in subdirs])
else:
# Empty directory, i.e., the repository root
importDirs(thissrcdir, dest, subdirs)
def printMozbuildFile(dest, directories):
"""Create a .mozbuild file to be included into the main moz.build, which
lists the directories with tests.
"""
print("Creating mozbuild...")
path = dest + ".mozbuild"
with open(path, 'w') as fh:
normalized = [makePath(dest, d) for d in directories]
result = writeBuildFiles.substMozbuild("importTestsuite.py",
normalized)
fh.write(result)
subprocess.check_call(["hg", "add", path])
def printBuildFiles(thissrcdir, dest, directories):
"""Create Makefile.in files for each directory that contains tests we import.
"""
print("Creating build files...")
for d in directories:
path = makePath(dest, d)
print("Creating Makefile.in in %s..." % path)
subdirs, mochitests, supportfiles = parseManifestFile(dest, d)
files = ["test_%s" % (mochitest, ) for mochitest in mochitests]
files.extend(supportfiles)
files.extend(f for f in os.listdir(path) if f.endswith(HEADERS_SUFFIX))
with open(path + "/Makefile.in", "w") as fh:
result = writeBuildFiles.substMakefile("importTestsuite.py", files)
fh.write(result)
print("Creating moz.build in %s..." % path)
with open(path + "/moz.build", "w") as fh:
result = writeBuildFiles.substMozbuild("importTestsuite.py",
subdirs)
fh.write(result)
def hgadd(dest, directories):
"""Inform hg of the files in |directories|."""
print("hg addremoving...")
for d in directories:
subprocess.check_call(["hg", "addremove", "%s/%s" % (dest, d)])
def importDirs(thissrcdir, dest, directories):
copy(thissrcdir, dest, directories)
printBuildFiles(thissrcdir, dest, directories)
def importRepo(confFile, thissrcdir):
try:
repo, dest, directories = getData(confFile)
hgdest = "hg-%s" % (dest, )
print("Going to clone %s to %s..." % (repo, hgdest))
print("Removing %s..." % dest)
subprocess.check_call(["rm", "-rf", dest])
print("Removing %s..." % hgdest)
subprocess.check_call(["rm", "-rf", hgdest])
print("Cloning %s to %s..." % (repo, hgdest))
subprocess.check_call(["hg", "clone", repo, hgdest])
print("Going to import %s..." % directories)
importDirs(thissrcdir, dest, directories)
printMozbuildFile(dest, directories)
hgadd(dest, directories)
print("Removing %s again..." % hgdest)
subprocess.check_call(["rm", "-rf", hgdest])
except subprocess.CalledProcessError as e:
print(e.returncode)
finally:
print("Done")
if __name__ == "__main__":
if len(sys.argv) != 2:
print("Need one argument.")
else:
importRepo(sys.argv[1], "dom/imptests")