blob: 3775e1afb074dc3c68c4a742f5848257d9f46a29 [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
9from image import Image
Simon Glassc3f94542018-07-06 10:27:34 -060010from 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)
Simon Glass8f1da502018-06-01 09:38:12 -060015 section = image._section
Simon Glass19790632017-11-13 18:55:01 -070016 with self.assertRaises(ValueError) as e:
Simon Glass8f1da502018-06-01 09:38:12 -060017 section.LookupSymbol('_binman_something_prop_', False, 'msg')
Simon Glass19790632017-11-13 18:55:01 -070018 self.assertIn(
19 "msg: Symbol '_binman_something_prop_' has invalid format",
20 str(e.exception))
21
22 def testMissingSymbol(self):
23 image = Image('name', 'node', test=True)
Simon Glass8f1da502018-06-01 09:38:12 -060024 section = image._section
25 section._entries = {}
Simon Glass19790632017-11-13 18:55:01 -070026 with self.assertRaises(ValueError) as e:
Simon Glass8f1da502018-06-01 09:38:12 -060027 section.LookupSymbol('_binman_type_prop_pname', False, 'msg')
Simon Glass19790632017-11-13 18:55:01 -070028 self.assertIn("msg: Entry 'type' not found in list ()",
29 str(e.exception))
30
31 def testMissingSymbolOptional(self):
32 image = Image('name', 'node', test=True)
Simon Glass8f1da502018-06-01 09:38:12 -060033 section = image._section
34 section._entries = {}
Simon Glass19790632017-11-13 18:55:01 -070035 with capture_sys_output() as (stdout, stderr):
Simon Glass8f1da502018-06-01 09:38:12 -060036 val = section.LookupSymbol('_binman_type_prop_pname', True, 'msg')
Simon Glass19790632017-11-13 18:55:01 -070037 self.assertEqual(val, None)
38 self.assertEqual("Warning: msg: Entry 'type' not found in list ()\n",
39 stderr.getvalue())
40 self.assertEqual('', stdout.getvalue())
41
42 def testBadProperty(self):
43 image = Image('name', 'node', test=True)
Simon Glass8f1da502018-06-01 09:38:12 -060044 section = image._section
45 section._entries = {'u-boot': 1}
Simon Glass19790632017-11-13 18:55:01 -070046 with self.assertRaises(ValueError) as e:
Simon Glass8f1da502018-06-01 09:38:12 -060047 section.LookupSymbol('_binman_u_boot_prop_bad', False, 'msg')
Simon Glass19790632017-11-13 18:55:01 -070048 self.assertIn("msg: No such property 'bad", str(e.exception))