blob: e351fa84ab313f4ce2c4862c4b952894289a435c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Simon Glass19790632017-11-13 18:55:01 -07002# Copyright (c) 2017 Google, Inc
3# Written by Simon Glass <sjg@chromium.org>
4#
Simon Glass19790632017-11-13 18:55:01 -07005# Test for the image module
6
7import unittest
8
Simon Glass07237982020-08-05 13:27:47 -06009from binman.image import Image
Simon Glass16287932020-04-17 18:09:03 -060010from patman.test_util import capture_sys_output
Simon Glass19790632017-11-13 18:55:01 -070011
12class TestImage(unittest.TestCase):
13 def testInvalidFormat(self):
14 image = Image('name', 'node', test=True)
15 with self.assertRaises(ValueError) as e:
Simon Glass7c150132019-11-06 17:22:44 -070016 image.LookupSymbol('_binman_something_prop_', False, 'msg', 0)
Simon Glass19790632017-11-13 18:55:01 -070017 self.assertIn(
18 "msg: Symbol '_binman_something_prop_' has invalid format",
19 str(e.exception))
20
21 def testMissingSymbol(self):
22 image = Image('name', 'node', test=True)
Simon Glass8beb11e2019-07-08 14:25:47 -060023 image._entries = {}
Simon Glass19790632017-11-13 18:55:01 -070024 with self.assertRaises(ValueError) as e:
Simon Glass7c150132019-11-06 17:22:44 -070025 image.LookupSymbol('_binman_type_prop_pname', False, 'msg', 0)
Simon Glass19790632017-11-13 18:55:01 -070026 self.assertIn("msg: Entry 'type' not found in list ()",
27 str(e.exception))
28
29 def testMissingSymbolOptional(self):
30 image = Image('name', 'node', test=True)
Simon Glass8beb11e2019-07-08 14:25:47 -060031 image._entries = {}
Simon Glass19790632017-11-13 18:55:01 -070032 with capture_sys_output() as (stdout, stderr):
Simon Glass7c150132019-11-06 17:22:44 -070033 val = image.LookupSymbol('_binman_type_prop_pname', True, 'msg', 0)
Simon Glass19790632017-11-13 18:55:01 -070034 self.assertEqual(val, None)
35 self.assertEqual("Warning: msg: Entry 'type' not found in list ()\n",
36 stderr.getvalue())
37 self.assertEqual('', stdout.getvalue())
38
39 def testBadProperty(self):
40 image = Image('name', 'node', test=True)
Simon Glass8beb11e2019-07-08 14:25:47 -060041 image._entries = {'u-boot': 1}
Simon Glass19790632017-11-13 18:55:01 -070042 with self.assertRaises(ValueError) as e:
Simon Glass7c150132019-11-06 17:22:44 -070043 image.LookupSymbol('_binman_u_boot_prop_bad', False, 'msg', 0)
Simon Glass19790632017-11-13 18:55:01 -070044 self.assertIn("msg: No such property 'bad", str(e.exception))