blob: c36bcdf6fb778c0fa9510bcd35e7530bc8ee7ec2 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glassfc3fe1c2013-04-03 11:07:16 +00002# Copyright (c) 2012 The Chromium OS Authors.
3#
Simon Glassfc3fe1c2013-04-03 11:07:16 +00004
5import os
6import shutil
7import sys
8import tempfile
9import time
10import unittest
11
12# Bring in the patman libraries
13our_path = os.path.dirname(os.path.realpath(__file__))
14sys.path.append(os.path.join(our_path, '../patman'))
15
16import board
17import bsettings
18import builder
19import control
20import command
21import commit
Simon Glass6208fce2014-09-05 19:00:08 -060022import terminal
Simon Glassfc3fe1c2013-04-03 11:07:16 +000023import toolchain
24
Simon Glasscb39a102017-11-12 21:52:14 -070025use_network = True
26
Simon Glasscc935292014-12-01 17:34:04 -070027settings_data = '''
28# Buildman settings file
29
30[toolchain]
31main: /usr/sbin
32
33[toolchain-alias]
34x86: i386 x86_64
35'''
36
Simon Glassfc3fe1c2013-04-03 11:07:16 +000037errors = [
38 '''main.c: In function 'main_loop':
39main.c:260:6: warning: unused variable 'joe' [-Wunused-variable]
40''',
Simon Glass6208fce2014-09-05 19:00:08 -060041 '''main.c: In function 'main_loop2':
Simon Glassfc3fe1c2013-04-03 11:07:16 +000042main.c:295:2: error: 'fred' undeclared (first use in this function)
43main.c:295:2: note: each undeclared identifier is reported only once for each function it appears in
44make[1]: *** [main.o] Error 1
45make: *** [common/libcommon.o] Error 2
46Make failed
47''',
Simon Glass6208fce2014-09-05 19:00:08 -060048 '''main.c: In function 'main_loop3':
Simon Glassfc3fe1c2013-04-03 11:07:16 +000049main.c:280:6: warning: unused variable 'mary' [-Wunused-variable]
50''',
51 '''powerpc-linux-ld: warning: dot moved backwards before `.bss'
52powerpc-linux-ld: warning: dot moved backwards before `.bss'
53powerpc-linux-ld: u-boot: section .text lma 0xfffc0000 overlaps previous sections
54powerpc-linux-ld: u-boot: section .rodata lma 0xfffef3ec overlaps previous sections
55powerpc-linux-ld: u-boot: section .reloc lma 0xffffa400 overlaps previous sections
56powerpc-linux-ld: u-boot: section .data lma 0xffffcd38 overlaps previous sections
57powerpc-linux-ld: u-boot: section .u_boot_cmd lma 0xffffeb40 overlaps previous sections
58powerpc-linux-ld: u-boot: section .bootpg lma 0xfffff198 overlaps previous sections
Simon Glass930c8d42014-09-05 19:00:21 -060059''',
60 '''In file included from %(basedir)sarch/sandbox/cpu/cpu.c:9:0:
61%(basedir)sarch/sandbox/include/asm/state.h:44:0: warning: "xxxx" redefined [enabled by default]
62%(basedir)sarch/sandbox/include/asm/state.h:43:0: note: this is the location of the previous definition
63%(basedir)sarch/sandbox/cpu/cpu.c: In function 'do_reset':
64%(basedir)sarch/sandbox/cpu/cpu.c:27:1: error: unknown type name 'blah'
65%(basedir)sarch/sandbox/cpu/cpu.c:28:12: error: expected declaration specifiers or '...' before numeric constant
66make[2]: *** [arch/sandbox/cpu/cpu.o] Error 1
67make[1]: *** [arch/sandbox/cpu] Error 2
68make[1]: *** Waiting for unfinished jobs....
69In file included from %(basedir)scommon/board_f.c:55:0:
70%(basedir)sarch/sandbox/include/asm/state.h:44:0: warning: "xxxx" redefined [enabled by default]
71%(basedir)sarch/sandbox/include/asm/state.h:43:0: note: this is the location of the previous definition
72make: *** [sub-make] Error 2
Simon Glassfc3fe1c2013-04-03 11:07:16 +000073'''
74]
75
76
77# hash, subject, return code, list of errors/warnings
78commits = [
79 ['1234', 'upstream/master, ok', 0, []],
80 ['5678', 'Second commit, a warning', 0, errors[0:1]],
81 ['9012', 'Third commit, error', 1, errors[0:2]],
82 ['3456', 'Fourth commit, warning', 0, [errors[0], errors[2]]],
83 ['7890', 'Fifth commit, link errors', 1, [errors[0], errors[3]]],
Simon Glass930c8d42014-09-05 19:00:21 -060084 ['abcd', 'Sixth commit, fixes all errors', 0, []],
85 ['ef01', 'Seventh commit, check directory suppression', 1, [errors[4]]],
Simon Glassfc3fe1c2013-04-03 11:07:16 +000086]
87
88boards = [
Simon Glasse19d5782013-09-23 17:35:16 -060089 ['Active', 'arm', 'armv7', '', 'Tester', 'ARM Board 1', 'board0', ''],
90 ['Active', 'arm', 'armv7', '', 'Tester', 'ARM Board 2', 'board1', ''],
91 ['Active', 'powerpc', 'powerpc', '', 'Tester', 'PowerPC board 1', 'board2', ''],
Simon Glass251f5862017-11-12 21:52:15 -070092 ['Active', 'powerpc', 'mpc83xx', '', 'Tester', 'PowerPC board 2', 'board3', ''],
Simon Glasse19d5782013-09-23 17:35:16 -060093 ['Active', 'sandbox', 'sandbox', '', 'Tester', 'Sandbox board', 'board4', ''],
Simon Glassfc3fe1c2013-04-03 11:07:16 +000094]
95
Simon Glass4466c1f2014-12-01 17:33:51 -070096BASE_DIR = 'base'
97
Simon Glassfc3fe1c2013-04-03 11:07:16 +000098class Options:
99 """Class that holds build options"""
100 pass
101
102class TestBuild(unittest.TestCase):
103 """Test buildman
104
105 TODO: Write tests for the rest of the functionality
106 """
107 def setUp(self):
108 # Set up commits to build
109 self.commits = []
110 sequence = 0
111 for commit_info in commits:
112 comm = commit.Commit(commit_info[0])
113 comm.subject = commit_info[1]
114 comm.return_code = commit_info[2]
115 comm.error_list = commit_info[3]
116 comm.sequence = sequence
117 sequence += 1
118 self.commits.append(comm)
119
120 # Set up boards to build
121 self.boards = board.Boards()
122 for brd in boards:
123 self.boards.AddBoard(board.Board(*brd))
124 self.boards.SelectBoards([])
125
Simon Glasscc935292014-12-01 17:34:04 -0700126 # Add some test settings
127 bsettings.Setup(None)
128 bsettings.AddFile(settings_data)
129
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000130 # Set up the toolchains
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000131 self.toolchains = toolchain.Toolchains()
132 self.toolchains.Add('arm-linux-gcc', test=False)
133 self.toolchains.Add('sparc-linux-gcc', test=False)
134 self.toolchains.Add('powerpc-linux-gcc', test=False)
135 self.toolchains.Add('gcc', test=False)
136
Simon Glass6208fce2014-09-05 19:00:08 -0600137 # Avoid sending any output
138 terminal.SetPrintTestMode()
139 self._col = terminal.Color()
140
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000141 def Make(self, commit, brd, stage, *args, **kwargs):
Simon Glass930c8d42014-09-05 19:00:21 -0600142 global base_dir
143
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000144 result = command.CommandResult()
145 boardnum = int(brd.target[-1])
146 result.return_code = 0
147 result.stderr = ''
148 result.stdout = ('This is the test output for board %s, commit %s' %
149 (brd.target, commit.hash))
Simon Glass930c8d42014-09-05 19:00:21 -0600150 if ((boardnum >= 1 and boardnum >= commit.sequence) or
151 boardnum == 4 and commit.sequence == 6):
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000152 result.return_code = commit.return_code
Simon Glass930c8d42014-09-05 19:00:21 -0600153 result.stderr = (''.join(commit.error_list)
154 % {'basedir' : base_dir + '/.bm-work/00/'})
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000155 if stage == 'build':
156 target_dir = None
157 for arg in args:
158 if arg.startswith('O='):
159 target_dir = arg[2:]
160
161 if not os.path.isdir(target_dir):
162 os.mkdir(target_dir)
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000163
164 result.combined = result.stdout + result.stderr
165 return result
166
Simon Glass6208fce2014-09-05 19:00:08 -0600167 def assertSummary(self, text, arch, plus, boards, ok=False):
168 col = self._col
169 expected_colour = col.GREEN if ok else col.RED
170 expect = '%10s: ' % arch
171 # TODO(sjg@chromium.org): If plus is '', we shouldn't need this
Simon Glass63c619e2015-02-05 22:06:11 -0700172 expect += ' ' + col.Color(expected_colour, plus)
Simon Glass6208fce2014-09-05 19:00:08 -0600173 expect += ' '
174 for board in boards:
175 expect += col.Color(expected_colour, ' %s' % board)
176 self.assertEqual(text, expect)
177
178 def testOutput(self):
179 """Test basic builder operation and output
180
181 This does a line-by-line verification of the summary output.
182 """
Simon Glass930c8d42014-09-05 19:00:21 -0600183 global base_dir
184
185 base_dir = tempfile.mkdtemp()
186 if not os.path.isdir(base_dir):
187 os.mkdir(base_dir)
188 build = builder.Builder(self.toolchains, base_dir, None, 1, 2,
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000189 checkout=False, show_unknown=False)
190 build.do_make = self.Make
191 board_selected = self.boards.GetSelectedDict()
192
Simon Glasse5a0e5d2014-08-09 15:33:03 -0600193 build.BuildBoards(self.commits, board_selected, keep_outputs=False,
194 verbose=False)
Simon Glass6208fce2014-09-05 19:00:08 -0600195 lines = terminal.GetPrintTestLines()
196 count = 0
197 for line in lines:
198 if line.text.strip():
199 count += 1
200
Simon Glass745b3952016-09-18 16:48:33 -0600201 # We should get two starting messages, then an update for every commit
Simon Glass6208fce2014-09-05 19:00:08 -0600202 # built.
Simon Glass745b3952016-09-18 16:48:33 -0600203 self.assertEqual(count, len(commits) * len(boards) + 2)
Simon Glassb2ea7ab2014-08-09 15:33:02 -0600204 build.SetDisplayOptions(show_errors=True);
205 build.ShowSummary(self.commits, board_selected)
Simon Glass930c8d42014-09-05 19:00:21 -0600206 #terminal.EchoPrintTestLines()
Simon Glass6208fce2014-09-05 19:00:08 -0600207 lines = terminal.GetPrintTestLines()
208 self.assertEqual(lines[0].text, '01: %s' % commits[0][1])
209 self.assertEqual(lines[1].text, '02: %s' % commits[1][1])
210
211 # We expect all archs to fail
212 col = terminal.Color()
213 self.assertSummary(lines[2].text, 'sandbox', '+', ['board4'])
214 self.assertSummary(lines[3].text, 'arm', '+', ['board1'])
215 self.assertSummary(lines[4].text, 'powerpc', '+', ['board2', 'board3'])
216
217 # Now we should have the compiler warning
218 self.assertEqual(lines[5].text, 'w+%s' %
219 errors[0].rstrip().replace('\n', '\nw+'))
220 self.assertEqual(lines[5].colour, col.MAGENTA)
221
222 self.assertEqual(lines[6].text, '03: %s' % commits[2][1])
223 self.assertSummary(lines[7].text, 'sandbox', '+', ['board4'])
224 self.assertSummary(lines[8].text, 'arm', '', ['board1'], ok=True)
225 self.assertSummary(lines[9].text, 'powerpc', '+', ['board2', 'board3'])
226
227 # Compiler error
228 self.assertEqual(lines[10].text, '+%s' %
229 errors[1].rstrip().replace('\n', '\n+'))
230
231 self.assertEqual(lines[11].text, '04: %s' % commits[3][1])
232 self.assertSummary(lines[12].text, 'sandbox', '', ['board4'], ok=True)
233 self.assertSummary(lines[13].text, 'powerpc', '', ['board2', 'board3'],
234 ok=True)
235
236 # Compile error fixed
237 self.assertEqual(lines[14].text, '-%s' %
238 errors[1].rstrip().replace('\n', '\n-'))
239 self.assertEqual(lines[14].colour, col.GREEN)
240
241 self.assertEqual(lines[15].text, 'w+%s' %
242 errors[2].rstrip().replace('\n', '\nw+'))
243 self.assertEqual(lines[15].colour, col.MAGENTA)
244
245 self.assertEqual(lines[16].text, '05: %s' % commits[4][1])
246 self.assertSummary(lines[17].text, 'sandbox', '+', ['board4'])
247 self.assertSummary(lines[18].text, 'powerpc', '', ['board3'], ok=True)
248
249 # The second line of errors[3] is a duplicate, so buildman will drop it
250 expect = errors[3].rstrip().split('\n')
251 expect = [expect[0]] + expect[2:]
252 self.assertEqual(lines[19].text, '+%s' %
253 '\n'.join(expect).replace('\n', '\n+'))
254
255 self.assertEqual(lines[20].text, 'w-%s' %
256 errors[2].rstrip().replace('\n', '\nw-'))
257
258 self.assertEqual(lines[21].text, '06: %s' % commits[5][1])
259 self.assertSummary(lines[22].text, 'sandbox', '', ['board4'], ok=True)
260
261 # The second line of errors[3] is a duplicate, so buildman will drop it
262 expect = errors[3].rstrip().split('\n')
263 expect = [expect[0]] + expect[2:]
264 self.assertEqual(lines[23].text, '-%s' %
265 '\n'.join(expect).replace('\n', '\n-'))
266
267 self.assertEqual(lines[24].text, 'w-%s' %
268 errors[0].rstrip().replace('\n', '\nw-'))
269
Simon Glass930c8d42014-09-05 19:00:21 -0600270 self.assertEqual(lines[25].text, '07: %s' % commits[6][1])
271 self.assertSummary(lines[26].text, 'sandbox', '+', ['board4'])
272
273 # Pick out the correct error lines
274 expect_str = errors[4].rstrip().replace('%(basedir)s', '').split('\n')
275 expect = expect_str[3:8] + [expect_str[-1]]
276 self.assertEqual(lines[27].text, '+%s' %
277 '\n'.join(expect).replace('\n', '\n+'))
278
279 # Now the warnings lines
280 expect = [expect_str[0]] + expect_str[10:12] + [expect_str[9]]
281 self.assertEqual(lines[28].text, 'w+%s' %
282 '\n'.join(expect).replace('\n', '\nw+'))
283
284 self.assertEqual(len(lines), 29)
285 shutil.rmtree(base_dir)
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000286
287 def _testGit(self):
288 """Test basic builder operation by building a branch"""
289 base_dir = tempfile.mkdtemp()
290 if not os.path.isdir(base_dir):
291 os.mkdir(base_dir)
292 options = Options()
293 options.git = os.getcwd()
294 options.summary = False
295 options.jobs = None
296 options.dry_run = False
297 #options.git = os.path.join(base_dir, 'repo')
298 options.branch = 'test-buildman'
299 options.force_build = False
300 options.list_tool_chains = False
301 options.count = -1
302 options.git_dir = None
303 options.threads = None
304 options.show_unknown = False
305 options.quick = False
306 options.show_errors = False
307 options.keep_outputs = False
308 args = ['tegra20']
309 control.DoBuildman(options, args)
Simon Glass930c8d42014-09-05 19:00:21 -0600310 shutil.rmtree(base_dir)
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000311
Simon Glass6131bea2014-08-09 15:33:08 -0600312 def testBoardSingle(self):
313 """Test single board selection"""
314 self.assertEqual(self.boards.SelectBoards(['sandbox']),
Simon Glass251f5862017-11-12 21:52:15 -0700315 {'all': ['board4'], 'sandbox': ['board4']})
Simon Glass6131bea2014-08-09 15:33:08 -0600316
317 def testBoardArch(self):
318 """Test single board selection"""
319 self.assertEqual(self.boards.SelectBoards(['arm']),
Simon Glass251f5862017-11-12 21:52:15 -0700320 {'all': ['board0', 'board1'],
321 'arm': ['board0', 'board1']})
Simon Glass6131bea2014-08-09 15:33:08 -0600322
323 def testBoardArchSingle(self):
324 """Test single board selection"""
325 self.assertEqual(self.boards.SelectBoards(['arm sandbox']),
Simon Glass251f5862017-11-12 21:52:15 -0700326 {'sandbox': ['board4'],
327 'all': ['board0', 'board1', 'board4'],
328 'arm': ['board0', 'board1']})
329
Simon Glass6131bea2014-08-09 15:33:08 -0600330
331 def testBoardArchSingleMultiWord(self):
332 """Test single board selection"""
333 self.assertEqual(self.boards.SelectBoards(['arm', 'sandbox']),
Simon Glass251f5862017-11-12 21:52:15 -0700334 {'sandbox': ['board4'], 'all': ['board0', 'board1', 'board4'], 'arm': ['board0', 'board1']})
Simon Glass6131bea2014-08-09 15:33:08 -0600335
336 def testBoardSingleAnd(self):
337 """Test single board selection"""
338 self.assertEqual(self.boards.SelectBoards(['Tester & arm']),
Simon Glass251f5862017-11-12 21:52:15 -0700339 {'Tester&arm': ['board0', 'board1'], 'all': ['board0', 'board1']})
Simon Glass6131bea2014-08-09 15:33:08 -0600340
341 def testBoardTwoAnd(self):
342 """Test single board selection"""
343 self.assertEqual(self.boards.SelectBoards(['Tester', '&', 'arm',
344 'Tester' '&', 'powerpc',
345 'sandbox']),
Simon Glass251f5862017-11-12 21:52:15 -0700346 {'sandbox': ['board4'],
347 'all': ['board0', 'board1', 'board2', 'board3',
348 'board4'],
349 'Tester&powerpc': ['board2', 'board3'],
350 'Tester&arm': ['board0', 'board1']})
Simon Glass6131bea2014-08-09 15:33:08 -0600351
352 def testBoardAll(self):
353 """Test single board selection"""
Simon Glass251f5862017-11-12 21:52:15 -0700354 self.assertEqual(self.boards.SelectBoards([]),
355 {'all': ['board0', 'board1', 'board2', 'board3',
356 'board4']})
Simon Glass6131bea2014-08-09 15:33:08 -0600357
358 def testBoardRegularExpression(self):
359 """Test single board selection"""
360 self.assertEqual(self.boards.SelectBoards(['T.*r&^Po']),
Simon Glass251f5862017-11-12 21:52:15 -0700361 {'all': ['board2', 'board3'],
362 'T.*r&^Po': ['board2', 'board3']})
Simon Glass6131bea2014-08-09 15:33:08 -0600363
364 def testBoardDuplicate(self):
365 """Test single board selection"""
366 self.assertEqual(self.boards.SelectBoards(['sandbox sandbox',
367 'sandbox']),
Simon Glass251f5862017-11-12 21:52:15 -0700368 {'all': ['board4'], 'sandbox': ['board4']})
Simon Glass4466c1f2014-12-01 17:33:51 -0700369 def CheckDirs(self, build, dirname):
370 self.assertEqual('base%s' % dirname, build._GetOutputDir(1))
371 self.assertEqual('base%s/fred' % dirname,
372 build.GetBuildDir(1, 'fred'))
373 self.assertEqual('base%s/fred/done' % dirname,
374 build.GetDoneFile(1, 'fred'))
375 self.assertEqual('base%s/fred/u-boot.sizes' % dirname,
376 build.GetFuncSizesFile(1, 'fred', 'u-boot'))
377 self.assertEqual('base%s/fred/u-boot.objdump' % dirname,
378 build.GetObjdumpFile(1, 'fred', 'u-boot'))
379 self.assertEqual('base%s/fred/err' % dirname,
380 build.GetErrFile(1, 'fred'))
381
382 def testOutputDir(self):
383 build = builder.Builder(self.toolchains, BASE_DIR, None, 1, 2,
384 checkout=False, show_unknown=False)
385 build.commits = self.commits
386 build.commit_count = len(self.commits)
387 subject = self.commits[1].subject.translate(builder.trans_valid_chars)
388 dirname ='/%02d_of_%02d_g%s_%s' % (2, build.commit_count, commits[1][0],
389 subject[:20])
390 self.CheckDirs(build, dirname)
391
392 def testOutputDirCurrent(self):
393 build = builder.Builder(self.toolchains, BASE_DIR, None, 1, 2,
394 checkout=False, show_unknown=False)
395 build.commits = None
396 build.commit_count = 0
397 self.CheckDirs(build, '/current')
Simon Glass6131bea2014-08-09 15:33:08 -0600398
Simon Glass5971ab52014-12-01 17:33:55 -0700399 def testOutputDirNoSubdirs(self):
400 build = builder.Builder(self.toolchains, BASE_DIR, None, 1, 2,
401 checkout=False, show_unknown=False,
402 no_subdirs=True)
403 build.commits = None
404 build.commit_count = 0
405 self.CheckDirs(build, '')
406
Simon Glass9b83bfd2014-12-01 17:34:05 -0700407 def testToolchainAliases(self):
408 self.assertTrue(self.toolchains.Select('arm') != None)
409 with self.assertRaises(ValueError):
410 self.toolchains.Select('no-arch')
411 with self.assertRaises(ValueError):
412 self.toolchains.Select('x86')
413
414 self.toolchains = toolchain.Toolchains()
415 self.toolchains.Add('x86_64-linux-gcc', test=False)
416 self.assertTrue(self.toolchains.Select('x86') != None)
417
418 self.toolchains = toolchain.Toolchains()
419 self.toolchains.Add('i386-linux-gcc', test=False)
420 self.assertTrue(self.toolchains.Select('x86') != None)
421
Simon Glass827e37b2014-12-01 17:34:06 -0700422 def testToolchainDownload(self):
423 """Test that we can download toolchains"""
Simon Glasscb39a102017-11-12 21:52:14 -0700424 if use_network:
425 self.assertEqual('https://www.kernel.org/pub/tools/crosstool/files/bin/x86_64/4.9.0/x86_64-gcc-4.9.0-nolibc_arm-unknown-linux-gnueabi.tar.xz',
426 self.toolchains.LocateArchUrl('arm'))
Simon Glass827e37b2014-12-01 17:34:06 -0700427
428
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000429if __name__ == "__main__":
430 unittest.main()