From 7dce50ada5a1d4651a125c821e0db33df2d05961 Mon Sep 17 00:00:00 2001 From: "Carsten \"Tomcat\" Book" Date: Mon, 25 Aug 2014 14:11:21 +0200 Subject: [PATCH] Backed out changeset f7c5431f1c82 (bug 1052240) for B2G ICS Emulator Debug/Opt on a CLOSED TREE --- .../generate-wrappers-and-manifest.py | 286 ------------------ .../test/webgl-conformance/mochi-single.html | 142 --------- .../test/webgl-conformance/mochi-wrapper.css | 8 - .../mochi-wrapper.html.template | 16 - .../webgl-conformance/mochitest.ini.template | 7 - dom/canvas/test/webgl-conformance/moz.build | 3 +- 6 files changed, 2 insertions(+), 460 deletions(-) delete mode 100644 dom/canvas/test/webgl-conformance/generate-wrappers-and-manifest.py delete mode 100644 dom/canvas/test/webgl-conformance/mochi-single.html delete mode 100644 dom/canvas/test/webgl-conformance/mochi-wrapper.css delete mode 100644 dom/canvas/test/webgl-conformance/mochi-wrapper.html.template delete mode 100644 dom/canvas/test/webgl-conformance/mochitest.ini.template diff --git a/dom/canvas/test/webgl-conformance/generate-wrappers-and-manifest.py b/dom/canvas/test/webgl-conformance/generate-wrappers-and-manifest.py deleted file mode 100644 index ec190773af2..00000000000 --- a/dom/canvas/test/webgl-conformance/generate-wrappers-and-manifest.py +++ /dev/null @@ -1,286 +0,0 @@ -#!/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/. -# -# Write a Mochitest manifest for WebGL conformance test files. - -import os -import re - -######################################################################## -# GetTestList - -def GetTestList(): - testList = [] - AccumTests('', BASE_TEST_LIST_FILENAME, testList) - return testList - -############################## -# Internals - -BASE_TEST_LIST_FILENAME = '00_test_list.txt' - -def AccumTests(path, listFile, out_testList): - listFilePath = os.path.join(path, listFile) - assert os.path.exists(listFilePath), 'Bad `listFilePath`: ' + listFilePath - - with open(listFilePath) as fIn: - for line in fIn: - line = line.rstrip() - if not line: - continue - - strippedLine = line.lstrip() - if strippedLine.startswith('//'): - continue - if strippedLine.startswith('#'): - continue - if strippedLine.startswith('--'): - continue - - split = line.rsplit('.', 1) - assert len(split) == 2, 'Bad split for `line`: ' + line - (name, ext) = split - - if ext == 'html': - newTestFilePath = os.path.join(path, line) - out_testList.append(newTestFilePath) - continue - - assert ext == 'txt', 'Bad `ext` on `line`: ' + line - - split = line.rsplit('/', 1) - nextListFile = split[-1] - nextPath = '' - if len(split) != 1: - nextPath = split[0] - - nextPath = os.path.join(path, nextPath) - AccumTests(nextPath, nextListFile, out_testList) - continue - - return - -######################################################################## -# Templates - -def FillTemplate(inFilePath, templateDict, outFilePath): - templateShell = ImportTemplate(inFilePath) - OutputFilledTemplate(templateShell, templateDict, outFilePath) - return - - -def ImportTemplate(inFilePath): - with open(inFilePath, 'r') as f: - return TemplateShell(f) - - -def OutputFilledTemplate(templateShell, templateDict, outFilePath): - spanStrList = templateShell.Fill(templateDict) - - with open(outFilePath, 'w') as f: - f.writelines(spanStrList) - return - -############################## -# Internals - -def WrapWithIndent(lines, indentLen): - split = lines.split('\n') - if len(split) == 1: - return lines - - ret = [split[0]] - indentSpaces = ' ' * indentLen - for line in split[1:]: - ret.append(indentSpaces + line) - - return '\n'.join(ret) - - -templateRE = re.compile('(%%.*?%%)') -assert templateRE.split(' foo = %%BAR%%;') == [' foo = ', '%%BAR%%', ';'] - - -class TemplateShellSpan: - def __init__(self, span): - self.span = span - - self.isLiteralSpan = True - if self.span.startswith('%%') and self.span.endswith('%%'): - self.isLiteralSpan = False - self.span = self.span[2:-2] - - return - - - def Fill(self, templateDict, indentLen): - if self.isLiteralSpan: - return self.span - - assert (self.span in templateDict, - '\'' + self.span + '\' not in dict!') - - filling = templateDict[self.span] - - return WrapWithIndent(filling, indentLen) - - -class TemplateShell: - def __init__(self, iterableLines): - spanList = [] - curLiteralSpan = [] - for line in iterableLines: - split = templateRE.split(line) - - for cur in split: - isTemplateSpan = cur.startswith('%%') and cur.endswith('%%') - if not isTemplateSpan: - curLiteralSpan.append(cur) - continue - - if curLiteralSpan: - span = ''.join(curLiteralSpan) - span = TemplateShellSpan(span) - spanList.append(span) - curLiteralSpan = [] - - assert len(cur) >= 4 - - span = TemplateShellSpan(cur) - spanList.append(span) - continue - continue - - if curLiteralSpan: - span = ''.join(curLiteralSpan) - span = TemplateShellSpan(span) - spanList.append(span) - - self.spanList = spanList - return - - - # Returns spanStrList. - def Fill(self, templateDict): - indentLen = 0 - ret = [] - for span in self.spanList: - span = span.Fill(templateDict, indentLen) - ret.append(span) - - # Get next `indentLen`. - try: - lineStartPos = span.rindex('\n') + 1 - - # let span = 'foo\nbar' - # len(span) is 7 - # lineStartPos is 4 - indentLen = len(span) - lineStartPos - except ValueError: - indentLen += len(span) - continue - - return ret - -######################################################################## -# Output - -def WriteWrappers(testFilePathList): - templateShell = ImportTemplate(WRAPPER_TEMPLATE_FILEPATH) - - if not os.path.exists(WRAPPERS_DIR): - os.mkdir(WRAPPERS_DIR) - assert os.path.isdir(WRAPPERS_DIR) - - wrapperFilePathList = [] - for testFilePath in testFilePathList: - # Mochitests must start with 'test_' or similar, or the test - # runner will ignore our tests. - # The error text is "is not a valid test". - wrapperFilePath = 'test_' + testFilePath.replace(os.sep, '__') - wrapperFilePath = os.path.join(WRAPPERS_DIR, wrapperFilePath) - - testFilePath = testFilePath.replace(os.sep, '/') - - templateDict = { - 'TEST_PATH': testFilePath, - } - - print('Writing \'' + wrapperFilePath + '\'') - OutputFilledTemplate(templateShell, templateDict, - wrapperFilePath) - - wrapperFilePathList.append(wrapperFilePath) - continue - - return wrapperFilePathList - - -def WriteManifest(wrapperFilePathList, supportFilePathList): - manifestTestList = [] - for cur in wrapperFilePathList: - manifestTestList.append('[' + cur + ']') - - supportFilePathList = sorted(supportFilePathList) - - supportFilesStr = '\n'.join(supportFilePathList) - manifestTestsStr = '\n'.join(manifestTestList) - - templateDict = { - 'SUPPORT_FILES': supportFilesStr, - 'MANIFEST_TESTS': manifestTestsStr, - } - - FillTemplate(MANIFEST_TEMPLATE_FILEPATH, templateDict, - MANIFEST_OUTPUT_FILEPATH) - return - -############################## -# Internals - -WRAPPER_TEMPLATE_FILEPATH = 'mochi-wrapper.html.template' -WRAPPERS_DIR = '_wrappers' -MANIFEST_TEMPLATE_FILEPATH = 'mochitest.ini.template' -MANIFEST_OUTPUT_FILEPATH = '_mochitest.ini' - -######################################################################## - -SUPPORT_DIRS = [ - 'conformance', - 'resources', -] - -def GetSupportFileList(): - ret = [] - for supportDir in SUPPORT_DIRS: - ret += GetFilePathListForDir(supportDir) - - return ret - -def GetFilePathListForDir(baseDir): - ret = [] - for root, folders, files in os.walk(baseDir): - for f in files: - filePath = os.path.join(root, f) - ret.append(filePath) - - return ret - - -if __name__ == '__main__': - fileDir = os.path.dirname(__file__) - assert not fileDir, 'Run this file from its directory, not ' + fileDir - - testFilePathList = GetTestList() - - wrapperFilePathList = WriteWrappers(testFilePathList) - - supportFilePathList = GetSupportFileList() - WriteManifest(wrapperFilePathList, supportFilePathList) - - print('Done!') - - diff --git a/dom/canvas/test/webgl-conformance/mochi-single.html b/dom/canvas/test/webgl-conformance/mochi-single.html deleted file mode 100644 index 125f549306e..00000000000 --- a/dom/canvas/test/webgl-conformance/mochi-single.html +++ /dev/null @@ -1,142 +0,0 @@ - - - - - -WebGL Conformance Test Suite Single Test Wrapper - - - - - -
Status: Initializing
-
Path: -
-
Failures: -
- - - - diff --git a/dom/canvas/test/webgl-conformance/mochi-wrapper.css b/dom/canvas/test/webgl-conformance/mochi-wrapper.css deleted file mode 100644 index 8bad5495ddd..00000000000 --- a/dom/canvas/test/webgl-conformance/mochi-wrapper.css +++ /dev/null @@ -1,8 +0,0 @@ -iframe { - position:fixed; - top:0px; left:0px; bottom:0px; right:0px; - width:100%; height:100%; - border:none; margin:0; padding:0; - overflow:hidden; - z-index:999999; -} diff --git a/dom/canvas/test/webgl-conformance/mochi-wrapper.html.template b/dom/canvas/test/webgl-conformance/mochi-wrapper.html.template deleted file mode 100644 index 16266d593d3..00000000000 --- a/dom/canvas/test/webgl-conformance/mochi-wrapper.html.template +++ /dev/null @@ -1,16 +0,0 @@ - - - - - -Mochitest wrapper for WebGL Conformance Test Suite tests - - - - - - - - - diff --git a/dom/canvas/test/webgl-conformance/mochitest.ini.template b/dom/canvas/test/webgl-conformance/mochitest.ini.template deleted file mode 100644 index c6d478aba0d..00000000000 --- a/dom/canvas/test/webgl-conformance/mochitest.ini.template +++ /dev/null @@ -1,7 +0,0 @@ -[DEFAULT] -skip-if = e10s -support-files = mochi-single.html - mochi-wrapper.css - %%SUPPORT_FILES%% - -%%MANIFEST_TESTS%% diff --git a/dom/canvas/test/webgl-conformance/moz.build b/dom/canvas/test/webgl-conformance/moz.build index f08dc12c2a2..fbe0963eb57 100644 --- a/dom/canvas/test/webgl-conformance/moz.build +++ b/dom/canvas/test/webgl-conformance/moz.build @@ -5,5 +5,6 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. MOCHITEST_MANIFESTS += [ - '_mochitest.ini', + 'mochitest-conformance-files.ini', + 'mochitest.ini', ]