blob: b4e28d68676d543e7ee0a249d5c093808dc12755 [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 Glass4b4bc062018-10-01 21:12:43 -060023import test_util
Simon Glassfc3fe1c2013-04-03 11:07:16 +000024import toolchain
25
Simon Glasscb39a102017-11-12 21:52:14 -070026use_network = True
27
Simon Glasscc935292014-12-01 17:34:04 -070028settings_data = '''
29# Buildman settings file
30
31[toolchain]
32main: /usr/sbin
33
34[toolchain-alias]
35x86: i386 x86_64
36'''
37
Simon Glassfc3fe1c2013-04-03 11:07:16 +000038errors = [
39 '''main.c: In function 'main_loop':
40main.c:260:6: warning: unused variable 'joe' [-Wunused-variable]
41''',
Simon Glass6208fce2014-09-05 19:00:08 -060042 '''main.c: In function 'main_loop2':
Simon Glassfc3fe1c2013-04-03 11:07:16 +000043main.c:295:2: error: 'fred' undeclared (first use in this function)
44main.c:295:2: note: each undeclared identifier is reported only once for each function it appears in
45make[1]: *** [main.o] Error 1
46make: *** [common/libcommon.o] Error 2
47Make failed
48''',
Simon Glass2d483332018-11-06 16:02:11 -070049 '''arch/arm/dts/socfpga_arria10_socdk_sdmmc.dtb: Warning \
50(avoid_unnecessary_addr_size): /clocks: unnecessary #address-cells/#size-cells \
51without "ranges" or child "reg" property
Simon Glassfc3fe1c2013-04-03 11:07:16 +000052''',
53 '''powerpc-linux-ld: warning: dot moved backwards before `.bss'
54powerpc-linux-ld: warning: dot moved backwards before `.bss'
55powerpc-linux-ld: u-boot: section .text lma 0xfffc0000 overlaps previous sections
56powerpc-linux-ld: u-boot: section .rodata lma 0xfffef3ec overlaps previous sections
57powerpc-linux-ld: u-boot: section .reloc lma 0xffffa400 overlaps previous sections
58powerpc-linux-ld: u-boot: section .data lma 0xffffcd38 overlaps previous sections
59powerpc-linux-ld: u-boot: section .u_boot_cmd lma 0xffffeb40 overlaps previous sections
60powerpc-linux-ld: u-boot: section .bootpg lma 0xfffff198 overlaps previous sections
Simon Glass930c8d42014-09-05 19:00:21 -060061''',
62 '''In file included from %(basedir)sarch/sandbox/cpu/cpu.c:9:0:
63%(basedir)sarch/sandbox/include/asm/state.h:44:0: warning: "xxxx" redefined [enabled by default]
64%(basedir)sarch/sandbox/include/asm/state.h:43:0: note: this is the location of the previous definition
65%(basedir)sarch/sandbox/cpu/cpu.c: In function 'do_reset':
66%(basedir)sarch/sandbox/cpu/cpu.c:27:1: error: unknown type name 'blah'
67%(basedir)sarch/sandbox/cpu/cpu.c:28:12: error: expected declaration specifiers or '...' before numeric constant
68make[2]: *** [arch/sandbox/cpu/cpu.o] Error 1
69make[1]: *** [arch/sandbox/cpu] Error 2
70make[1]: *** Waiting for unfinished jobs....
71In file included from %(basedir)scommon/board_f.c:55:0:
72%(basedir)sarch/sandbox/include/asm/state.h:44:0: warning: "xxxx" redefined [enabled by default]
73%(basedir)sarch/sandbox/include/asm/state.h:43:0: note: this is the location of the previous definition
74make: *** [sub-make] Error 2
Simon Glassfc3fe1c2013-04-03 11:07:16 +000075'''
76]
77
78
79# hash, subject, return code, list of errors/warnings
80commits = [
81 ['1234', 'upstream/master, ok', 0, []],
82 ['5678', 'Second commit, a warning', 0, errors[0:1]],
83 ['9012', 'Third commit, error', 1, errors[0:2]],
84 ['3456', 'Fourth commit, warning', 0, [errors[0], errors[2]]],
85 ['7890', 'Fifth commit, link errors', 1, [errors[0], errors[3]]],
Simon Glass930c8d42014-09-05 19:00:21 -060086 ['abcd', 'Sixth commit, fixes all errors', 0, []],
87 ['ef01', 'Seventh commit, check directory suppression', 1, [errors[4]]],
Simon Glassfc3fe1c2013-04-03 11:07:16 +000088]
89
90boards = [
Simon Glasse19d5782013-09-23 17:35:16 -060091 ['Active', 'arm', 'armv7', '', 'Tester', 'ARM Board 1', 'board0', ''],
92 ['Active', 'arm', 'armv7', '', 'Tester', 'ARM Board 2', 'board1', ''],
93 ['Active', 'powerpc', 'powerpc', '', 'Tester', 'PowerPC board 1', 'board2', ''],
Simon Glass251f5862017-11-12 21:52:15 -070094 ['Active', 'powerpc', 'mpc83xx', '', 'Tester', 'PowerPC board 2', 'board3', ''],
Simon Glasse19d5782013-09-23 17:35:16 -060095 ['Active', 'sandbox', 'sandbox', '', 'Tester', 'Sandbox board', 'board4', ''],
Simon Glassfc3fe1c2013-04-03 11:07:16 +000096]
97
Simon Glass4466c1f2014-12-01 17:33:51 -070098BASE_DIR = 'base'
99
Simon Glass6af71012018-11-06 16:02:13 -0700100OUTCOME_OK, OUTCOME_WARN, OUTCOME_ERR = range(3)
101
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000102class Options:
103 """Class that holds build options"""
104 pass
105
106class TestBuild(unittest.TestCase):
107 """Test buildman
108
109 TODO: Write tests for the rest of the functionality
110 """
111 def setUp(self):
112 # Set up commits to build
113 self.commits = []
114 sequence = 0
115 for commit_info in commits:
116 comm = commit.Commit(commit_info[0])
117 comm.subject = commit_info[1]
118 comm.return_code = commit_info[2]
119 comm.error_list = commit_info[3]
120 comm.sequence = sequence
121 sequence += 1
122 self.commits.append(comm)
123
124 # Set up boards to build
125 self.boards = board.Boards()
126 for brd in boards:
127 self.boards.AddBoard(board.Board(*brd))
128 self.boards.SelectBoards([])
129
Simon Glasscc935292014-12-01 17:34:04 -0700130 # Add some test settings
131 bsettings.Setup(None)
132 bsettings.AddFile(settings_data)
133
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000134 # Set up the toolchains
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000135 self.toolchains = toolchain.Toolchains()
136 self.toolchains.Add('arm-linux-gcc', test=False)
137 self.toolchains.Add('sparc-linux-gcc', test=False)
138 self.toolchains.Add('powerpc-linux-gcc', test=False)
139 self.toolchains.Add('gcc', test=False)
140
Simon Glass6208fce2014-09-05 19:00:08 -0600141 # Avoid sending any output
142 terminal.SetPrintTestMode()
143 self._col = terminal.Color()
144
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000145 def Make(self, commit, brd, stage, *args, **kwargs):
Simon Glass930c8d42014-09-05 19:00:21 -0600146 global base_dir
147
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000148 result = command.CommandResult()
149 boardnum = int(brd.target[-1])
150 result.return_code = 0
151 result.stderr = ''
152 result.stdout = ('This is the test output for board %s, commit %s' %
153 (brd.target, commit.hash))
Simon Glass930c8d42014-09-05 19:00:21 -0600154 if ((boardnum >= 1 and boardnum >= commit.sequence) or
155 boardnum == 4 and commit.sequence == 6):
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000156 result.return_code = commit.return_code
Simon Glass930c8d42014-09-05 19:00:21 -0600157 result.stderr = (''.join(commit.error_list)
158 % {'basedir' : base_dir + '/.bm-work/00/'})
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000159
160 result.combined = result.stdout + result.stderr
161 return result
162
Simon Glass6af71012018-11-06 16:02:13 -0700163 def assertSummary(self, text, arch, plus, boards, outcome=OUTCOME_ERR):
Simon Glass6208fce2014-09-05 19:00:08 -0600164 col = self._col
Simon Glass6af71012018-11-06 16:02:13 -0700165 expected_colour = (col.GREEN if outcome == OUTCOME_OK else
166 col.YELLOW if outcome == OUTCOME_WARN else col.RED)
Simon Glass6208fce2014-09-05 19:00:08 -0600167 expect = '%10s: ' % arch
168 # TODO(sjg@chromium.org): If plus is '', we shouldn't need this
Simon Glass63c619e2015-02-05 22:06:11 -0700169 expect += ' ' + col.Color(expected_colour, plus)
Simon Glass6208fce2014-09-05 19:00:08 -0600170 expect += ' '
171 for board in boards:
172 expect += col.Color(expected_colour, ' %s' % board)
173 self.assertEqual(text, expect)
174
175 def testOutput(self):
176 """Test basic builder operation and output
177
178 This does a line-by-line verification of the summary output.
179 """
Simon Glass930c8d42014-09-05 19:00:21 -0600180 global base_dir
181
182 base_dir = tempfile.mkdtemp()
183 if not os.path.isdir(base_dir):
184 os.mkdir(base_dir)
185 build = builder.Builder(self.toolchains, base_dir, None, 1, 2,
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000186 checkout=False, show_unknown=False)
187 build.do_make = self.Make
188 board_selected = self.boards.GetSelectedDict()
189
Simon Glass6af71012018-11-06 16:02:13 -0700190 # Build the boards for the pre-defined commits and warnings/errors
191 # associated with each. This calls our Make() to inject the fake output.
Simon Glasse5a0e5d2014-08-09 15:33:03 -0600192 build.BuildBoards(self.commits, board_selected, keep_outputs=False,
193 verbose=False)
Simon Glass6208fce2014-09-05 19:00:08 -0600194 lines = terminal.GetPrintTestLines()
195 count = 0
196 for line in lines:
197 if line.text.strip():
198 count += 1
199
Simon Glass745b3952016-09-18 16:48:33 -0600200 # We should get two starting messages, then an update for every commit
Simon Glass6208fce2014-09-05 19:00:08 -0600201 # built.
Simon Glass745b3952016-09-18 16:48:33 -0600202 self.assertEqual(count, len(commits) * len(boards) + 2)
Simon Glassb2ea7ab2014-08-09 15:33:02 -0600203 build.SetDisplayOptions(show_errors=True);
204 build.ShowSummary(self.commits, board_selected)
Simon Glass930c8d42014-09-05 19:00:21 -0600205 #terminal.EchoPrintTestLines()
Simon Glass6208fce2014-09-05 19:00:08 -0600206 lines = terminal.GetPrintTestLines()
Simon Glass6af71012018-11-06 16:02:13 -0700207
208 # Upstream commit: no errors
Simon Glass6208fce2014-09-05 19:00:08 -0600209 self.assertEqual(lines[0].text, '01: %s' % commits[0][1])
Simon Glass6af71012018-11-06 16:02:13 -0700210
211 # Second commit: all archs should fail with warnings
Simon Glass6208fce2014-09-05 19:00:08 -0600212 self.assertEqual(lines[1].text, '02: %s' % commits[1][1])
213
Simon Glass6208fce2014-09-05 19:00:08 -0600214 col = terminal.Color()
Simon Glassc05aa032019-10-31 07:42:53 -0600215 self.assertSummary(lines[2].text, 'arm', 'w+', ['board1'],
Simon Glass6af71012018-11-06 16:02:13 -0700216 outcome=OUTCOME_WARN)
Simon Glassc05aa032019-10-31 07:42:53 -0600217 self.assertSummary(lines[3].text, 'powerpc', 'w+', ['board2', 'board3'],
Simon Glass6af71012018-11-06 16:02:13 -0700218 outcome=OUTCOME_WARN)
Simon Glassc05aa032019-10-31 07:42:53 -0600219 self.assertSummary(lines[4].text, 'sandbox', 'w+', ['board4'],
Simon Glass6af71012018-11-06 16:02:13 -0700220 outcome=OUTCOME_WARN)
Simon Glass6208fce2014-09-05 19:00:08 -0600221
Simon Glass6af71012018-11-06 16:02:13 -0700222 # Second commit: The warnings should be listed
Simon Glass6208fce2014-09-05 19:00:08 -0600223 self.assertEqual(lines[5].text, 'w+%s' %
224 errors[0].rstrip().replace('\n', '\nw+'))
225 self.assertEqual(lines[5].colour, col.MAGENTA)
226
Simon Glass6af71012018-11-06 16:02:13 -0700227 # Third commit: Still fails
Simon Glass6208fce2014-09-05 19:00:08 -0600228 self.assertEqual(lines[6].text, '03: %s' % commits[2][1])
Simon Glassc05aa032019-10-31 07:42:53 -0600229 self.assertSummary(lines[7].text, 'arm', '', ['board1'],
Simon Glass6af71012018-11-06 16:02:13 -0700230 outcome=OUTCOME_OK)
Simon Glassc05aa032019-10-31 07:42:53 -0600231 self.assertSummary(lines[8].text, 'powerpc', '+', ['board2', 'board3'])
232 self.assertSummary(lines[9].text, 'sandbox', '+', ['board4'])
Simon Glass6208fce2014-09-05 19:00:08 -0600233
Simon Glass6af71012018-11-06 16:02:13 -0700234 # Expect a compiler error
Simon Glass6208fce2014-09-05 19:00:08 -0600235 self.assertEqual(lines[10].text, '+%s' %
236 errors[1].rstrip().replace('\n', '\n+'))
237
Simon Glass6af71012018-11-06 16:02:13 -0700238 # Fourth commit: Compile errors are fixed, just have warning for board3
Simon Glass6208fce2014-09-05 19:00:08 -0600239 self.assertEqual(lines[11].text, '04: %s' % commits[3][1])
Simon Glass6af71012018-11-06 16:02:13 -0700240 expect = '%10s: ' % 'powerpc'
241 expect += ' ' + col.Color(col.GREEN, '')
242 expect += ' '
243 expect += col.Color(col.GREEN, ' %s' % 'board2')
244 expect += ' ' + col.Color(col.YELLOW, 'w+')
245 expect += ' '
246 expect += col.Color(col.YELLOW, ' %s' % 'board3')
Simon Glassc05aa032019-10-31 07:42:53 -0600247 self.assertEqual(lines[12].text, expect)
248 self.assertSummary(lines[13].text, 'sandbox', 'w+', ['board4'],
249 outcome=OUTCOME_WARN)
Simon Glass6208fce2014-09-05 19:00:08 -0600250
251 # Compile error fixed
252 self.assertEqual(lines[14].text, '-%s' %
253 errors[1].rstrip().replace('\n', '\n-'))
254 self.assertEqual(lines[14].colour, col.GREEN)
255
256 self.assertEqual(lines[15].text, 'w+%s' %
257 errors[2].rstrip().replace('\n', '\nw+'))
258 self.assertEqual(lines[15].colour, col.MAGENTA)
259
Simon Glass6af71012018-11-06 16:02:13 -0700260 # Fifth commit
Simon Glass6208fce2014-09-05 19:00:08 -0600261 self.assertEqual(lines[16].text, '05: %s' % commits[4][1])
Simon Glassc05aa032019-10-31 07:42:53 -0600262 self.assertSummary(lines[17].text, 'powerpc', '', ['board3'],
Simon Glass6af71012018-11-06 16:02:13 -0700263 outcome=OUTCOME_OK)
Simon Glassc05aa032019-10-31 07:42:53 -0600264 self.assertSummary(lines[18].text, 'sandbox', '+', ['board4'])
Simon Glass6208fce2014-09-05 19:00:08 -0600265
266 # The second line of errors[3] is a duplicate, so buildman will drop it
267 expect = errors[3].rstrip().split('\n')
268 expect = [expect[0]] + expect[2:]
269 self.assertEqual(lines[19].text, '+%s' %
270 '\n'.join(expect).replace('\n', '\n+'))
271
272 self.assertEqual(lines[20].text, 'w-%s' %
273 errors[2].rstrip().replace('\n', '\nw-'))
274
Simon Glass6af71012018-11-06 16:02:13 -0700275 # Sixth commit
Simon Glass6208fce2014-09-05 19:00:08 -0600276 self.assertEqual(lines[21].text, '06: %s' % commits[5][1])
Simon Glass6af71012018-11-06 16:02:13 -0700277 self.assertSummary(lines[22].text, 'sandbox', '', ['board4'],
278 outcome=OUTCOME_OK)
Simon Glass6208fce2014-09-05 19:00:08 -0600279
280 # The second line of errors[3] is a duplicate, so buildman will drop it
281 expect = errors[3].rstrip().split('\n')
282 expect = [expect[0]] + expect[2:]
283 self.assertEqual(lines[23].text, '-%s' %
284 '\n'.join(expect).replace('\n', '\n-'))
285
286 self.assertEqual(lines[24].text, 'w-%s' %
287 errors[0].rstrip().replace('\n', '\nw-'))
288
Simon Glass6af71012018-11-06 16:02:13 -0700289 # Seventh commit
Simon Glass930c8d42014-09-05 19:00:21 -0600290 self.assertEqual(lines[25].text, '07: %s' % commits[6][1])
291 self.assertSummary(lines[26].text, 'sandbox', '+', ['board4'])
292
293 # Pick out the correct error lines
294 expect_str = errors[4].rstrip().replace('%(basedir)s', '').split('\n')
295 expect = expect_str[3:8] + [expect_str[-1]]
296 self.assertEqual(lines[27].text, '+%s' %
297 '\n'.join(expect).replace('\n', '\n+'))
298
299 # Now the warnings lines
300 expect = [expect_str[0]] + expect_str[10:12] + [expect_str[9]]
301 self.assertEqual(lines[28].text, 'w+%s' %
302 '\n'.join(expect).replace('\n', '\nw+'))
303
304 self.assertEqual(len(lines), 29)
305 shutil.rmtree(base_dir)
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000306
307 def _testGit(self):
308 """Test basic builder operation by building a branch"""
309 base_dir = tempfile.mkdtemp()
310 if not os.path.isdir(base_dir):
311 os.mkdir(base_dir)
312 options = Options()
313 options.git = os.getcwd()
314 options.summary = False
315 options.jobs = None
316 options.dry_run = False
317 #options.git = os.path.join(base_dir, 'repo')
318 options.branch = 'test-buildman'
319 options.force_build = False
320 options.list_tool_chains = False
321 options.count = -1
322 options.git_dir = None
323 options.threads = None
324 options.show_unknown = False
325 options.quick = False
326 options.show_errors = False
327 options.keep_outputs = False
328 args = ['tegra20']
329 control.DoBuildman(options, args)
Simon Glass930c8d42014-09-05 19:00:21 -0600330 shutil.rmtree(base_dir)
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000331
Simon Glass6131bea2014-08-09 15:33:08 -0600332 def testBoardSingle(self):
333 """Test single board selection"""
334 self.assertEqual(self.boards.SelectBoards(['sandbox']),
Simon Glass06890362018-06-11 23:26:46 -0600335 ({'all': ['board4'], 'sandbox': ['board4']}, []))
Simon Glass6131bea2014-08-09 15:33:08 -0600336
337 def testBoardArch(self):
338 """Test single board selection"""
339 self.assertEqual(self.boards.SelectBoards(['arm']),
Simon Glass06890362018-06-11 23:26:46 -0600340 ({'all': ['board0', 'board1'],
341 'arm': ['board0', 'board1']}, []))
Simon Glass6131bea2014-08-09 15:33:08 -0600342
343 def testBoardArchSingle(self):
344 """Test single board selection"""
345 self.assertEqual(self.boards.SelectBoards(['arm sandbox']),
Simon Glass06890362018-06-11 23:26:46 -0600346 ({'sandbox': ['board4'],
Simon Glass251f5862017-11-12 21:52:15 -0700347 'all': ['board0', 'board1', 'board4'],
Simon Glass06890362018-06-11 23:26:46 -0600348 'arm': ['board0', 'board1']}, []))
Simon Glass251f5862017-11-12 21:52:15 -0700349
Simon Glass6131bea2014-08-09 15:33:08 -0600350
351 def testBoardArchSingleMultiWord(self):
352 """Test single board selection"""
353 self.assertEqual(self.boards.SelectBoards(['arm', 'sandbox']),
Simon Glass06890362018-06-11 23:26:46 -0600354 ({'sandbox': ['board4'],
355 'all': ['board0', 'board1', 'board4'],
356 'arm': ['board0', 'board1']}, []))
Simon Glass6131bea2014-08-09 15:33:08 -0600357
358 def testBoardSingleAnd(self):
359 """Test single board selection"""
360 self.assertEqual(self.boards.SelectBoards(['Tester & arm']),
Simon Glass06890362018-06-11 23:26:46 -0600361 ({'Tester&arm': ['board0', 'board1'],
362 'all': ['board0', 'board1']}, []))
Simon Glass6131bea2014-08-09 15:33:08 -0600363
364 def testBoardTwoAnd(self):
365 """Test single board selection"""
366 self.assertEqual(self.boards.SelectBoards(['Tester', '&', 'arm',
367 'Tester' '&', 'powerpc',
368 'sandbox']),
Simon Glass06890362018-06-11 23:26:46 -0600369 ({'sandbox': ['board4'],
Simon Glass251f5862017-11-12 21:52:15 -0700370 'all': ['board0', 'board1', 'board2', 'board3',
371 'board4'],
372 'Tester&powerpc': ['board2', 'board3'],
Simon Glass06890362018-06-11 23:26:46 -0600373 'Tester&arm': ['board0', 'board1']}, []))
Simon Glass6131bea2014-08-09 15:33:08 -0600374
375 def testBoardAll(self):
376 """Test single board selection"""
Simon Glass251f5862017-11-12 21:52:15 -0700377 self.assertEqual(self.boards.SelectBoards([]),
Simon Glass06890362018-06-11 23:26:46 -0600378 ({'all': ['board0', 'board1', 'board2', 'board3',
379 'board4']}, []))
Simon Glass6131bea2014-08-09 15:33:08 -0600380
381 def testBoardRegularExpression(self):
382 """Test single board selection"""
383 self.assertEqual(self.boards.SelectBoards(['T.*r&^Po']),
Simon Glass06890362018-06-11 23:26:46 -0600384 ({'all': ['board2', 'board3'],
385 'T.*r&^Po': ['board2', 'board3']}, []))
Simon Glass6131bea2014-08-09 15:33:08 -0600386
387 def testBoardDuplicate(self):
388 """Test single board selection"""
389 self.assertEqual(self.boards.SelectBoards(['sandbox sandbox',
390 'sandbox']),
Simon Glass06890362018-06-11 23:26:46 -0600391 ({'all': ['board4'], 'sandbox': ['board4']}, []))
Simon Glass4466c1f2014-12-01 17:33:51 -0700392 def CheckDirs(self, build, dirname):
393 self.assertEqual('base%s' % dirname, build._GetOutputDir(1))
394 self.assertEqual('base%s/fred' % dirname,
395 build.GetBuildDir(1, 'fred'))
396 self.assertEqual('base%s/fred/done' % dirname,
397 build.GetDoneFile(1, 'fred'))
398 self.assertEqual('base%s/fred/u-boot.sizes' % dirname,
399 build.GetFuncSizesFile(1, 'fred', 'u-boot'))
400 self.assertEqual('base%s/fred/u-boot.objdump' % dirname,
401 build.GetObjdumpFile(1, 'fred', 'u-boot'))
402 self.assertEqual('base%s/fred/err' % dirname,
403 build.GetErrFile(1, 'fred'))
404
405 def testOutputDir(self):
406 build = builder.Builder(self.toolchains, BASE_DIR, None, 1, 2,
407 checkout=False, show_unknown=False)
408 build.commits = self.commits
409 build.commit_count = len(self.commits)
410 subject = self.commits[1].subject.translate(builder.trans_valid_chars)
411 dirname ='/%02d_of_%02d_g%s_%s' % (2, build.commit_count, commits[1][0],
412 subject[:20])
413 self.CheckDirs(build, dirname)
414
415 def testOutputDirCurrent(self):
416 build = builder.Builder(self.toolchains, BASE_DIR, None, 1, 2,
417 checkout=False, show_unknown=False)
418 build.commits = None
419 build.commit_count = 0
420 self.CheckDirs(build, '/current')
Simon Glass6131bea2014-08-09 15:33:08 -0600421
Simon Glass5971ab52014-12-01 17:33:55 -0700422 def testOutputDirNoSubdirs(self):
423 build = builder.Builder(self.toolchains, BASE_DIR, None, 1, 2,
424 checkout=False, show_unknown=False,
425 no_subdirs=True)
426 build.commits = None
427 build.commit_count = 0
428 self.CheckDirs(build, '')
429
Simon Glass9b83bfd2014-12-01 17:34:05 -0700430 def testToolchainAliases(self):
431 self.assertTrue(self.toolchains.Select('arm') != None)
432 with self.assertRaises(ValueError):
433 self.toolchains.Select('no-arch')
434 with self.assertRaises(ValueError):
435 self.toolchains.Select('x86')
436
437 self.toolchains = toolchain.Toolchains()
438 self.toolchains.Add('x86_64-linux-gcc', test=False)
439 self.assertTrue(self.toolchains.Select('x86') != None)
440
441 self.toolchains = toolchain.Toolchains()
442 self.toolchains.Add('i386-linux-gcc', test=False)
443 self.assertTrue(self.toolchains.Select('x86') != None)
444
Simon Glass827e37b2014-12-01 17:34:06 -0700445 def testToolchainDownload(self):
446 """Test that we can download toolchains"""
Simon Glasscb39a102017-11-12 21:52:14 -0700447 if use_network:
Simon Glass4b4bc062018-10-01 21:12:43 -0600448 with test_util.capture_sys_output() as (stdout, stderr):
449 url = self.toolchains.LocateArchUrl('arm')
Simon Glassda753e32018-10-01 21:12:35 -0600450 self.assertRegexpMatches(url, 'https://www.kernel.org/pub/tools/'
451 'crosstool/files/bin/x86_64/.*/'
452 'x86_64-gcc-.*-nolibc_arm-.*linux-gnueabi.tar.xz')
Simon Glass827e37b2014-12-01 17:34:06 -0700453
454
Simon Glassfc3fe1c2013-04-03 11:07:16 +0000455if __name__ == "__main__":
456 unittest.main()