1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
|
#! /usr/bin/python
import sys
import os
import StringIO
import unittest
class BuildBotConfigLoader(object):
def _add_webkitpy_to_sys_path(self):
# When files are passed to the python interpreter on the command line (e.g. python test.py) __file__ is a relative path.
absolute_file_path = os.path.abspath(__file__)
webkit_org_config_dir = os.path.dirname(absolute_file_path)
build_slave_support_dir = os.path.dirname(webkit_org_config_dir)
webkit_tools_dir = os.path.dirname(build_slave_support_dir)
scripts_dir = os.path.join(webkit_tools_dir, 'Scripts')
sys.path.append(scripts_dir)
def _create_mock_passwords_dict(self):
config_dict = simplejson.load(open('config.json'))
return dict([(slave['name'], '1234') for slave in config_dict['slaves']])
def _mock_open(self, filename):
if filename == 'passwords.json':
# FIXME: This depends on _add_dependant_modules_to_sys_modules imported simplejson.
return StringIO.StringIO(simplejson.dumps(self._create_mock_passwords_dict()))
return __builtins__.open(filename)
def _add_dependant_modules_to_sys_modules(self):
from webkitpy.thirdparty.autoinstalled import buildbot
import json as simplejson
sys.modules['buildbot'] = buildbot
sys.modules['simplejson'] = simplejson
def load_config(self, master_cfg_path):
# Before we can use webkitpy.thirdparty, we need to fix our path to include webkitpy.
# FIXME: If we're ever run by test-webkitpy we won't need this step.
self._add_webkitpy_to_sys_path()
# master.cfg expects the buildbot and simplejson modules to be in sys.path.
self._add_dependant_modules_to_sys_modules()
# master.cfg expects a passwords.json file which is not checked in. Fake it by mocking open().
globals()['open'] = self._mock_open
# Because the master_cfg_path may have '.' in its name, we can't just use import, we have to use execfile.
# We pass globals() as both the globals and locals to mimic exectuting in the global scope, so
# that globals defined in master.cfg will be global to this file too.
execfile(master_cfg_path, globals(), globals())
globals()['open'] = __builtins__.open # Stop mocking open().
class MasterCfgTest(unittest.TestCase):
def test_nrwt_leaks_parsing(self):
run_webkit_tests = RunWebKitTests()
log_text = """
2011-08-09 10:05:18,580 29486 mac.py:275 INFO leaks found for a total of 197,936 bytes!
2011-08-09 10:05:18,580 29486 mac.py:276 INFO 1 unique leaks found!
"""
expected_incorrect_lines = [
'leaks found for a total of 197,936 bytes!',
'1 unique leaks found!',
]
run_webkit_tests._parseNewRunWebKitTestsOutput(log_text)
self.assertEquals(run_webkit_tests.incorrectLayoutLines, expected_incorrect_lines)
class StubStdio(object):
def __init__(self, stdio):
self._stdio = stdio
def getText(self):
return self._stdio
class StubRemoteCommand(object):
def __init__(self, rc, stdio):
self.rc = rc
self.logs = {'stdio': StubStdio(stdio)}
class RunQtAPITestsTest(unittest.TestCase):
def assertResults(self, expected_result, expected_text, stdio):
rc = 0
cmd = StubRemoteCommand(rc, stdio)
step = RunQtAPITests()
step.commandComplete(cmd)
actual_results = step.evaluateCommand(cmd)
actual_text = str(step.getText2(cmd, actual_results)[0])
self.assertEqual(expected_result, actual_results)
self.assertEqual(actual_text, expected_text)
def test_timeout(self):
self.assertResults(FAILURE, "API tests", """INFO:Exec:Running... WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qquickwebview/tst_qquickwebview
INFO:Exec:Running... WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qmltests/tst_qmltests
Qml debugging is enabled. Only use this in a safe environment!
INFO:Exec:Finished WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qquickwebview/tst_qquickwebview
ERROR:Exec:Timeout, process 'WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qmltests/tst_qmltests' (2336) was terminated
INFO:Exec:Finished WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qmltests/tst_qmltests
********* Start testing of tst_QQuickWebView *********
Config: Using QTest library 5.0.0, Qt 5.0.0
PASS : tst_QQuickWebView::initTestCase()
QWARN : tst_QQuickWebView::accessPage() QQuickCanvas: platform does not support threaded rendering!
.
.
.
**********************************************************************
** TOTALS: 16 passed, 0 failed, 0 skipped **
**********************************************************************""")
def test_success(self):
self.assertResults(SUCCESS, "API tests", """INFO:Exec:Running... WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qquickwebview/tst_qquickwebview
INFO:Exec:Running... WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qmltests/tst_qmltests
Qml debugging is enabled. Only use this in a safe environment!
INFO:Exec:Finished WebKitBuild/Release/Source/WebKit2/UIProcess/API/qt/tests/qquickwebview/tst_qquickwebview
********* Start testing of tst_QQuickWebView *********
Config: Using QTest library 5.0.0, Qt 5.0.0
PASS : tst_QQuickWebView::initTestCase()
QWARN : tst_QQuickWebView::accessPage() QQuickCanvas: platform does not support threaded rendering!
.
.
.
**********************************************************************
** TOTALS: 16 passed, 0 failed, 0 skipped **
**********************************************************************""")
def test_failure(self):
self.assertResults(WARNINGS, "16 passed, 1 failed, 0 skipped", """********* Start testing of tst_QDeclarativeWebView *********
PASS : tst_QDeclarativeWebView::pressGrabTime()
PASS : tst_QDeclarativeWebView::renderingEnabled()
PASS : tst_QDeclarativeWebView::setHtml()
PASS : tst_QDeclarativeWebView::settings()
FAIL! : tst_QDeclarativeWebView::backgroundColor() Compared values are not the same
Loc: [/ramdisk/qt-linux-release/build/Source/WebKit/qt/tests/qdeclarativewebview/tst_qdeclarativewebview.cpp(532)]
PASS : tst_QDeclarativeWebView::cleanupTestCase()
.
.
.
**********************************************************************
** TOTALS: 16 passed, 1 failed, 0 skipped **
**********************************************************************""")
def test_timeout_and_failure(self):
self.assertResults(FAILURE, "Failure: timeout occured during testing", """INFO:Exec:Finished WebKitBuild/Release/Source/WebKit/qt/tests/benchmarks/painting/tst_painting
ERROR:Exec:Timeout, process 'WebKitBuild/Release/Source/WebKit/qt/tests/qwebpage/tst_qwebpage' (13000) was terminated
INFO:Exec:Finished WebKitBuild/Release/Source/WebKit/qt/tests/qwebpage/tst_qwebpage
********* Start testing of tst_Loading *********
Config: Using QTest library 4.8.0, Qt 4.8.0
PASS : tst_Loading::initTestCase()
QDEBUG : tst_Loading::load(amazon) loaded the Generic plugin
RESULT : tst_Loading::load():"amazon":
1,843 msecs per iteration (total: 1,843, iterations: 1)
RESULT : tst_Loading::load():"kde":
139 msecs per iteration (total: 139, iterations: 1)
RESULT : tst_Loading::load():"apple":
740 msecs per iteration (total: 740, iterations: 1)
PASS : tst_Loading::load()
PASS : tst_Loading::cleanupTestCase()
Totals: 3 passed, 0 failed, 0 skipped
********* Finished testing of tst_Loading *********
.
.
.
PASS : tst_QDeclarativeWebView::renderingEnabled()
PASS : tst_QDeclarativeWebView::setHtml()
PASS : tst_QDeclarativeWebView::settings()
FAIL! : tst_QDeclarativeWebView::backgroundColor() Compared values are not the same
Loc: [/ramdisk/qt-linux-release/build/Source/WebKit/qt/tests/qdeclarativewebview/tst_qdeclarativewebview.cpp(532)]
PASS : tst_QDeclarativeWebView::cleanupTestCase()
Totals: 16 passed, 3 failed, 1 skipped
.
.
.
**********************************************************************
** TOTALS: 73 passed, 3 failed, 1 skipped **
**********************************************************************""")
class RunUnitTestsTest(unittest.TestCase):
def assertFailures(self, expected_failure_count, stdio):
if expected_failure_count:
rc = 1
expected_results = FAILURE
expected_text = '{0} unit tests failed or timed out'.format(expected_failure_count)
else:
rc = 0
expected_results = SUCCESS
expected_text = 'run-api-tests'
cmd = StubRemoteCommand(rc, stdio)
step = RunUnitTests()
step.commandComplete(cmd)
actual_results = step.evaluateCommand(cmd)
actual_failure_count = step.failedTestCount
actual_text = step.getText(cmd, actual_results)[0]
self.assertEqual(expected_results, actual_results)
self.assertEqual(expected_failure_count, actual_failure_count)
self.assertEqual(expected_text, actual_text)
def test_no_failures_or_timeouts(self):
self.assertFailures(0, """Note: Google Test filter = WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from WebViewDestructionWithHostWindow
[ RUN ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
[ OK ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose (127 ms)
[----------] 1 test from WebViewDestructionWithHostWindow (127 ms total)
[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (127 ms total)
[ PASSED ] 1 test.
""")
def test_one_failure(self):
self.assertFailures(1, """Note: Google Test filter = WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from WebViewDestructionWithHostWindow
[ RUN ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
[ OK ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose (127 ms)
[----------] 1 test from WebViewDestructionWithHostWindow (127 ms total)
[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (127 ms total)
[ PASSED ] 1 test.
Tests that failed:
WebKit2.WebKit2.CanHandleRequest
""")
def test_multiple_failures(self):
self.assertFailures(4, """Note: Google Test filter = WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from WebViewDestructionWithHostWindow
[ RUN ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
[ OK ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose (127 ms)
[----------] 1 test from WebViewDestructionWithHostWindow (127 ms total)
[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (127 ms total)
[ PASSED ] 1 test.
Tests that failed:
WebKit2.WebKit2.CanHandleRequest
WebKit2.WebKit2.DocumentStartUserScriptAlertCrashTest
WebKit2.WebKit2.HitTestResultNodeHandle
WebKit2.WebKit2.InjectedBundleBasic
""")
def test_one_timeout(self):
self.assertFailures(1, """Note: Google Test filter = WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from WebViewDestructionWithHostWindow
[ RUN ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
[ OK ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose (127 ms)
[----------] 1 test from WebViewDestructionWithHostWindow (127 ms total)
[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (127 ms total)
[ PASSED ] 1 test.
Tests that timed out:
WebKit2.WebKit2.CanHandleRequest
""")
def test_multiple_timeouts(self):
self.assertFailures(4, """Note: Google Test filter = WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from WebViewDestructionWithHostWindow
[ RUN ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
[ OK ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose (127 ms)
[----------] 1 test from WebViewDestructionWithHostWindow (127 ms total)
[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (127 ms total)
[ PASSED ] 1 test.
Tests that timed out:
WebKit2.WebKit2.CanHandleRequest
WebKit2.WebKit2.DocumentStartUserScriptAlertCrashTest
WebKit2.WebKit2.HitTestResultNodeHandle
WebKit2.WebKit2.InjectedBundleBasic
""")
def test_multiple_failures_and_timeouts(self):
self.assertFailures(8, """Note: Google Test filter = WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
[==========] Running 1 test from 1 test case.
[----------] Global test environment set-up.
[----------] 1 test from WebViewDestructionWithHostWindow
[ RUN ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose
[ OK ] WebViewDestructionWithHostWindow.DestroyViewWindowWithoutClose (127 ms)
[----------] 1 test from WebViewDestructionWithHostWindow (127 ms total)
[----------] Global test environment tear-down
[==========] 1 test from 1 test case ran. (127 ms total)
[ PASSED ] 1 test.
Tests that failed:
WebKit2.WebKit2.CanHandleRequest
WebKit2.WebKit2.DocumentStartUserScriptAlertCrashTest
WebKit2.WebKit2.HitTestResultNodeHandle
Tests that timed out:
WebKit2.WebKit2.InjectedBundleBasic
WebKit2.WebKit2.LoadCanceledNoServerRedirectCallback
WebKit2.WebKit2.MouseMoveAfterCrash
WebKit2.WebKit2.ResponsivenessTimerDoesntFireEarly
WebKit2.WebKit2.WebArchive
""")
# FIXME: We should run this file as part of test-webkitpy.
# Unfortunately test-webkitpy currently requires that unittests
# be located in a directory with a valid module name.
# 'build.webkit.org-config' is not a valid module name (due to '.' and '-')
# so for now this is a stand-alone test harness.
if __name__ == '__main__':
BuildBotConfigLoader().load_config('master.cfg')
unittest.main()
|