blob: 40ff281140d1b99df277a4f56cea529cd0cdbf4d [file] [log] [blame]
Finn Behrensc25ce582020-11-23 15:15:33 +01001#!/usr/bin/env python3
Felix Guo6ebf5862019-09-23 02:02:43 -07002# SPDX-License-Identifier: GPL-2.0
3#
4# A collection of tests for tools/testing/kunit/kunit.py
5#
6# Copyright (C) 2019, Google LLC.
7# Author: Brendan Higgins <brendanhiggins@google.com>
8
9import unittest
10from unittest import mock
11
12import tempfile, shutil # Handling test_tmpdir
13
Daniel Latypovb29b14f2021-05-26 01:22:17 -070014import itertools
Heidi Fahim21a6d172020-08-11 14:27:56 -070015import json
Daniel Latypov243180f2021-02-01 12:55:14 -080016import signal
Felix Guo6ebf5862019-09-23 02:02:43 -070017import os
18
19import kunit_config
20import kunit_parser
21import kunit_kernel
Heidi Fahim21a6d172020-08-11 14:27:56 -070022import kunit_json
Felix Guo6ebf5862019-09-23 02:02:43 -070023import kunit
24
25test_tmpdir = ''
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -080026abs_test_data_dir = ''
Felix Guo6ebf5862019-09-23 02:02:43 -070027
28def setUpModule():
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -080029 global test_tmpdir, abs_test_data_dir
Felix Guo6ebf5862019-09-23 02:02:43 -070030 test_tmpdir = tempfile.mkdtemp()
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -080031 abs_test_data_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), 'test_data'))
Felix Guo6ebf5862019-09-23 02:02:43 -070032
33def tearDownModule():
34 shutil.rmtree(test_tmpdir)
35
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -080036def test_data_path(path):
37 return os.path.join(abs_test_data_dir, path)
Felix Guo6ebf5862019-09-23 02:02:43 -070038
39class KconfigTest(unittest.TestCase):
40
41 def test_is_subset_of(self):
42 kconfig0 = kunit_config.Kconfig()
43 self.assertTrue(kconfig0.is_subset_of(kconfig0))
44
45 kconfig1 = kunit_config.Kconfig()
David Gow97752c32020-03-23 19:43:33 -070046 kconfig1.add_entry(kunit_config.KconfigEntry('TEST', 'y'))
Felix Guo6ebf5862019-09-23 02:02:43 -070047 self.assertTrue(kconfig1.is_subset_of(kconfig1))
48 self.assertTrue(kconfig0.is_subset_of(kconfig1))
49 self.assertFalse(kconfig1.is_subset_of(kconfig0))
50
51 def test_read_from_file(self):
52 kconfig = kunit_config.Kconfig()
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -080053 kconfig_path = test_data_path('test_read_from_file.kconfig')
Felix Guo6ebf5862019-09-23 02:02:43 -070054
55 kconfig.read_from_file(kconfig_path)
56
57 expected_kconfig = kunit_config.Kconfig()
58 expected_kconfig.add_entry(
David Gow97752c32020-03-23 19:43:33 -070059 kunit_config.KconfigEntry('UML', 'y'))
Felix Guo6ebf5862019-09-23 02:02:43 -070060 expected_kconfig.add_entry(
David Gow97752c32020-03-23 19:43:33 -070061 kunit_config.KconfigEntry('MMU', 'y'))
Felix Guo6ebf5862019-09-23 02:02:43 -070062 expected_kconfig.add_entry(
David Gow97752c32020-03-23 19:43:33 -070063 kunit_config.KconfigEntry('TEST', 'y'))
Felix Guo6ebf5862019-09-23 02:02:43 -070064 expected_kconfig.add_entry(
David Gow97752c32020-03-23 19:43:33 -070065 kunit_config.KconfigEntry('EXAMPLE_TEST', 'y'))
Felix Guo6ebf5862019-09-23 02:02:43 -070066 expected_kconfig.add_entry(
David Gow97752c32020-03-23 19:43:33 -070067 kunit_config.KconfigEntry('MK8', 'n'))
Felix Guo6ebf5862019-09-23 02:02:43 -070068
69 self.assertEqual(kconfig.entries(), expected_kconfig.entries())
70
71 def test_write_to_file(self):
72 kconfig_path = os.path.join(test_tmpdir, '.config')
73
74 expected_kconfig = kunit_config.Kconfig()
75 expected_kconfig.add_entry(
David Gow97752c32020-03-23 19:43:33 -070076 kunit_config.KconfigEntry('UML', 'y'))
Felix Guo6ebf5862019-09-23 02:02:43 -070077 expected_kconfig.add_entry(
David Gow97752c32020-03-23 19:43:33 -070078 kunit_config.KconfigEntry('MMU', 'y'))
Felix Guo6ebf5862019-09-23 02:02:43 -070079 expected_kconfig.add_entry(
David Gow97752c32020-03-23 19:43:33 -070080 kunit_config.KconfigEntry('TEST', 'y'))
Felix Guo6ebf5862019-09-23 02:02:43 -070081 expected_kconfig.add_entry(
David Gow97752c32020-03-23 19:43:33 -070082 kunit_config.KconfigEntry('EXAMPLE_TEST', 'y'))
Felix Guo6ebf5862019-09-23 02:02:43 -070083 expected_kconfig.add_entry(
David Gow97752c32020-03-23 19:43:33 -070084 kunit_config.KconfigEntry('MK8', 'n'))
Felix Guo6ebf5862019-09-23 02:02:43 -070085
86 expected_kconfig.write_to_file(kconfig_path)
87
88 actual_kconfig = kunit_config.Kconfig()
89 actual_kconfig.read_from_file(kconfig_path)
90
91 self.assertEqual(actual_kconfig.entries(),
92 expected_kconfig.entries())
93
94class KUnitParserTest(unittest.TestCase):
95
Daniel Latypovb29b14f2021-05-26 01:22:17 -070096 def assertContains(self, needle: str, haystack: kunit_parser.LineStream):
97 # Clone the iterator so we can print the contents on failure.
98 copy, backup = itertools.tee(haystack)
99 for line in copy:
Felix Guo6ebf5862019-09-23 02:02:43 -0700100 if needle in line:
101 return
Daniel Latypovb29b14f2021-05-26 01:22:17 -0700102 raise AssertionError(f'"{needle}" not found in {list(backup)}!')
Felix Guo6ebf5862019-09-23 02:02:43 -0700103
104 def test_output_isolated_correctly(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800105 log_path = test_data_path('test_output_isolated_correctly.log')
Daniel Latypova3ece072020-12-02 11:08:23 -0800106 with open(log_path) as file:
Daniel Latypovb29b14f2021-05-26 01:22:17 -0700107 result = kunit_parser.extract_tap_lines(file.readlines())
Daniel Latypov060352e2020-10-30 15:38:53 -0700108 self.assertContains('TAP version 14', result)
Felix Guo6ebf5862019-09-23 02:02:43 -0700109 self.assertContains(' # Subtest: example', result)
110 self.assertContains(' 1..2', result)
111 self.assertContains(' ok 1 - example_simple_test', result)
112 self.assertContains(' ok 2 - example_mock_test', result)
113 self.assertContains('ok 1 - example', result)
Felix Guo6ebf5862019-09-23 02:02:43 -0700114
Heidi Fahimafc63da2020-03-16 13:21:24 -0700115 def test_output_with_prefix_isolated_correctly(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800116 log_path = test_data_path('test_pound_sign.log')
Heidi Fahimafc63da2020-03-16 13:21:24 -0700117 with open(log_path) as file:
Daniel Latypovb29b14f2021-05-26 01:22:17 -0700118 result = kunit_parser.extract_tap_lines(file.readlines())
Daniel Latypov060352e2020-10-30 15:38:53 -0700119 self.assertContains('TAP version 14', result)
Heidi Fahimafc63da2020-03-16 13:21:24 -0700120 self.assertContains(' # Subtest: kunit-resource-test', result)
121 self.assertContains(' 1..5', result)
122 self.assertContains(' ok 1 - kunit_resource_test_init_resources', result)
123 self.assertContains(' ok 2 - kunit_resource_test_alloc_resource', result)
124 self.assertContains(' ok 3 - kunit_resource_test_destroy_resource', result)
125 self.assertContains(' foo bar #', result)
126 self.assertContains(' ok 4 - kunit_resource_test_cleanup_resources', result)
127 self.assertContains(' ok 5 - kunit_resource_test_proper_free_ordering', result)
128 self.assertContains('ok 1 - kunit-resource-test', result)
129 self.assertContains(' foo bar # non-kunit output', result)
130 self.assertContains(' # Subtest: kunit-try-catch-test', result)
131 self.assertContains(' 1..2', result)
132 self.assertContains(' ok 1 - kunit_test_try_catch_successful_try_no_catch',
133 result)
134 self.assertContains(' ok 2 - kunit_test_try_catch_unsuccessful_try_does_catch',
135 result)
136 self.assertContains('ok 2 - kunit-try-catch-test', result)
137 self.assertContains(' # Subtest: string-stream-test', result)
138 self.assertContains(' 1..3', result)
139 self.assertContains(' ok 1 - string_stream_test_empty_on_creation', result)
140 self.assertContains(' ok 2 - string_stream_test_not_empty_after_add', result)
141 self.assertContains(' ok 3 - string_stream_test_get_string', result)
142 self.assertContains('ok 3 - string-stream-test', result)
143
Felix Guo6ebf5862019-09-23 02:02:43 -0700144 def test_parse_successful_test_log(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800145 all_passed_log = test_data_path('test_is_test_passed-all_passed.log')
Daniel Latypova3ece072020-12-02 11:08:23 -0800146 with open(all_passed_log) as file:
147 result = kunit_parser.parse_run_tests(file.readlines())
Felix Guo6ebf5862019-09-23 02:02:43 -0700148 self.assertEqual(
149 kunit_parser.TestStatus.SUCCESS,
150 result.status)
Felix Guo6ebf5862019-09-23 02:02:43 -0700151
152 def test_parse_failed_test_log(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800153 failed_log = test_data_path('test_is_test_passed-failure.log')
Daniel Latypova3ece072020-12-02 11:08:23 -0800154 with open(failed_log) as file:
155 result = kunit_parser.parse_run_tests(file.readlines())
Felix Guo6ebf5862019-09-23 02:02:43 -0700156 self.assertEqual(
157 kunit_parser.TestStatus.FAILURE,
158 result.status)
Felix Guo6ebf5862019-09-23 02:02:43 -0700159
160 def test_no_tests(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800161 empty_log = test_data_path('test_is_test_passed-no_tests_run.log')
Daniel Latypova3ece072020-12-02 11:08:23 -0800162 with open(empty_log) as file:
163 result = kunit_parser.parse_run_tests(
Daniel Latypovb29b14f2021-05-26 01:22:17 -0700164 kunit_parser.extract_tap_lines(file.readlines()))
Felix Guo6ebf5862019-09-23 02:02:43 -0700165 self.assertEqual(0, len(result.suites))
166 self.assertEqual(
167 kunit_parser.TestStatus.NO_TESTS,
168 result.status)
Felix Guo6ebf5862019-09-23 02:02:43 -0700169
Uriel Guajardoe173b8b2020-06-11 21:05:45 +0000170 def test_no_kunit_output(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800171 crash_log = test_data_path('test_insufficient_memory.log')
Uriel Guajardoe173b8b2020-06-11 21:05:45 +0000172 print_mock = mock.patch('builtins.print').start()
Daniel Latypova3ece072020-12-02 11:08:23 -0800173 with open(crash_log) as file:
174 result = kunit_parser.parse_run_tests(
Daniel Latypovb29b14f2021-05-26 01:22:17 -0700175 kunit_parser.extract_tap_lines(file.readlines()))
Brendan Higgins0d0d2452020-10-21 13:39:14 -0700176 print_mock.assert_any_call(StrContains('no tests run!'))
Uriel Guajardoe173b8b2020-06-11 21:05:45 +0000177 print_mock.stop()
178 file.close()
179
Felix Guo6ebf5862019-09-23 02:02:43 -0700180 def test_crashed_test(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800181 crashed_log = test_data_path('test_is_test_passed-crash.log')
Daniel Latypova3ece072020-12-02 11:08:23 -0800182 with open(crashed_log) as file:
183 result = kunit_parser.parse_run_tests(file.readlines())
Felix Guo6ebf5862019-09-23 02:02:43 -0700184 self.assertEqual(
185 kunit_parser.TestStatus.TEST_CRASHED,
186 result.status)
Felix Guo6ebf5862019-09-23 02:02:43 -0700187
Heidi Fahimafc63da2020-03-16 13:21:24 -0700188 def test_ignores_prefix_printk_time(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800189 prefix_log = test_data_path('test_config_printk_time.log')
Heidi Fahimafc63da2020-03-16 13:21:24 -0700190 with open(prefix_log) as file:
191 result = kunit_parser.parse_run_tests(file.readlines())
Brendan Higgins0d0d2452020-10-21 13:39:14 -0700192 self.assertEqual(
193 kunit_parser.TestStatus.SUCCESS,
194 result.status)
195 self.assertEqual('kunit-resource-test', result.suites[0].name)
Heidi Fahimafc63da2020-03-16 13:21:24 -0700196
197 def test_ignores_multiple_prefixes(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800198 prefix_log = test_data_path('test_multiple_prefixes.log')
Heidi Fahimafc63da2020-03-16 13:21:24 -0700199 with open(prefix_log) as file:
200 result = kunit_parser.parse_run_tests(file.readlines())
Brendan Higgins0d0d2452020-10-21 13:39:14 -0700201 self.assertEqual(
202 kunit_parser.TestStatus.SUCCESS,
203 result.status)
204 self.assertEqual('kunit-resource-test', result.suites[0].name)
Heidi Fahimafc63da2020-03-16 13:21:24 -0700205
206 def test_prefix_mixed_kernel_output(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800207 mixed_prefix_log = test_data_path('test_interrupted_tap_output.log')
Heidi Fahimafc63da2020-03-16 13:21:24 -0700208 with open(mixed_prefix_log) as file:
209 result = kunit_parser.parse_run_tests(file.readlines())
Brendan Higgins0d0d2452020-10-21 13:39:14 -0700210 self.assertEqual(
211 kunit_parser.TestStatus.SUCCESS,
212 result.status)
213 self.assertEqual('kunit-resource-test', result.suites[0].name)
Heidi Fahimafc63da2020-03-16 13:21:24 -0700214
215 def test_prefix_poundsign(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800216 pound_log = test_data_path('test_pound_sign.log')
Heidi Fahimafc63da2020-03-16 13:21:24 -0700217 with open(pound_log) as file:
218 result = kunit_parser.parse_run_tests(file.readlines())
Brendan Higgins0d0d2452020-10-21 13:39:14 -0700219 self.assertEqual(
220 kunit_parser.TestStatus.SUCCESS,
221 result.status)
222 self.assertEqual('kunit-resource-test', result.suites[0].name)
Heidi Fahimafc63da2020-03-16 13:21:24 -0700223
224 def test_kernel_panic_end(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800225 panic_log = test_data_path('test_kernel_panic_interrupt.log')
Heidi Fahimafc63da2020-03-16 13:21:24 -0700226 with open(panic_log) as file:
227 result = kunit_parser.parse_run_tests(file.readlines())
Brendan Higgins0d0d2452020-10-21 13:39:14 -0700228 self.assertEqual(
229 kunit_parser.TestStatus.TEST_CRASHED,
230 result.status)
231 self.assertEqual('kunit-resource-test', result.suites[0].name)
Heidi Fahimafc63da2020-03-16 13:21:24 -0700232
233 def test_pound_no_prefix(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800234 pound_log = test_data_path('test_pound_no_prefix.log')
Heidi Fahimafc63da2020-03-16 13:21:24 -0700235 with open(pound_log) as file:
236 result = kunit_parser.parse_run_tests(file.readlines())
Brendan Higgins0d0d2452020-10-21 13:39:14 -0700237 self.assertEqual(
238 kunit_parser.TestStatus.SUCCESS,
239 result.status)
240 self.assertEqual('kunit-resource-test', result.suites[0].name)
Heidi Fahimafc63da2020-03-16 13:21:24 -0700241
Daniel Latypov243180f2021-02-01 12:55:14 -0800242class LinuxSourceTreeTest(unittest.TestCase):
243
244 def setUp(self):
245 mock.patch.object(signal, 'signal').start()
246 self.addCleanup(mock.patch.stopall)
247
248 def test_invalid_kunitconfig(self):
249 with self.assertRaisesRegex(kunit_kernel.ConfigError, 'nonexistent.* does not exist'):
250 kunit_kernel.LinuxSourceTree('', kunitconfig_path='/nonexistent_file')
251
252 def test_valid_kunitconfig(self):
253 with tempfile.NamedTemporaryFile('wt') as kunitconfig:
254 tree = kunit_kernel.LinuxSourceTree('', kunitconfig_path=kunitconfig.name)
255
Daniel Latypov98547812021-02-22 14:52:41 -0800256 def test_dir_kunitconfig(self):
257 with tempfile.TemporaryDirectory('') as dir:
258 with open(os.path.join(dir, '.kunitconfig'), 'w') as f:
259 pass
260 tree = kunit_kernel.LinuxSourceTree('', kunitconfig_path=dir)
261
Daniel Latypov243180f2021-02-01 12:55:14 -0800262 # TODO: add more test cases.
263
264
Heidi Fahim21a6d172020-08-11 14:27:56 -0700265class KUnitJsonTest(unittest.TestCase):
266
267 def _json_for(self, log_file):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800268 with open(test_data_path(log_file)) as file:
Heidi Fahim21a6d172020-08-11 14:27:56 -0700269 test_result = kunit_parser.parse_run_tests(file)
270 json_obj = kunit_json.get_json_result(
271 test_result=test_result,
272 def_config='kunit_defconfig',
273 build_dir=None,
274 json_path='stdout')
275 return json.loads(json_obj)
276
277 def test_failed_test_json(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800278 result = self._json_for('test_is_test_passed-failure.log')
Heidi Fahim21a6d172020-08-11 14:27:56 -0700279 self.assertEqual(
280 {'name': 'example_simple_test', 'status': 'FAIL'},
281 result["sub_groups"][1]["test_cases"][0])
282
283 def test_crashed_test_json(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800284 result = self._json_for('test_is_test_passed-crash.log')
Heidi Fahim21a6d172020-08-11 14:27:56 -0700285 self.assertEqual(
286 {'name': 'example_simple_test', 'status': 'ERROR'},
287 result["sub_groups"][1]["test_cases"][0])
288
289 def test_no_tests_json(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800290 result = self._json_for('test_is_test_passed-no_tests_run.log')
Heidi Fahim21a6d172020-08-11 14:27:56 -0700291 self.assertEqual(0, len(result['sub_groups']))
292
Felix Guo6ebf5862019-09-23 02:02:43 -0700293class StrContains(str):
294 def __eq__(self, other):
295 return self in other
296
297class KUnitMainTest(unittest.TestCase):
298 def setUp(self):
Daniel Latypovcd4a9bc2020-12-02 11:08:24 -0800299 path = test_data_path('test_is_test_passed-all_passed.log')
Daniel Latypovcfd607e2020-12-02 11:08:21 -0800300 with open(path) as file:
301 all_passed_log = file.readlines()
302
303 self.print_mock = mock.patch('builtins.print').start()
304 self.addCleanup(mock.patch.stopall)
305
Felix Guo6ebf5862019-09-23 02:02:43 -0700306 self.linux_source_mock = mock.Mock()
307 self.linux_source_mock.build_reconfig = mock.Mock(return_value=True)
Brendan Higgins87c9c162021-05-26 14:24:06 -0700308 self.linux_source_mock.build_kernel = mock.Mock(return_value=True)
Felix Guo6ebf5862019-09-23 02:02:43 -0700309 self.linux_source_mock.run_kernel = mock.Mock(return_value=all_passed_log)
310
David Gow45ba7a82020-04-30 21:27:01 -0700311 def test_config_passes_args_pass(self):
Brendan Higginsd43c7fb2020-07-14 13:41:30 -0700312 kunit.main(['config', '--build_dir=.kunit'], self.linux_source_mock)
Daniel Latypov0b3e6802020-12-02 11:08:22 -0800313 self.assertEqual(self.linux_source_mock.build_reconfig.call_count, 1)
314 self.assertEqual(self.linux_source_mock.run_kernel.call_count, 0)
David Gow45ba7a82020-04-30 21:27:01 -0700315
316 def test_build_passes_args_pass(self):
317 kunit.main(['build'], self.linux_source_mock)
Daniel Latypov0b3e6802020-12-02 11:08:22 -0800318 self.assertEqual(self.linux_source_mock.build_reconfig.call_count, 0)
Brendan Higgins87c9c162021-05-26 14:24:06 -0700319 self.linux_source_mock.build_kernel.assert_called_once_with(False, 8, '.kunit', None)
Daniel Latypov0b3e6802020-12-02 11:08:22 -0800320 self.assertEqual(self.linux_source_mock.run_kernel.call_count, 0)
David Gow45ba7a82020-04-30 21:27:01 -0700321
322 def test_exec_passes_args_pass(self):
323 kunit.main(['exec'], self.linux_source_mock)
Daniel Latypov0b3e6802020-12-02 11:08:22 -0800324 self.assertEqual(self.linux_source_mock.build_reconfig.call_count, 0)
325 self.assertEqual(self.linux_source_mock.run_kernel.call_count, 1)
Daniel Latypovd992880b2021-02-05 16:08:53 -0800326 self.linux_source_mock.run_kernel.assert_called_once_with(
327 build_dir='.kunit', filter_glob='', timeout=300)
David Gow45ba7a82020-04-30 21:27:01 -0700328 self.print_mock.assert_any_call(StrContains('Testing complete.'))
329
Felix Guo6ebf5862019-09-23 02:02:43 -0700330 def test_run_passes_args_pass(self):
331 kunit.main(['run'], self.linux_source_mock)
Daniel Latypov0b3e6802020-12-02 11:08:22 -0800332 self.assertEqual(self.linux_source_mock.build_reconfig.call_count, 1)
333 self.assertEqual(self.linux_source_mock.run_kernel.call_count, 1)
Heidi Fahim021ed9f2020-03-16 13:21:25 -0700334 self.linux_source_mock.run_kernel.assert_called_once_with(
Daniel Latypovd992880b2021-02-05 16:08:53 -0800335 build_dir='.kunit', filter_glob='', timeout=300)
Felix Guo6ebf5862019-09-23 02:02:43 -0700336 self.print_mock.assert_any_call(StrContains('Testing complete.'))
337
David Gow45ba7a82020-04-30 21:27:01 -0700338 def test_exec_passes_args_fail(self):
339 self.linux_source_mock.run_kernel = mock.Mock(return_value=[])
340 with self.assertRaises(SystemExit) as e:
341 kunit.main(['exec'], self.linux_source_mock)
Daniel Latypov0b3e6802020-12-02 11:08:22 -0800342 self.assertEqual(e.exception.code, 1)
David Gow45ba7a82020-04-30 21:27:01 -0700343
Felix Guo6ebf5862019-09-23 02:02:43 -0700344 def test_run_passes_args_fail(self):
345 self.linux_source_mock.run_kernel = mock.Mock(return_value=[])
346 with self.assertRaises(SystemExit) as e:
347 kunit.main(['run'], self.linux_source_mock)
Daniel Latypov0b3e6802020-12-02 11:08:22 -0800348 self.assertEqual(e.exception.code, 1)
349 self.assertEqual(self.linux_source_mock.build_reconfig.call_count, 1)
350 self.assertEqual(self.linux_source_mock.run_kernel.call_count, 1)
Felix Guo6ebf5862019-09-23 02:02:43 -0700351 self.print_mock.assert_any_call(StrContains(' 0 tests run'))
352
David Gow45ba7a82020-04-30 21:27:01 -0700353 def test_exec_raw_output(self):
354 self.linux_source_mock.run_kernel = mock.Mock(return_value=[])
355 kunit.main(['exec', '--raw_output'], self.linux_source_mock)
Daniel Latypov0b3e6802020-12-02 11:08:22 -0800356 self.assertEqual(self.linux_source_mock.run_kernel.call_count, 1)
357 for call in self.print_mock.call_args_list:
358 self.assertNotEqual(call, mock.call(StrContains('Testing complete.')))
359 self.assertNotEqual(call, mock.call(StrContains(' 0 tests run')))
David Gow45ba7a82020-04-30 21:27:01 -0700360
Felix Guo6ebf5862019-09-23 02:02:43 -0700361 def test_run_raw_output(self):
362 self.linux_source_mock.run_kernel = mock.Mock(return_value=[])
David Gow45ba7a82020-04-30 21:27:01 -0700363 kunit.main(['run', '--raw_output'], self.linux_source_mock)
Daniel Latypov0b3e6802020-12-02 11:08:22 -0800364 self.assertEqual(self.linux_source_mock.build_reconfig.call_count, 1)
365 self.assertEqual(self.linux_source_mock.run_kernel.call_count, 1)
366 for call in self.print_mock.call_args_list:
367 self.assertNotEqual(call, mock.call(StrContains('Testing complete.')))
368 self.assertNotEqual(call, mock.call(StrContains(' 0 tests run')))
David Gow45ba7a82020-04-30 21:27:01 -0700369
370 def test_exec_timeout(self):
371 timeout = 3453
372 kunit.main(['exec', '--timeout', str(timeout)], self.linux_source_mock)
Daniel Latypovd992880b2021-02-05 16:08:53 -0800373 self.linux_source_mock.run_kernel.assert_called_once_with(
374 build_dir='.kunit', filter_glob='', timeout=timeout)
David Gow45ba7a82020-04-30 21:27:01 -0700375 self.print_mock.assert_any_call(StrContains('Testing complete.'))
Felix Guo6ebf5862019-09-23 02:02:43 -0700376
377 def test_run_timeout(self):
378 timeout = 3453
379 kunit.main(['run', '--timeout', str(timeout)], self.linux_source_mock)
Daniel Latypov0b3e6802020-12-02 11:08:22 -0800380 self.assertEqual(self.linux_source_mock.build_reconfig.call_count, 1)
Heidi Fahim021ed9f2020-03-16 13:21:25 -0700381 self.linux_source_mock.run_kernel.assert_called_once_with(
Daniel Latypovd992880b2021-02-05 16:08:53 -0800382 build_dir='.kunit', filter_glob='', timeout=timeout)
Felix Guo6ebf5862019-09-23 02:02:43 -0700383 self.print_mock.assert_any_call(StrContains('Testing complete.'))
384
SeongJae Parkb1b35202019-12-20 05:14:08 +0000385 def test_run_builddir(self):
386 build_dir = '.kunit'
Brendan Higginsd43c7fb2020-07-14 13:41:30 -0700387 kunit.main(['run', '--build_dir=.kunit'], self.linux_source_mock)
Daniel Latypov0b3e6802020-12-02 11:08:22 -0800388 self.assertEqual(self.linux_source_mock.build_reconfig.call_count, 1)
Heidi Fahim021ed9f2020-03-16 13:21:25 -0700389 self.linux_source_mock.run_kernel.assert_called_once_with(
Daniel Latypovd992880b2021-02-05 16:08:53 -0800390 build_dir=build_dir, filter_glob='', timeout=300)
SeongJae Parkb1b35202019-12-20 05:14:08 +0000391 self.print_mock.assert_any_call(StrContains('Testing complete.'))
392
David Gow45ba7a82020-04-30 21:27:01 -0700393 def test_config_builddir(self):
394 build_dir = '.kunit'
395 kunit.main(['config', '--build_dir', build_dir], self.linux_source_mock)
Daniel Latypov0b3e6802020-12-02 11:08:22 -0800396 self.assertEqual(self.linux_source_mock.build_reconfig.call_count, 1)
David Gow45ba7a82020-04-30 21:27:01 -0700397
398 def test_build_builddir(self):
399 build_dir = '.kunit'
400 kunit.main(['build', '--build_dir', build_dir], self.linux_source_mock)
Brendan Higgins87c9c162021-05-26 14:24:06 -0700401 self.linux_source_mock.build_kernel.assert_called_once_with(False, 8, build_dir, None)
David Gow45ba7a82020-04-30 21:27:01 -0700402
403 def test_exec_builddir(self):
404 build_dir = '.kunit'
405 kunit.main(['exec', '--build_dir', build_dir], self.linux_source_mock)
Daniel Latypovd992880b2021-02-05 16:08:53 -0800406 self.linux_source_mock.run_kernel.assert_called_once_with(
407 build_dir=build_dir, filter_glob='', timeout=300)
David Gow45ba7a82020-04-30 21:27:01 -0700408 self.print_mock.assert_any_call(StrContains('Testing complete.'))
409
Daniel Latypov243180f2021-02-01 12:55:14 -0800410 @mock.patch.object(kunit_kernel, 'LinuxSourceTree')
411 def test_run_kunitconfig(self, mock_linux_init):
412 mock_linux_init.return_value = self.linux_source_mock
413 kunit.main(['run', '--kunitconfig=mykunitconfig'])
414 # Just verify that we parsed and initialized it correctly here.
Brendan Higgins87c9c162021-05-26 14:24:06 -0700415 mock_linux_init.assert_called_once_with('.kunit',
416 kunitconfig_path='mykunitconfig',
417 arch='um',
418 cross_compile=None,
419 qemu_config_path=None)
Daniel Latypov243180f2021-02-01 12:55:14 -0800420
421 @mock.patch.object(kunit_kernel, 'LinuxSourceTree')
422 def test_config_kunitconfig(self, mock_linux_init):
423 mock_linux_init.return_value = self.linux_source_mock
424 kunit.main(['config', '--kunitconfig=mykunitconfig'])
425 # Just verify that we parsed and initialized it correctly here.
Brendan Higgins87c9c162021-05-26 14:24:06 -0700426 mock_linux_init.assert_called_once_with('.kunit',
427 kunitconfig_path='mykunitconfig',
428 arch='um',
429 cross_compile=None,
430 qemu_config_path=None)
Daniel Latypov243180f2021-02-01 12:55:14 -0800431
Felix Guo6ebf5862019-09-23 02:02:43 -0700432if __name__ == '__main__':
433 unittest.main()