xref: /openbmc/u-boot/tools/binman/etype/_testing.py (revision 4869fa3f)
1# SPDX-License-Identifier: GPL-2.0+
2# Copyright (c) 2016 Google, Inc
3# Written by Simon Glass <sjg@chromium.org>
4#
5# Entry-type module for testing purposes. Not used in real images.
6#
7
8from collections import OrderedDict
9
10from entry import Entry, EntryArg
11import fdt_util
12import tools
13
14
15class Entry__testing(Entry):
16    """A fake entry used for testing
17
18    This entry should not be used in normal images. It is a special entry with
19    strange features used for testing.
20
21    Properties / Entry arguments
22        test-str-fdt: Test string, normally in the node
23        test-int-fdt: Test integer, normally in the node
24        test-str-arg: Test string, normally in the entry arguments
25        test-int-arg: Test integer, normally in the entry arguments
26
27    The entry has a single 'a' byte as its contents. Operation is controlled by
28    a number of properties in the node, as follows:
29
30    Properties:
31        return-invalid-entry: Return an invalid entry from GetOffsets()
32        return-unknown-contents: Refuse to provide any contents (to cause a
33            failure)
34        bad-update-contents: Implement ProcessContents() incorrectly so as to
35            cause a failure
36        never-complete-process-fdt: Refund to process the FDT (to cause a
37            failure)
38        require-args: Require that all used args are present (generating an
39            error if not)
40        force-bad-datatype: Force a call to GetEntryArgsOrProps() with a bad
41            data type (generating an error)
42    """
43    def __init__(self, section, etype, node):
44        Entry.__init__(self, section, etype, node)
45        self.return_invalid_entry = fdt_util.GetBool(self._node,
46                                                     'return-invalid-entry')
47        self.return_unknown_contents = fdt_util.GetBool(self._node,
48                                                     'return-unknown-contents')
49        self.bad_update_contents = fdt_util.GetBool(self._node,
50                                                    'bad-update-contents')
51
52        # Set to True when the entry is ready to process the FDT.
53        self.process_fdt_ready = False
54        self.never_complete_process_fdt = fdt_util.GetBool(self._node,
55                                                'never-complete-process-fdt')
56        self.require_args = fdt_util.GetBool(self._node, 'require-args')
57
58        # This should be picked up by GetEntryArgsOrProps()
59        self.test_existing_prop = 'existing'
60        self.force_bad_datatype = fdt_util.GetBool(self._node,
61                                                   'force-bad-datatype')
62        (self.test_str_fdt, self.test_str_arg, self.test_int_fdt,
63         self.test_int_arg, existing) = self.GetEntryArgsOrProps([
64            EntryArg('test-str-fdt', str),
65            EntryArg('test-str-arg', str),
66            EntryArg('test-int-fdt', int),
67            EntryArg('test-int-arg', int),
68            EntryArg('test-existing-prop', str)], self.require_args)
69        if self.force_bad_datatype:
70            self.GetEntryArgsOrProps([EntryArg('test-bad-datatype-arg', bool)])
71
72    def ObtainContents(self):
73        if self.return_unknown_contents:
74            return False
75        self.data = 'a'
76        self.contents_size = len(self.data)
77        return True
78
79    def GetOffsets(self):
80        if self.return_invalid_entry :
81            return {'invalid-entry': [1, 2]}
82        return {}
83
84    def ProcessContents(self):
85        if self.bad_update_contents:
86            # Request to update the conents with something larger, to cause a
87            # failure.
88            self.ProcessContentsUpdate('aa')
89
90    def ProcessFdt(self, fdt):
91        """Force reprocessing the first time"""
92        ready = self.process_fdt_ready
93        if not self.never_complete_process_fdt:
94            self.process_fdt_ready = True
95        return ready
96