blob: 8a9ae017f03e9a0fefb1d4273d2d86b6e18c7a14 [file] [log] [blame]
Simon Glass4f443042016-11-25 20:15:52 -07001#
2# Copyright (c) 2016 Google, Inc
3# Written by Simon Glass <sjg@chromium.org>
4#
5# SPDX-License-Identifier: GPL-2.0+
6#
7# Test for the Entry class
8
9import collections
10import unittest
11
12import entry
13
14class TestEntry(unittest.TestCase):
15 def testEntryContents(self):
16 """Test the Entry bass class"""
17 base_entry = entry.Entry(None, None, None, read_node=False)
18 self.assertEqual(True, base_entry.ObtainContents())
19
20 def testUnknownEntry(self):
21 """Test that unknown entry types are detected"""
22 Node = collections.namedtuple('Node', ['name', 'path'])
23 node = Node('invalid-name', 'invalid-path')
24 with self.assertRaises(ValueError) as e:
25 entry.Entry.Create(None, node, node.name)
26 self.assertIn("Unknown entry type 'invalid-name' in node "
27 "'invalid-path'", str(e.exception))