blob: 1a259d54ab01a6935cc01811660c519aaa193101 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glassc05694f2013-04-03 11:07:16 +00002# Copyright (c) 2012 The Chromium OS Authors.
3#
Simon Glassc05694f2013-04-03 11:07:16 +00004
5import os
6import shutil
7import sys
8import tempfile
9import time
10import unittest
11
Simon Glassf0d9c102020-04-17 18:09:02 -060012from buildman import board
13from buildman import bsettings
14from buildman import builder
15from buildman import control
16from buildman import toolchain
Simon Glassa997ea52020-04-17 18:09:04 -060017from patman import commit
18from patman import command
19from patman import terminal
20from patman import test_util
21from patman import tools
Simon Glassc05694f2013-04-03 11:07:16 +000022
Simon Glass2bfc6972017-11-12 21:52:14 -070023use_network = True
24
Simon Glass4bea81e2014-12-01 17:34:04 -070025settings_data = '''
26# Buildman settings file
27
28[toolchain]
29main: /usr/sbin
30
31[toolchain-alias]
32x86: i386 x86_64
33'''
34
Simon Glassf4ebfba2020-04-09 15:08:53 -060035migration = '''===================== WARNING ======================
36This board does not use CONFIG_DM. CONFIG_DM will be
37compulsory starting with the v2020.01 release.
38Failure to update may result in board removal.
39See doc/driver-model/migration.rst for more info.
40====================================================
41'''
42
Simon Glassc05694f2013-04-03 11:07:16 +000043errors = [
44 '''main.c: In function 'main_loop':
45main.c:260:6: warning: unused variable 'joe' [-Wunused-variable]
46''',
Simon Glass7fb8aa22014-09-05 19:00:08 -060047 '''main.c: In function 'main_loop2':
Simon Glassc05694f2013-04-03 11:07:16 +000048main.c:295:2: error: 'fred' undeclared (first use in this function)
49main.c:295:2: note: each undeclared identifier is reported only once for each function it appears in
50make[1]: *** [main.o] Error 1
51make: *** [common/libcommon.o] Error 2
52Make failed
53''',
Simon Glass0db94432018-11-06 16:02:11 -070054 '''arch/arm/dts/socfpga_arria10_socdk_sdmmc.dtb: Warning \
55(avoid_unnecessary_addr_size): /clocks: unnecessary #address-cells/#size-cells \
56without "ranges" or child "reg" property
Simon Glassc05694f2013-04-03 11:07:16 +000057''',
58 '''powerpc-linux-ld: warning: dot moved backwards before `.bss'
59powerpc-linux-ld: warning: dot moved backwards before `.bss'
60powerpc-linux-ld: u-boot: section .text lma 0xfffc0000 overlaps previous sections
61powerpc-linux-ld: u-boot: section .rodata lma 0xfffef3ec overlaps previous sections
62powerpc-linux-ld: u-boot: section .reloc lma 0xffffa400 overlaps previous sections
63powerpc-linux-ld: u-boot: section .data lma 0xffffcd38 overlaps previous sections
64powerpc-linux-ld: u-boot: section .u_boot_cmd lma 0xffffeb40 overlaps previous sections
65powerpc-linux-ld: u-boot: section .bootpg lma 0xfffff198 overlaps previous sections
Simon Glassa8b7b1b2014-09-05 19:00:21 -060066''',
67 '''In file included from %(basedir)sarch/sandbox/cpu/cpu.c:9:0:
68%(basedir)sarch/sandbox/include/asm/state.h:44:0: warning: "xxxx" redefined [enabled by default]
69%(basedir)sarch/sandbox/include/asm/state.h:43:0: note: this is the location of the previous definition
70%(basedir)sarch/sandbox/cpu/cpu.c: In function 'do_reset':
71%(basedir)sarch/sandbox/cpu/cpu.c:27:1: error: unknown type name 'blah'
72%(basedir)sarch/sandbox/cpu/cpu.c:28:12: error: expected declaration specifiers or '...' before numeric constant
73make[2]: *** [arch/sandbox/cpu/cpu.o] Error 1
74make[1]: *** [arch/sandbox/cpu] Error 2
75make[1]: *** Waiting for unfinished jobs....
76In file included from %(basedir)scommon/board_f.c:55:0:
77%(basedir)sarch/sandbox/include/asm/state.h:44:0: warning: "xxxx" redefined [enabled by default]
78%(basedir)sarch/sandbox/include/asm/state.h:43:0: note: this is the location of the previous definition
79make: *** [sub-make] Error 2
Simon Glassc05694f2013-04-03 11:07:16 +000080'''
81]
82
83
84# hash, subject, return code, list of errors/warnings
85commits = [
Simon Glassf4ebfba2020-04-09 15:08:53 -060086 ['1234', 'upstream/master, migration warning', 0, []],
Simon Glassc05694f2013-04-03 11:07:16 +000087 ['5678', 'Second commit, a warning', 0, errors[0:1]],
88 ['9012', 'Third commit, error', 1, errors[0:2]],
89 ['3456', 'Fourth commit, warning', 0, [errors[0], errors[2]]],
90 ['7890', 'Fifth commit, link errors', 1, [errors[0], errors[3]]],
Simon Glassa8b7b1b2014-09-05 19:00:21 -060091 ['abcd', 'Sixth commit, fixes all errors', 0, []],
Simon Glassf4ebfba2020-04-09 15:08:53 -060092 ['ef01', 'Seventh commit, fix migration, check directory suppression', 1,
93 [errors[4]]],
Simon Glassc05694f2013-04-03 11:07:16 +000094]
95
96boards = [
Simon Glass584cf862013-09-23 17:35:16 -060097 ['Active', 'arm', 'armv7', '', 'Tester', 'ARM Board 1', 'board0', ''],
98 ['Active', 'arm', 'armv7', '', 'Tester', 'ARM Board 2', 'board1', ''],
99 ['Active', 'powerpc', 'powerpc', '', 'Tester', 'PowerPC board 1', 'board2', ''],
Simon Glass5e0f06d2017-11-12 21:52:15 -0700100 ['Active', 'powerpc', 'mpc83xx', '', 'Tester', 'PowerPC board 2', 'board3', ''],
Simon Glass584cf862013-09-23 17:35:16 -0600101 ['Active', 'sandbox', 'sandbox', '', 'Tester', 'Sandbox board', 'board4', ''],
Simon Glassc05694f2013-04-03 11:07:16 +0000102]
103
Simon Glass2e1646c2014-12-01 17:33:51 -0700104BASE_DIR = 'base'
105
Simon Glass071a1782018-11-06 16:02:13 -0700106OUTCOME_OK, OUTCOME_WARN, OUTCOME_ERR = range(3)
107
Simon Glassc05694f2013-04-03 11:07:16 +0000108class Options:
109 """Class that holds build options"""
110 pass
111
112class TestBuild(unittest.TestCase):
113 """Test buildman
114
115 TODO: Write tests for the rest of the functionality
116 """
117 def setUp(self):
118 # Set up commits to build
119 self.commits = []
120 sequence = 0
121 for commit_info in commits:
122 comm = commit.Commit(commit_info[0])
123 comm.subject = commit_info[1]
124 comm.return_code = commit_info[2]
125 comm.error_list = commit_info[3]
Simon Glassf4ebfba2020-04-09 15:08:53 -0600126 if sequence < 6:
127 comm.error_list += [migration]
Simon Glassc05694f2013-04-03 11:07:16 +0000128 comm.sequence = sequence
129 sequence += 1
130 self.commits.append(comm)
131
132 # Set up boards to build
133 self.boards = board.Boards()
134 for brd in boards:
135 self.boards.AddBoard(board.Board(*brd))
136 self.boards.SelectBoards([])
137
Simon Glass4bea81e2014-12-01 17:34:04 -0700138 # Add some test settings
139 bsettings.Setup(None)
140 bsettings.AddFile(settings_data)
141
Simon Glassc05694f2013-04-03 11:07:16 +0000142 # Set up the toolchains
Simon Glassc05694f2013-04-03 11:07:16 +0000143 self.toolchains = toolchain.Toolchains()
144 self.toolchains.Add('arm-linux-gcc', test=False)
145 self.toolchains.Add('sparc-linux-gcc', test=False)
146 self.toolchains.Add('powerpc-linux-gcc', test=False)
147 self.toolchains.Add('gcc', test=False)
148
Simon Glass7fb8aa22014-09-05 19:00:08 -0600149 # Avoid sending any output
150 terminal.SetPrintTestMode()
151 self._col = terminal.Color()
152
Simon Glass09bbfcd2020-04-09 15:08:31 -0600153 self.base_dir = tempfile.mkdtemp()
154 if not os.path.isdir(self.base_dir):
155 os.mkdir(self.base_dir)
Simon Glassa8b7b1b2014-09-05 19:00:21 -0600156
Simon Glass09bbfcd2020-04-09 15:08:31 -0600157 def tearDown(self):
158 shutil.rmtree(self.base_dir)
159
160 def Make(self, commit, brd, stage, *args, **kwargs):
Simon Glassc05694f2013-04-03 11:07:16 +0000161 result = command.CommandResult()
162 boardnum = int(brd.target[-1])
163 result.return_code = 0
164 result.stderr = ''
165 result.stdout = ('This is the test output for board %s, commit %s' %
166 (brd.target, commit.hash))
Simon Glassa8b7b1b2014-09-05 19:00:21 -0600167 if ((boardnum >= 1 and boardnum >= commit.sequence) or
168 boardnum == 4 and commit.sequence == 6):
Simon Glassc05694f2013-04-03 11:07:16 +0000169 result.return_code = commit.return_code
Simon Glassa8b7b1b2014-09-05 19:00:21 -0600170 result.stderr = (''.join(commit.error_list)
Simon Glass09bbfcd2020-04-09 15:08:31 -0600171 % {'basedir' : self.base_dir + '/.bm-work/00/'})
Simon Glassf4ebfba2020-04-09 15:08:53 -0600172 elif commit.sequence < 6:
173 result.stderr = migration
Simon Glassc05694f2013-04-03 11:07:16 +0000174
175 result.combined = result.stdout + result.stderr
176 return result
177
Simon Glass071a1782018-11-06 16:02:13 -0700178 def assertSummary(self, text, arch, plus, boards, outcome=OUTCOME_ERR):
Simon Glass7fb8aa22014-09-05 19:00:08 -0600179 col = self._col
Simon Glass071a1782018-11-06 16:02:13 -0700180 expected_colour = (col.GREEN if outcome == OUTCOME_OK else
181 col.YELLOW if outcome == OUTCOME_WARN else col.RED)
Simon Glass7fb8aa22014-09-05 19:00:08 -0600182 expect = '%10s: ' % arch
183 # TODO(sjg@chromium.org): If plus is '', we shouldn't need this
Simon Glass26f72372015-02-05 22:06:11 -0700184 expect += ' ' + col.Color(expected_colour, plus)
Simon Glass7fb8aa22014-09-05 19:00:08 -0600185 expect += ' '
186 for board in boards:
187 expect += col.Color(expected_colour, ' %s' % board)
188 self.assertEqual(text, expect)
189
Simon Glass724c1752020-04-09 15:08:32 -0600190 def _SetupTest(self, echo_lines=False, **kwdisplay_args):
191 """Set up the test by running a build and summary
Simon Glass7fb8aa22014-09-05 19:00:08 -0600192
Simon Glass724c1752020-04-09 15:08:32 -0600193 Args:
194 echo_lines: True to echo lines to the terminal to aid test
195 development
196 kwdisplay_args: Dict of arguemnts to pass to
197 Builder.SetDisplayOptions()
198
199 Returns:
200 Iterator containing the output lines, each a PrintLine() object
Simon Glass7fb8aa22014-09-05 19:00:08 -0600201 """
Simon Glass09bbfcd2020-04-09 15:08:31 -0600202 build = builder.Builder(self.toolchains, self.base_dir, None, 1, 2,
Simon Glassc05694f2013-04-03 11:07:16 +0000203 checkout=False, show_unknown=False)
204 build.do_make = self.Make
205 board_selected = self.boards.GetSelectedDict()
206
Simon Glass071a1782018-11-06 16:02:13 -0700207 # Build the boards for the pre-defined commits and warnings/errors
208 # associated with each. This calls our Make() to inject the fake output.
Simon Glass78e418e2014-08-09 15:33:03 -0600209 build.BuildBoards(self.commits, board_selected, keep_outputs=False,
210 verbose=False)
Simon Glass7fb8aa22014-09-05 19:00:08 -0600211 lines = terminal.GetPrintTestLines()
212 count = 0
213 for line in lines:
214 if line.text.strip():
215 count += 1
216
Simon Glass726ae812020-04-09 15:08:47 -0600217 # We should get two starting messages, an update for every commit built
218 # and a summary message
219 self.assertEqual(count, len(commits) * len(boards) + 3)
Simon Glass724c1752020-04-09 15:08:32 -0600220 build.SetDisplayOptions(**kwdisplay_args);
Simon Glasseb48bbc2014-08-09 15:33:02 -0600221 build.ShowSummary(self.commits, board_selected)
Simon Glass724c1752020-04-09 15:08:32 -0600222 if echo_lines:
223 terminal.EchoPrintTestLines()
224 return iter(terminal.GetPrintTestLines())
Simon Glass071a1782018-11-06 16:02:13 -0700225
Simon Glassf4ebfba2020-04-09 15:08:53 -0600226 def _CheckOutput(self, lines, list_error_boards=False,
227 filter_dtb_warnings=False,
228 filter_migration_warnings=False):
Simon Glass724c1752020-04-09 15:08:32 -0600229 """Check for expected output from the build summary
230
231 Args:
232 lines: Iterator containing the lines returned from the summary
Simon Glassdacbe1e2020-04-09 15:08:34 -0600233 list_error_boards: Adjust the check for output produced with the
234 --list-error-boards flag
Simon Glass9ea93812020-04-09 15:08:52 -0600235 filter_dtb_warnings: Adjust the check for output produced with the
236 --filter-dtb-warnings flag
Simon Glass724c1752020-04-09 15:08:32 -0600237 """
Simon Glassea49f9b2020-04-09 15:08:37 -0600238 def add_line_prefix(prefix, boards, error_str, colour):
Simon Glass6643eb42020-04-09 15:08:33 -0600239 """Add a prefix to each line of a string
240
241 The training \n in error_str is removed before processing
242
243 Args:
244 prefix: String prefix to add
245 error_str: Error string containing the lines
Simon Glassea49f9b2020-04-09 15:08:37 -0600246 colour: Expected colour for the line. Note that the board list,
247 if present, always appears in magenta
Simon Glass6643eb42020-04-09 15:08:33 -0600248
249 Returns:
250 New string where each line has the prefix added
251 """
252 lines = error_str.strip().splitlines()
Simon Glassea49f9b2020-04-09 15:08:37 -0600253 new_lines = []
254 for line in lines:
255 if boards:
256 expect = self._col.Color(colour, prefix + '(')
257 expect += self._col.Color(self._col.MAGENTA, boards,
258 bright=False)
259 expect += self._col.Color(colour, ') %s' % line)
260 else:
261 expect = self._col.Color(colour, prefix + line)
262 new_lines.append(expect)
Simon Glass6643eb42020-04-09 15:08:33 -0600263 return '\n'.join(new_lines)
264
Simon Glassf4ebfba2020-04-09 15:08:53 -0600265 col = terminal.Color()
266 boards01234 = ('board0 board1 board2 board3 board4'
267 if list_error_boards else '')
Simon Glass070589b2020-04-09 15:08:38 -0600268 boards1234 = 'board1 board2 board3 board4' if list_error_boards else ''
269 boards234 = 'board2 board3 board4' if list_error_boards else ''
270 boards34 = 'board3 board4' if list_error_boards else ''
Simon Glassdacbe1e2020-04-09 15:08:34 -0600271 boards4 = 'board4' if list_error_boards else ''
272
Simon Glassf4ebfba2020-04-09 15:08:53 -0600273 # Upstream commit: migration warnings only
Simon Glass575ce512020-04-09 15:08:30 -0600274 self.assertEqual(next(lines).text, '01: %s' % commits[0][1])
Simon Glass071a1782018-11-06 16:02:13 -0700275
Simon Glassf4ebfba2020-04-09 15:08:53 -0600276 if not filter_migration_warnings:
277 self.assertSummary(next(lines).text, 'arm', 'w+',
278 ['board0', 'board1'], outcome=OUTCOME_WARN)
279 self.assertSummary(next(lines).text, 'powerpc', 'w+',
280 ['board2', 'board3'], outcome=OUTCOME_WARN)
281 self.assertSummary(next(lines).text, 'sandbox', 'w+', ['board4'],
282 outcome=OUTCOME_WARN)
283
284 self.assertEqual(next(lines).text,
285 add_line_prefix('+', boards01234, migration, col.RED))
286
Simon Glass071a1782018-11-06 16:02:13 -0700287 # Second commit: all archs should fail with warnings
Simon Glass575ce512020-04-09 15:08:30 -0600288 self.assertEqual(next(lines).text, '02: %s' % commits[1][1])
Simon Glass7fb8aa22014-09-05 19:00:08 -0600289
Simon Glassf4ebfba2020-04-09 15:08:53 -0600290 if filter_migration_warnings:
291 self.assertSummary(next(lines).text, 'arm', 'w+',
292 ['board1'], outcome=OUTCOME_WARN)
293 self.assertSummary(next(lines).text, 'powerpc', 'w+',
294 ['board2', 'board3'], outcome=OUTCOME_WARN)
295 self.assertSummary(next(lines).text, 'sandbox', 'w+', ['board4'],
296 outcome=OUTCOME_WARN)
Simon Glass7fb8aa22014-09-05 19:00:08 -0600297
Simon Glass071a1782018-11-06 16:02:13 -0700298 # Second commit: The warnings should be listed
Simon Glassea49f9b2020-04-09 15:08:37 -0600299 self.assertEqual(next(lines).text,
300 add_line_prefix('w+', boards1234, errors[0], col.YELLOW))
Simon Glass7fb8aa22014-09-05 19:00:08 -0600301
Simon Glass071a1782018-11-06 16:02:13 -0700302 # Third commit: Still fails
Simon Glass575ce512020-04-09 15:08:30 -0600303 self.assertEqual(next(lines).text, '03: %s' % commits[2][1])
Simon Glassf4ebfba2020-04-09 15:08:53 -0600304 if filter_migration_warnings:
305 self.assertSummary(next(lines).text, 'arm', '',
306 ['board1'], outcome=OUTCOME_OK)
Simon Glass575ce512020-04-09 15:08:30 -0600307 self.assertSummary(next(lines).text, 'powerpc', '+',
308 ['board2', 'board3'])
309 self.assertSummary(next(lines).text, 'sandbox', '+', ['board4'])
Simon Glass7fb8aa22014-09-05 19:00:08 -0600310
Simon Glass071a1782018-11-06 16:02:13 -0700311 # Expect a compiler error
Simon Glassea49f9b2020-04-09 15:08:37 -0600312 self.assertEqual(next(lines).text,
313 add_line_prefix('+', boards234, errors[1], col.RED))
Simon Glass7fb8aa22014-09-05 19:00:08 -0600314
Simon Glass071a1782018-11-06 16:02:13 -0700315 # Fourth commit: Compile errors are fixed, just have warning for board3
Simon Glass575ce512020-04-09 15:08:30 -0600316 self.assertEqual(next(lines).text, '04: %s' % commits[3][1])
Simon Glassf4ebfba2020-04-09 15:08:53 -0600317 if filter_migration_warnings:
318 expect = '%10s: ' % 'powerpc'
319 expect += ' ' + col.Color(col.GREEN, '')
320 expect += ' '
321 expect += col.Color(col.GREEN, ' %s' % 'board2')
322 expect += ' ' + col.Color(col.YELLOW, 'w+')
323 expect += ' '
324 expect += col.Color(col.YELLOW, ' %s' % 'board3')
325 self.assertEqual(next(lines).text, expect)
326 else:
327 self.assertSummary(next(lines).text, 'powerpc', 'w+',
328 ['board2', 'board3'], outcome=OUTCOME_WARN)
Simon Glass575ce512020-04-09 15:08:30 -0600329 self.assertSummary(next(lines).text, 'sandbox', 'w+', ['board4'],
Simon Glassf4ebfba2020-04-09 15:08:53 -0600330 outcome=OUTCOME_WARN)
Simon Glass7fb8aa22014-09-05 19:00:08 -0600331
332 # Compile error fixed
Simon Glassea49f9b2020-04-09 15:08:37 -0600333 self.assertEqual(next(lines).text,
334 add_line_prefix('-', boards234, errors[1], col.GREEN))
Simon Glass7fb8aa22014-09-05 19:00:08 -0600335
Simon Glass9ea93812020-04-09 15:08:52 -0600336 if not filter_dtb_warnings:
337 self.assertEqual(
338 next(lines).text,
339 add_line_prefix('w+', boards34, errors[2], col.YELLOW))
Simon Glass7fb8aa22014-09-05 19:00:08 -0600340
Simon Glass071a1782018-11-06 16:02:13 -0700341 # Fifth commit
Simon Glass575ce512020-04-09 15:08:30 -0600342 self.assertEqual(next(lines).text, '05: %s' % commits[4][1])
Simon Glassf4ebfba2020-04-09 15:08:53 -0600343 if filter_migration_warnings:
344 self.assertSummary(next(lines).text, 'powerpc', '', ['board3'],
345 outcome=OUTCOME_OK)
Simon Glass575ce512020-04-09 15:08:30 -0600346 self.assertSummary(next(lines).text, 'sandbox', '+', ['board4'])
Simon Glass7fb8aa22014-09-05 19:00:08 -0600347
348 # The second line of errors[3] is a duplicate, so buildman will drop it
349 expect = errors[3].rstrip().split('\n')
350 expect = [expect[0]] + expect[2:]
Simon Glass6643eb42020-04-09 15:08:33 -0600351 expect = '\n'.join(expect)
Simon Glassea49f9b2020-04-09 15:08:37 -0600352 self.assertEqual(next(lines).text,
353 add_line_prefix('+', boards4, expect, col.RED))
Simon Glass7fb8aa22014-09-05 19:00:08 -0600354
Simon Glass9ea93812020-04-09 15:08:52 -0600355 if not filter_dtb_warnings:
356 self.assertEqual(
357 next(lines).text,
358 add_line_prefix('w-', boards34, errors[2], col.CYAN))
Simon Glass7fb8aa22014-09-05 19:00:08 -0600359
Simon Glass071a1782018-11-06 16:02:13 -0700360 # Sixth commit
Simon Glass575ce512020-04-09 15:08:30 -0600361 self.assertEqual(next(lines).text, '06: %s' % commits[5][1])
Simon Glassf4ebfba2020-04-09 15:08:53 -0600362 if filter_migration_warnings:
363 self.assertSummary(next(lines).text, 'sandbox', '', ['board4'],
364 outcome=OUTCOME_OK)
365 else:
366 self.assertSummary(next(lines).text, 'sandbox', 'w+', ['board4'],
367 outcome=OUTCOME_WARN)
Simon Glass7fb8aa22014-09-05 19:00:08 -0600368
369 # The second line of errors[3] is a duplicate, so buildman will drop it
370 expect = errors[3].rstrip().split('\n')
371 expect = [expect[0]] + expect[2:]
Simon Glass6643eb42020-04-09 15:08:33 -0600372 expect = '\n'.join(expect)
Simon Glassea49f9b2020-04-09 15:08:37 -0600373 self.assertEqual(next(lines).text,
374 add_line_prefix('-', boards4, expect, col.GREEN))
375 self.assertEqual(next(lines).text,
376 add_line_prefix('w-', boards4, errors[0], col.CYAN))
Simon Glass7fb8aa22014-09-05 19:00:08 -0600377
Simon Glass071a1782018-11-06 16:02:13 -0700378 # Seventh commit
Simon Glass575ce512020-04-09 15:08:30 -0600379 self.assertEqual(next(lines).text, '07: %s' % commits[6][1])
Simon Glassf4ebfba2020-04-09 15:08:53 -0600380 if filter_migration_warnings:
381 self.assertSummary(next(lines).text, 'sandbox', '+', ['board4'])
382 else:
383 self.assertSummary(next(lines).text, 'arm', '', ['board0', 'board1'],
384 outcome=OUTCOME_OK)
385 self.assertSummary(next(lines).text, 'powerpc', '',
386 ['board2', 'board3'], outcome=OUTCOME_OK)
387 self.assertSummary(next(lines).text, 'sandbox', '+', ['board4'])
Simon Glassa8b7b1b2014-09-05 19:00:21 -0600388
389 # Pick out the correct error lines
390 expect_str = errors[4].rstrip().replace('%(basedir)s', '').split('\n')
391 expect = expect_str[3:8] + [expect_str[-1]]
Simon Glass6643eb42020-04-09 15:08:33 -0600392 expect = '\n'.join(expect)
Simon Glassf4ebfba2020-04-09 15:08:53 -0600393 if not filter_migration_warnings:
394 self.assertEqual(
395 next(lines).text,
396 add_line_prefix('-', boards01234, migration, col.GREEN))
397
Simon Glassea49f9b2020-04-09 15:08:37 -0600398 self.assertEqual(next(lines).text,
399 add_line_prefix('+', boards4, expect, col.RED))
Simon Glassa8b7b1b2014-09-05 19:00:21 -0600400
401 # Now the warnings lines
402 expect = [expect_str[0]] + expect_str[10:12] + [expect_str[9]]
Simon Glass6643eb42020-04-09 15:08:33 -0600403 expect = '\n'.join(expect)
Simon Glassea49f9b2020-04-09 15:08:37 -0600404 self.assertEqual(next(lines).text,
405 add_line_prefix('w+', boards4, expect, col.YELLOW))
Simon Glassa8b7b1b2014-09-05 19:00:21 -0600406
Simon Glass724c1752020-04-09 15:08:32 -0600407 def testOutput(self):
408 """Test basic builder operation and output
409
410 This does a line-by-line verification of the summary output.
411 """
412 lines = self._SetupTest(show_errors=True)
Simon Glass9ea93812020-04-09 15:08:52 -0600413 self._CheckOutput(lines, list_error_boards=False,
414 filter_dtb_warnings=False)
Simon Glassdacbe1e2020-04-09 15:08:34 -0600415
416 def testErrorBoards(self):
417 """Test output with --list-error-boards
418
419 This does a line-by-line verification of the summary output.
420 """
421 lines = self._SetupTest(show_errors=True, list_error_boards=True)
Simon Glassf4ebfba2020-04-09 15:08:53 -0600422 self._CheckOutput(lines, list_error_boards=True)
Simon Glass9ea93812020-04-09 15:08:52 -0600423
424 def testFilterDtb(self):
425 """Test output with --filter-dtb-warnings
426
427 This does a line-by-line verification of the summary output.
428 """
429 lines = self._SetupTest(show_errors=True, filter_dtb_warnings=True)
Simon Glassf4ebfba2020-04-09 15:08:53 -0600430 self._CheckOutput(lines, filter_dtb_warnings=True)
431
432 def testFilterMigration(self):
433 """Test output with --filter-migration-warnings
434
435 This does a line-by-line verification of the summary output.
436 """
437 lines = self._SetupTest(show_errors=True,
438 filter_migration_warnings=True)
439 self._CheckOutput(lines, filter_migration_warnings=True)
Simon Glass724c1752020-04-09 15:08:32 -0600440
Simon Glassc05694f2013-04-03 11:07:16 +0000441 def _testGit(self):
442 """Test basic builder operation by building a branch"""
Simon Glassc05694f2013-04-03 11:07:16 +0000443 options = Options()
444 options.git = os.getcwd()
445 options.summary = False
446 options.jobs = None
447 options.dry_run = False
Simon Glass09bbfcd2020-04-09 15:08:31 -0600448 #options.git = os.path.join(self.base_dir, 'repo')
Simon Glassc05694f2013-04-03 11:07:16 +0000449 options.branch = 'test-buildman'
450 options.force_build = False
451 options.list_tool_chains = False
452 options.count = -1
453 options.git_dir = None
454 options.threads = None
455 options.show_unknown = False
456 options.quick = False
457 options.show_errors = False
458 options.keep_outputs = False
459 args = ['tegra20']
460 control.DoBuildman(options, args)
461
Simon Glassaa40f9a2014-08-09 15:33:08 -0600462 def testBoardSingle(self):
463 """Test single board selection"""
464 self.assertEqual(self.boards.SelectBoards(['sandbox']),
Simon Glassd9eb9f02018-06-11 23:26:46 -0600465 ({'all': ['board4'], 'sandbox': ['board4']}, []))
Simon Glassaa40f9a2014-08-09 15:33:08 -0600466
467 def testBoardArch(self):
468 """Test single board selection"""
469 self.assertEqual(self.boards.SelectBoards(['arm']),
Simon Glassd9eb9f02018-06-11 23:26:46 -0600470 ({'all': ['board0', 'board1'],
471 'arm': ['board0', 'board1']}, []))
Simon Glassaa40f9a2014-08-09 15:33:08 -0600472
473 def testBoardArchSingle(self):
474 """Test single board selection"""
475 self.assertEqual(self.boards.SelectBoards(['arm sandbox']),
Simon Glassd9eb9f02018-06-11 23:26:46 -0600476 ({'sandbox': ['board4'],
Simon Glass5e0f06d2017-11-12 21:52:15 -0700477 'all': ['board0', 'board1', 'board4'],
Simon Glassd9eb9f02018-06-11 23:26:46 -0600478 'arm': ['board0', 'board1']}, []))
Simon Glass5e0f06d2017-11-12 21:52:15 -0700479
Simon Glassaa40f9a2014-08-09 15:33:08 -0600480
481 def testBoardArchSingleMultiWord(self):
482 """Test single board selection"""
483 self.assertEqual(self.boards.SelectBoards(['arm', 'sandbox']),
Simon Glassd9eb9f02018-06-11 23:26:46 -0600484 ({'sandbox': ['board4'],
485 'all': ['board0', 'board1', 'board4'],
486 'arm': ['board0', 'board1']}, []))
Simon Glassaa40f9a2014-08-09 15:33:08 -0600487
488 def testBoardSingleAnd(self):
489 """Test single board selection"""
490 self.assertEqual(self.boards.SelectBoards(['Tester & arm']),
Simon Glassd9eb9f02018-06-11 23:26:46 -0600491 ({'Tester&arm': ['board0', 'board1'],
492 'all': ['board0', 'board1']}, []))
Simon Glassaa40f9a2014-08-09 15:33:08 -0600493
494 def testBoardTwoAnd(self):
495 """Test single board selection"""
496 self.assertEqual(self.boards.SelectBoards(['Tester', '&', 'arm',
497 'Tester' '&', 'powerpc',
498 'sandbox']),
Simon Glassd9eb9f02018-06-11 23:26:46 -0600499 ({'sandbox': ['board4'],
Simon Glass5e0f06d2017-11-12 21:52:15 -0700500 'all': ['board0', 'board1', 'board2', 'board3',
501 'board4'],
502 'Tester&powerpc': ['board2', 'board3'],
Simon Glassd9eb9f02018-06-11 23:26:46 -0600503 'Tester&arm': ['board0', 'board1']}, []))
Simon Glassaa40f9a2014-08-09 15:33:08 -0600504
505 def testBoardAll(self):
506 """Test single board selection"""
Simon Glass5e0f06d2017-11-12 21:52:15 -0700507 self.assertEqual(self.boards.SelectBoards([]),
Simon Glassd9eb9f02018-06-11 23:26:46 -0600508 ({'all': ['board0', 'board1', 'board2', 'board3',
509 'board4']}, []))
Simon Glassaa40f9a2014-08-09 15:33:08 -0600510
511 def testBoardRegularExpression(self):
512 """Test single board selection"""
513 self.assertEqual(self.boards.SelectBoards(['T.*r&^Po']),
Simon Glassd9eb9f02018-06-11 23:26:46 -0600514 ({'all': ['board2', 'board3'],
515 'T.*r&^Po': ['board2', 'board3']}, []))
Simon Glassaa40f9a2014-08-09 15:33:08 -0600516
517 def testBoardDuplicate(self):
518 """Test single board selection"""
519 self.assertEqual(self.boards.SelectBoards(['sandbox sandbox',
520 'sandbox']),
Simon Glassd9eb9f02018-06-11 23:26:46 -0600521 ({'all': ['board4'], 'sandbox': ['board4']}, []))
Simon Glass2e1646c2014-12-01 17:33:51 -0700522 def CheckDirs(self, build, dirname):
523 self.assertEqual('base%s' % dirname, build._GetOutputDir(1))
524 self.assertEqual('base%s/fred' % dirname,
525 build.GetBuildDir(1, 'fred'))
526 self.assertEqual('base%s/fred/done' % dirname,
527 build.GetDoneFile(1, 'fred'))
528 self.assertEqual('base%s/fred/u-boot.sizes' % dirname,
529 build.GetFuncSizesFile(1, 'fred', 'u-boot'))
530 self.assertEqual('base%s/fred/u-boot.objdump' % dirname,
531 build.GetObjdumpFile(1, 'fred', 'u-boot'))
532 self.assertEqual('base%s/fred/err' % dirname,
533 build.GetErrFile(1, 'fred'))
534
535 def testOutputDir(self):
536 build = builder.Builder(self.toolchains, BASE_DIR, None, 1, 2,
537 checkout=False, show_unknown=False)
538 build.commits = self.commits
539 build.commit_count = len(self.commits)
540 subject = self.commits[1].subject.translate(builder.trans_valid_chars)
Simon Glass36971712020-07-19 12:28:11 -0600541 dirname ='/%02d_g%s_%s' % (2, commits[1][0], subject[:20])
Simon Glass2e1646c2014-12-01 17:33:51 -0700542 self.CheckDirs(build, dirname)
543
544 def testOutputDirCurrent(self):
545 build = builder.Builder(self.toolchains, BASE_DIR, None, 1, 2,
546 checkout=False, show_unknown=False)
547 build.commits = None
548 build.commit_count = 0
549 self.CheckDirs(build, '/current')
Simon Glassaa40f9a2014-08-09 15:33:08 -0600550
Simon Glasse87bde12014-12-01 17:33:55 -0700551 def testOutputDirNoSubdirs(self):
552 build = builder.Builder(self.toolchains, BASE_DIR, None, 1, 2,
553 checkout=False, show_unknown=False,
554 no_subdirs=True)
555 build.commits = None
556 build.commit_count = 0
557 self.CheckDirs(build, '')
558
Simon Glassc1528c12014-12-01 17:34:05 -0700559 def testToolchainAliases(self):
560 self.assertTrue(self.toolchains.Select('arm') != None)
561 with self.assertRaises(ValueError):
562 self.toolchains.Select('no-arch')
563 with self.assertRaises(ValueError):
564 self.toolchains.Select('x86')
565
566 self.toolchains = toolchain.Toolchains()
567 self.toolchains.Add('x86_64-linux-gcc', test=False)
568 self.assertTrue(self.toolchains.Select('x86') != None)
569
570 self.toolchains = toolchain.Toolchains()
571 self.toolchains.Add('i386-linux-gcc', test=False)
572 self.assertTrue(self.toolchains.Select('x86') != None)
573
Simon Glass7e803e12014-12-01 17:34:06 -0700574 def testToolchainDownload(self):
575 """Test that we can download toolchains"""
Simon Glass2bfc6972017-11-12 21:52:14 -0700576 if use_network:
Simon Glass04150022018-10-01 21:12:43 -0600577 with test_util.capture_sys_output() as (stdout, stderr):
578 url = self.toolchains.LocateArchUrl('arm')
Simon Glass72e358c2018-10-01 21:12:35 -0600579 self.assertRegexpMatches(url, 'https://www.kernel.org/pub/tools/'
580 'crosstool/files/bin/x86_64/.*/'
Simon Glassdd65c5f2020-04-17 17:51:30 -0600581 'x86_64-gcc-.*-nolibc[-_]arm-.*linux-gnueabi.tar.xz')
Simon Glass7e803e12014-12-01 17:34:06 -0700582
Simon Glass48ac42e2019-12-05 15:59:14 -0700583 def testGetEnvArgs(self):
584 """Test the GetEnvArgs() function"""
585 tc = self.toolchains.Select('arm')
586 self.assertEqual('arm-linux-',
587 tc.GetEnvArgs(toolchain.VAR_CROSS_COMPILE))
588 self.assertEqual('', tc.GetEnvArgs(toolchain.VAR_PATH))
589 self.assertEqual('arm',
590 tc.GetEnvArgs(toolchain.VAR_ARCH))
591 self.assertEqual('', tc.GetEnvArgs(toolchain.VAR_MAKE_ARGS))
592
593 self.toolchains.Add('/path/to/x86_64-linux-gcc', test=False)
594 tc = self.toolchains.Select('x86')
595 self.assertEqual('/path/to',
596 tc.GetEnvArgs(toolchain.VAR_PATH))
597 tc.override_toolchain = 'clang'
598 self.assertEqual('HOSTCC=clang CC=clang',
599 tc.GetEnvArgs(toolchain.VAR_MAKE_ARGS))
600
Simon Glass5dc1ca72020-03-18 09:42:45 -0600601 def testPrepareOutputSpace(self):
602 def _Touch(fname):
603 tools.WriteFile(os.path.join(base_dir, fname), b'')
604
605 base_dir = tempfile.mkdtemp()
606
607 # Add various files that we want removed and left alone
Ovidiu Panaitee8e9cb2020-05-15 09:30:12 +0300608 to_remove = ['01_g0982734987_title', '102_g92bf_title',
609 '01_g2938abd8_title']
610 to_leave = ['something_else', '01-something.patch', '01_another']
Simon Glass5dc1ca72020-03-18 09:42:45 -0600611 for name in to_remove + to_leave:
612 _Touch(name)
613
614 build = builder.Builder(self.toolchains, base_dir, None, 1, 2)
615 build.commits = self.commits
616 build.commit_count = len(commits)
617 result = set(build._GetOutputSpaceRemovals())
618 expected = set([os.path.join(base_dir, f) for f in to_remove])
619 self.assertEqual(expected, result)
Simon Glass7e803e12014-12-01 17:34:06 -0700620
Simon Glassc05694f2013-04-03 11:07:16 +0000621if __name__ == "__main__":
622 unittest.main()