# SPDX-License-Identifier: GPL-2.0+ # Copyright (c) 2016 Google, Inc # Written by Simon Glass # # Entry-type module for testing purposes. Not used in real images. # from entry import Entry import fdt_util import tools class Entry__testing(Entry): """A fake entry used for testing Properties: return_invalid_entry: Return an invalid entry from GetPositions() """ def __init__(self, section, etype, node): Entry.__init__(self, section, etype, node) self.return_invalid_entry = fdt_util.GetBool(self._node, 'return-invalid-entry') self.return_unknown_contents = fdt_util.GetBool(self._node, 'return-unknown-contents') self.bad_update_contents = fdt_util.GetBool(self._node, 'bad-update-contents') self.process_fdt_ready = False self.never_complete_process_fdt = fdt_util.GetBool(self._node, 'never-complete-process-fdt') def ObtainContents(self): if self.return_unknown_contents: return False self.data = 'a' self.contents_size = len(self.data) return True def GetPositions(self): if self.return_invalid_entry : return {'invalid-entry': [1, 2]} return {} def ProcessContents(self): if self.bad_update_contents: # Request to update the conents with something larger, to cause a # failure. self.ProcessContentsUpdate('aa') def ProcessFdt(self, fdt): """Force reprocessing the first time""" ready = self.process_fdt_ready if not self.never_complete_process_fdt: self.process_fdt_ready = True return ready