forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test_runner_test.py
executable file
·331 lines (288 loc) · 12.4 KB
/
test_runner_test.py
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
323
324
325
326
327
328
329
330
331
#!/usr/bin/env vpython3
# Copyright 2016 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Unittests for test_runner.py."""
import collections
import logging
import mock
import os
import tempfile
import unittest
import iossim_util
import result_sink_util
import test_apps
from test_result_util import ResultCollection, TestResult, TestStatus
import test_runner
class TestCase(unittest.TestCase):
"""Test case which supports installing mocks. Uninstalls on tear down."""
def __init__(self, *args, **kwargs):
"""Initializes a new instance of this class."""
super(TestCase, self).__init__(*args, **kwargs)
# Maps object to a dict which maps names of mocked members to their
# original values.
self._mocks = collections.OrderedDict()
def mock(self, obj, member, mock):
"""Installs mock in place of the named member of the given obj.
Args:
obj: Any object.
member: String naming the attribute of the object to mock.
mock: The mock to install.
"""
self._mocks.setdefault(obj, collections.OrderedDict()).setdefault(
member, getattr(obj, member))
setattr(obj, member, mock)
def unmock(self, obj, member):
"""Uninstalls the mock from the named member of given obj.
Args:
obj: An obj who's member has been mocked
member: String naming the attribute of the object to unmock
"""
if self._mocks[obj][member]:
setattr(obj, member, self._mocks[obj][member])
def tearDown(self, *args, **kwargs):
"""Uninstalls mocks."""
super(TestCase, self).tearDown(*args, **kwargs)
for obj in self._mocks:
for member, original_value in self._mocks[obj].items():
setattr(obj, member, original_value)
class SimulatorTestRunnerTest(TestCase):
"""Tests for test_runner.SimulatorTestRunner."""
def setUp(self):
super(SimulatorTestRunnerTest, self).setUp()
self.mock(iossim_util, 'get_simulator', lambda _1, _2: 'sim-UUID')
self.mock(result_sink_util.ResultSinkClient,
'post', lambda *args, **kwargs: None)
self.mock(test_runner, 'get_current_xcode_info', lambda: {
'version': 'test version', 'build': 'test build', 'path': 'test/path'})
self.mock(test_apps, 'get_bundle_id', lambda _: 'fake-bundle-id')
self.mock(test_apps.SimulatorXCTestUnitTestsApp,
'_xctest_path', lambda _: 'fake-path')
self.mock(test_apps.plistlib, 'dump', lambda _1, _2: '')
self.mock(os.path, 'abspath', lambda path: '/abs/path/to/%s' % path)
self.mock(os.path, 'exists', lambda _: True)
self.mock(test_runner.TestRunner, 'set_sigterm_handler',
lambda self, handler: 0)
self.mock(os, 'listdir', lambda _: [])
self.mock(test_apps.GTestsApp, 'fill_xctest_run',
lambda _, folder: '/abs/path/to/%s' % folder)
def test_app_not_found(self):
"""Ensures AppNotFoundError is raised."""
self.mock(os.path, 'exists', lambda p: not p.endswith('fake-app'))
with self.assertRaises(test_runner.AppNotFoundError):
test_runner.SimulatorTestRunner(
'fake-app',
'fake-iossim',
'platform',
'os',
'out-dir',
)
def test_iossim_not_found(self):
"""Ensures SimulatorNotFoundError is raised."""
self.mock(os.path, 'exists', lambda p: not p.endswith('fake-iossim'))
with self.assertRaises(test_runner.SimulatorNotFoundError):
test_runner.SimulatorTestRunner(
'fake-app',
'fake-iossim',
'iPhone X',
'11.4',
'out-dir',
)
def test_init(self):
"""Ensures instance is created."""
tr = test_runner.SimulatorTestRunner(
'fake-app',
'fake-iossim',
'iPhone X',
'11.4',
'out-dir',
)
self.assertTrue(tr)
@mock.patch('test_runner.SimulatorTestRunner.tear_down')
@mock.patch('test_runner.SimulatorTestRunner.set_up')
@mock.patch('test_runner.TestRunner._run')
def test_startup_crash(self, mock_run, _1, _2):
"""Ensures test is relaunched once on startup crash."""
result = ResultCollection()
result.crashed = True
mock_run.return_value = result
tr = test_runner.SimulatorTestRunner(
'fake-app',
'fake-iossim',
'iPhone X',
'11.4',
'out-dir',
xctest=True,
)
with self.assertRaises(test_runner.AppLaunchError):
tr.launch()
self.assertEqual(len(mock_run.mock_calls), 2)
def test_relaunch(self):
"""Ensures test is relaunched on test crash until tests complete."""
def set_up(self):
return
@staticmethod
def _run(cmd, clones=None):
if not any('retry_after_crash' in cmd_arg for cmd_arg in cmd):
# First run, has no test filter supplied. Mock a crash.
result = ResultCollection(
test_results=[TestResult('crash', TestStatus.CRASH)])
result.crashed = True
result.add_test_result(TestResult('pass', TestStatus.PASS))
result.add_test_result(
TestResult('fail', TestStatus.FAIL, test_log='some logs'))
return result
else:
return ResultCollection(
test_results=[TestResult('crash', TestStatus.PASS)])
def tear_down(self):
return
self.mock(test_runner.SimulatorTestRunner, 'set_up', set_up)
self.mock(test_runner.TestRunner, '_run', _run)
self.mock(test_runner.SimulatorTestRunner, 'tear_down', tear_down)
tr = test_runner.SimulatorTestRunner(
'fake-app',
'fake-iossim',
'iPhone X',
'11.4',
'out-dir',
)
tr.launch()
self.assertTrue(tr.logs)
@mock.patch('test_runner.SimulatorTestRunner.tear_down')
@mock.patch('test_runner.SimulatorTestRunner.set_up')
@mock.patch('test_runner.TestRunner._run')
def test_failed_test_retry(self, mock_run, _1, _2):
test1_fail_result = TestResult('test1', TestStatus.FAIL)
test2_fail_result = TestResult('test2', TestStatus.FAIL)
test1_pass_result = TestResult('test1', TestStatus.PASS)
test2_pass_result = TestResult('test2', TestStatus.PASS)
result1 = ResultCollection(
test_results=[test1_fail_result, test2_fail_result])
retry_result1 = ResultCollection(test_results=[test1_pass_result])
retry_result2 = ResultCollection(test_results=[test2_pass_result])
mock_run.side_effect = [result1, retry_result1, retry_result2]
tr = test_runner.SimulatorTestRunner(
'fake-app', 'fake-iossim', 'iPhone X', '11.4', 'out-dir', retries=3)
tr.launch()
self.assertEqual(len(mock_run.mock_calls), 3)
self.assertTrue(tr.logs)
@mock.patch('test_runner.SimulatorTestRunner.tear_down')
@mock.patch('test_runner.SimulatorTestRunner.set_up')
@mock.patch('test_runner.TestRunner._run')
def test_crashed_if_crash_in_final_crash_retry(self, mock_run, _1, _2):
test1_crash_result = TestResult('test1', TestStatus.CRASH)
test2_crash_result = TestResult('test2', TestStatus.CRASH)
test3_pass_result = TestResult('test3', TestStatus.PASS)
test1_pass_result = TestResult('test1', TestStatus.PASS)
test2_pass_result = TestResult('test2', TestStatus.PASS)
initial_result = ResultCollection(test_results=[test1_crash_result])
initial_result.crashed = True
crash_retry1_result = ResultCollection(test_results=[test2_crash_result])
crash_retry1_result.crashed = True
crash_retry2_result = ResultCollection(test_results=[test3_pass_result])
crash_retry2_result.crashed = True
test_retry1_result = ResultCollection(test_results=[test1_pass_result])
test_retry2_result = ResultCollection(test_results=[test2_pass_result])
mock_run.side_effect = [
initial_result, crash_retry1_result, crash_retry2_result,
test_retry1_result, test_retry2_result
]
tr = test_runner.SimulatorTestRunner(
'fake-app', 'fake-iossim', 'iPhone X', '11.4', 'out-dir', retries=3)
tr.launch()
self.assertEqual(len(mock_run.mock_calls), 5)
self.assertTrue(tr.test_results['interrupted'])
self.assertIn('test suite crash', tr.logs)
self.assertTrue(tr.logs)
@mock.patch('test_runner.SimulatorTestRunner.tear_down')
@mock.patch('test_runner.SimulatorTestRunner.set_up')
@mock.patch('test_runner.TestRunner._run')
def test_not_crashed_if_no_crash_in_final_crash_retry(self, mock_run, _1, _2):
test1_crash_result = TestResult('test1', TestStatus.CRASH)
test2_crash_result = TestResult('test2', TestStatus.CRASH)
test3_pass_result = TestResult('test3', TestStatus.PASS)
test1_pass_result = TestResult('test1', TestStatus.PASS)
test2_pass_result = TestResult('test2', TestStatus.PASS)
initial_result = ResultCollection(test_results=[test1_crash_result])
initial_result.crashed = True
crash_retry1_result = ResultCollection(test_results=[test2_crash_result])
crash_retry1_result.crashed = True
crash_retry2_result = ResultCollection(test_results=[test3_pass_result])
test_retry1_result = ResultCollection(test_results=[test1_pass_result])
test_retry2_result = ResultCollection(test_results=[test2_pass_result])
mock_run.side_effect = [
initial_result, crash_retry1_result, crash_retry2_result,
test_retry1_result, test_retry2_result
]
tr = test_runner.SimulatorTestRunner(
'fake-app', 'fake-iossim', 'iPhone X', '11.4', 'out-dir', retries=3)
tr.launch()
self.assertEqual(len(mock_run.mock_calls), 5)
self.assertFalse(tr.test_results['interrupted'])
self.assertTrue(tr.logs)
@mock.patch('test_runner.SimulatorTestRunner.tear_down')
@mock.patch('test_runner.SimulatorTestRunner.set_up')
@mock.patch('test_runner.TestRunner._run')
def test_not_crashed_if_crashed_in_failed_test_retry(self, mock_run, _1, _2):
test1_fail_result = TestResult('test1', TestStatus.FAIL)
initial_result = ResultCollection(test_results=[test1_fail_result])
test1_retry1_result = ResultCollection(test_results=[test1_fail_result])
test1_retry2_result = ResultCollection(test_results=[test1_fail_result])
test1_retry3_result = ResultCollection()
test1_retry3_result.crashed = True
mock_run.side_effect = [
initial_result, test1_retry1_result, test1_retry2_result,
test1_retry3_result
]
tr = test_runner.SimulatorTestRunner(
'fake-app', 'fake-iossim', 'iPhone X', '11.4', 'out-dir', retries=3)
tr.launch()
self.assertEqual(len(mock_run.mock_calls), 4)
self.assertFalse(tr.test_results['interrupted'])
self.assertEqual(tr.test_results['tests']['test1']['actual'],
'FAIL FAIL FAIL SKIP')
self.assertTrue(tr.logs)
@mock.patch('test_runner.SimulatorTestRunner.tear_down')
@mock.patch('test_runner.SimulatorTestRunner.set_up')
@mock.patch('test_runner.TestRunner._run')
def test_crashed_spawning_launcher_no_retry(self, mock_run, _1, _2):
test1_crash_result = TestResult('test1', TestStatus.CRASH)
initial_result = ResultCollection(test_results=[test1_crash_result])
initial_result.crashed = True
initial_result.spawning_test_launcher = True
mock_run.side_effect = [initial_result]
tr = test_runner.SimulatorTestRunner(
'fake-app', 'fake-iossim', 'iPhone X', '11.4', 'out-dir', retries=3)
tr.launch()
self.assertEqual(len(mock_run.mock_calls), 1)
self.assertTrue(tr.test_results['interrupted'])
self.assertIn('test suite crash', tr.logs)
self.assertTrue(tr.logs)
class DeviceTestRunnerTest(TestCase):
def setUp(self):
super(DeviceTestRunnerTest, self).setUp()
def install_xcode(build, mac_toolchain_cmd, xcode_app_path):
return True
self.mock(result_sink_util.ResultSinkClient,
'post', lambda *args, **kwargs: None)
self.mock(test_runner, 'get_current_xcode_info', lambda: {
'version': 'test version', 'build': 'test build', 'path': 'test/path'})
self.mock(test_runner, 'install_xcode', install_xcode)
self.mock(test_runner.subprocess,
'check_output', lambda _: b'fake-bundle-id')
self.mock(os.path, 'abspath', lambda path: '/abs/path/to/%s' % path)
self.mock(os.path, 'exists', lambda _: True)
self.mock(os, 'listdir', lambda _: [])
self.mock(tempfile, 'mkstemp', lambda: '/tmp/tmp_file')
self.tr = test_runner.DeviceTestRunner(
'fake-app',
'xcode-version',
'xcode-build',
'out-dir',
)
self.tr.xctestrun_data = {'TestTargetName': {}}
if __name__ == '__main__':
logging.basicConfig(format='[%(asctime)s:%(levelname)s] %(message)s',
level=logging.DEBUG, datefmt='%I:%M:%S')
unittest.main()