Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: test/promises-aplus/testcfg.py

Issue 196733002: Add Promises/A+ Compliance Test Suite. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/promises-aplus/promises-aplus.status ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are
4 # met:
5 #
6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided
11 # with the distribution.
12 # * Neither the name of Google Inc. nor the names of its
13 # contributors may be used to endorse or promote products derived
14 # from this software without specific prior written permission.
15 #
16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 # 'AS IS' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28
29 import hashlib
30 import os
31 import shutil
32 import sys
33 import tarfile
34 import urllib
35
36 from testrunner.local import testsuite
37 from testrunner.objects import testcase
38
39
40 SINON_TAG = '1.7.3'
41 SINON_NAME = 'sinon'
42 SINON_FILENAME = 'sinon.js'
43 SINON_URL = 'http://sinonjs.org/releases/sinon-' + SINON_TAG + '.js'
44 SINON_HASH = 'b7ab4dd9a1a2cf0460784af3728ad15caf4bbea923f680c5abde5c8332f35984'
45
46 TEST_TAG = '2.0.3'
47 TEST_ARCHIVE_TOP = 'promises-tests-' + TEST_TAG
48 TEST_NAME = 'promises-tests'
49 TEST_ARCHIVE = TEST_NAME + '.tar.gz'
50 TEST_URL = 'https://github.com/promises-aplus/promises-tests/archive/' + \
51 TEST_TAG + '.tar.gz'
52 TEST_ARCHIVE_HASH = \
53 'e446ca557ac5836dd439fecd19689c243a28b1d5a6644dd7fed4274d0fa67270'
54
55
56 class PromiseAplusTestSuite(testsuite.TestSuite):
57
58 def __init__(self, name, root):
59 self.root = root
60 self.test_files_root = os.path.join(self.root, TEST_NAME, 'lib', 'tests')
61 self.name = name
62 self.helper_files_pre = [
63 os.path.join(root, 'lib', name) for name in
64 ['global.js', 'require.js', 'mocha.js', 'adapter.js']
65 ]
66 self.helper_files_post = [
67 os.path.join(root, 'lib', name) for name in
68 ['run-tests.js']
69 ]
70
71 def CommonTestName(self, testcase):
72 return testcase.path.split(os.path.sep)[-1]
73
74 def ListTests(self, context):
75 return [testcase.TestCase(self, fname[:-len('.js')]) for fname in
76 os.listdir(os.path.join(self.root, TEST_NAME, 'lib', 'tests'))
77 if fname.endswith('.js')]
78
79 def GetFlagsForTestCase(self, testcase, context):
80 return (testcase.flags + context.mode_flags + ['--harmony'] +
81 self.helper_files_pre +
82 [os.path.join(self.test_files_root, testcase.path + '.js')] +
83 self.helper_files_post)
84
85 def GetSourceForTest(self, testcase):
86 filename = os.path.join(self.root, TEST_NAME,
87 'lib', 'tests', testcase.path + '.js')
88 return 'print("FAIL: fail");'
Jakob Kummerow 2014/04/24 14:14:53 I don't think this is working as intended ;-)
yhirano 2014/04/24 14:35:38 Oh thanks, you are right. It may be a remnant of p
89 with open(filename) as f:
90 return f.read()
91
92 def IsNegativeTest(self, testcase):
93 return '@negative' in self.GetSourceForTest(testcase)
94
95 def IsFailureOutput(self, output, testpath):
96 if output.exit_code != 0:
97 return True
98 return not 'All tests have run.' in output.stdout or \
99 'FAIL:' in output.stdout
100
101 def DownloadTestData(self):
102 archive = os.path.join(self.root, TEST_ARCHIVE)
103 directory = os.path.join(self.root, TEST_NAME)
104 if not os.path.exists(archive):
105 print('Downloading {0} from {1} ...'.format(TEST_NAME, TEST_URL))
106 urllib.urlretrieve(TEST_URL, archive)
107 if os.path.exists(directory):
108 shutil.rmtree(directory)
109
110 if not os.path.exists(directory):
111 print('Extracting {0} ...'.format(TEST_ARCHIVE))
112 hash = hashlib.sha256()
113 with open(archive, 'rb') as f:
114 for chunk in iter(lambda: f.read(8192), ''):
115 hash.update(chunk)
116 if hash.hexdigest() != TEST_ARCHIVE_HASH:
117 os.remove(archive)
118 raise Exception('Hash mismatch of test data file')
119 archive = tarfile.open(archive, 'r:gz')
120 if sys.platform in ('win32', 'cygwin'):
121 # Magic incantation to allow longer path names on Windows.
122 archive.extractall(u'\\\\?\\%s' % self.root)
123 else:
124 archive.extractall(self.root)
125 shutil.move(os.path.join(self.root, TEST_ARCHIVE_TOP), directory)
126
127 def DownloadSinon(self):
128 directory = os.path.join(self.root, SINON_NAME)
129 if not os.path.exists(directory):
130 os.mkdir(directory)
131 path = os.path.join(directory, SINON_FILENAME)
132 if not os.path.exists(path):
133 urllib.urlretrieve(SINON_URL, path)
134 hash = hashlib.sha256()
135 with open(path, 'rb') as f:
136 for chunk in iter(lambda: f.read(8192), ''):
137 hash.update(chunk)
138 if hash.hexdigest() != SINON_HASH:
139 os.remove(path)
140 raise Exception('Hash mismatch of test data file')
141
142 def DownloadData(self):
143 self.DownloadTestData()
144 self.DownloadSinon()
145
146
147 def GetSuite(name, root):
148 return PromiseAplusTestSuite(name, root)
OLDNEW
« no previous file with comments | « test/promises-aplus/promises-aplus.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698