2012-03-29 14:08:58 -07:00
|
|
|
#!/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.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import string
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
|
|
|
import parseManifest
|
|
|
|
|
|
|
|
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:
|
|
|
|
fp = open(confFile, "rb")
|
|
|
|
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:
|
|
|
|
fp.close()
|
|
|
|
return repo, dest, directories
|
|
|
|
|
|
|
|
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:
|
|
|
|
dirtocreate = dest
|
|
|
|
|
|
|
|
subdirs, mochitests, supportfiles = parseManifestFile(dest, d)
|
|
|
|
sourcedir = "hg-%s/%s" % (dest, d)
|
|
|
|
destdir = "%s/%s" % (dest, d)
|
2012-04-14 06:05:33 -07:00
|
|
|
os.makedirs(destdir)
|
|
|
|
|
2012-03-29 14:08:58 -07:00
|
|
|
for mochitest in mochitests:
|
|
|
|
shutil.copy("%s/%s" % (sourcedir, mochitest), "%s/test_%s" % (destdir, mochitest))
|
|
|
|
for support in supportfiles:
|
|
|
|
shutil.copy("%s/%s" % (sourcedir, support), "%s/%s" % (destdir, support))
|
|
|
|
|
|
|
|
if len(subdirs):
|
|
|
|
importDirs(thissrcdir, dest, ["%s/%s" % (d, subdir) for subdir in subdirs])
|
|
|
|
|
|
|
|
def printMakefile(dest, directories):
|
|
|
|
"""Create a .mk file to be included into the main Makefile.in, which lists the
|
|
|
|
directories with tests.
|
|
|
|
"""
|
|
|
|
print "Creating .mk..."
|
|
|
|
path = dest + ".mk"
|
|
|
|
fp = open(path, "wb")
|
|
|
|
fp.write("DIRS += \\\n")
|
|
|
|
fp.writelines([" %s/%s \\\n" % (dest, d) for d in directories])
|
|
|
|
fp.write(" $(NULL)\n")
|
|
|
|
fp.close()
|
|
|
|
subprocess.check_call(["hg", "add", path])
|
|
|
|
|
|
|
|
makefileTemplate = """# THIS FILE IS AUTOGENERATED BY importTestsuite.py - DO NOT EDIT
|
|
|
|
|
|
|
|
DEPTH = ${depth}
|
|
|
|
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
relativesrcdir = ${relativesrcdir}
|
|
|
|
|
|
|
|
DIRS = \\
|
|
|
|
${dirs}
|
|
|
|
|
|
|
|
include $$(DEPTH)/config/autoconf.mk
|
|
|
|
include $$(topsrcdir)/config/rules.mk
|
|
|
|
"""
|
|
|
|
testsTemplate = """
|
|
|
|
_TESTS = \\
|
|
|
|
${tests}
|
|
|
|
|
|
|
|
_TESTS += \\
|
|
|
|
${support}
|
|
|
|
|
|
|
|
libs:: $$(_TESTS)
|
|
|
|
\t$$(INSTALL) $$(foreach f,$$^,"$$f") $$(DEPTH)/_tests/testing/mochitest/tests/$$(relativesrcdir)
|
|
|
|
"""
|
|
|
|
|
|
|
|
def makefileString(entries):
|
|
|
|
if not len(entries):
|
|
|
|
return " $(NULL)"
|
|
|
|
return "\n".join([" %s \\" % (entry, ) for entry in entries]) + "\n $(NULL)"
|
|
|
|
|
|
|
|
def printMakefiles(thissrcdir, dest, directories):
|
|
|
|
"""Create Makefile.in files for each directory that contains tests we import.
|
|
|
|
"""
|
|
|
|
print "Creating Makefile.ins..."
|
|
|
|
for d in directories:
|
|
|
|
path = "%s/%s" % (dest, d)
|
|
|
|
abspath = "%s/%s" % (thissrcdir, path)
|
|
|
|
print "Creating Makefile.in in %s..." % (path, )
|
|
|
|
|
|
|
|
subdirs, mochitests, supportfiles = parseManifestFile(dest, d)
|
|
|
|
|
|
|
|
fp = open(path + "/Makefile.in", "wb")
|
|
|
|
result = string.Template(makefileTemplate).substitute({
|
|
|
|
"depth": "..%s" % ("/.." * abspath.count("/"), ),
|
|
|
|
"relativesrcdir": "%s/%s" % (thissrcdir, path),
|
|
|
|
"dirs": makefileString(subdirs)
|
|
|
|
})
|
|
|
|
|
|
|
|
if len(mochitests) + len(supportfiles):
|
|
|
|
result += string.Template(testsTemplate).substitute({
|
|
|
|
"tests": makefileString(["test_%s" % (mochitest, ) for mochitest in mochitests]),
|
|
|
|
"support": makefileString(supportfiles)
|
|
|
|
})
|
|
|
|
|
|
|
|
fp.write(result)
|
|
|
|
fp.close()
|
|
|
|
|
|
|
|
def hgadd(dest, directories):
|
|
|
|
"""Inform hg of the files in |directories|."""
|
2012-04-14 06:05:33 -07:00
|
|
|
print "hg addremoving..."
|
2012-03-29 14:08:58 -07:00
|
|
|
for d in directories:
|
2012-04-14 06:05:33 -07:00
|
|
|
subprocess.check_call(["hg", "addremove", "%s/%s" % (dest, d)])
|
2012-03-29 14:08:58 -07:00
|
|
|
|
|
|
|
def importDirs(thissrcdir, dest, directories):
|
|
|
|
copy(thissrcdir, dest, directories)
|
|
|
|
printMakefiles(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", "--recursive", "--force", dest])
|
|
|
|
print "Removing %s..." % hgdest
|
|
|
|
subprocess.check_call(["rm", "--recursive", "--force", 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)
|
|
|
|
printMakefile(dest, directories)
|
|
|
|
hgadd(dest, directories)
|
|
|
|
print "Removing %s again..." % hgdest
|
|
|
|
subprocess.check_call(["rm", "--recursive", "--force", hgdest])
|
|
|
|
except subprocess.CalledProcessError, e:
|
|
|
|
print e.returncode
|
|
|
|
finally:
|
|
|
|
print "Done"
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2012-04-14 06:05:33 -07:00
|
|
|
if len(sys.argv) != 2:
|
2012-03-29 14:08:58 -07:00
|
|
|
print "Need one argument."
|
|
|
|
else:
|
2012-04-14 06:05:48 -07:00
|
|
|
importRepo(sys.argv[1], "dom/imported-tests")
|