|
| 1 | +import unittest |
| 2 | + |
| 3 | +from ..periph import PeripheralInfo |
| 4 | +from ..memory import MemoryMap |
| 5 | +from .. import event |
| 6 | + |
| 7 | + |
| 8 | +class PeripheralInfoTestCase(unittest.TestCase): |
| 9 | + def test_memory_map(self): |
| 10 | + memory_map = MemoryMap(addr_width=1, data_width=8) |
| 11 | + info = PeripheralInfo(memory_map=memory_map) |
| 12 | + self.assertIs(info.memory_map, memory_map) |
| 13 | + |
| 14 | + def test_memory_map_frozen(self): |
| 15 | + memory_map = MemoryMap(addr_width=1, data_width=8) |
| 16 | + info = PeripheralInfo(memory_map=memory_map) |
| 17 | + with self.assertRaisesRegex(ValueError, |
| 18 | + r"Memory map has been frozen. Address width cannot be extended further"): |
| 19 | + memory_map.add_resource("a", size=3, extend=True) |
| 20 | + |
| 21 | + def test_memory_map_wrong(self): |
| 22 | + with self.assertRaisesRegex(TypeError, |
| 23 | + r"Memory map must be an instance of MemoryMap, not 'foo'"): |
| 24 | + info = PeripheralInfo(memory_map="foo") |
| 25 | + |
| 26 | + def test_irq(self): |
| 27 | + memory_map = MemoryMap(addr_width=1, data_width=8) |
| 28 | + irq = event.Source() |
| 29 | + info = PeripheralInfo(memory_map=memory_map, irq=irq) |
| 30 | + self.assertIs(info.irq, irq) |
| 31 | + |
| 32 | + def test_irq_none(self): |
| 33 | + memory_map = MemoryMap(addr_width=1, data_width=8) |
| 34 | + info = PeripheralInfo(memory_map=memory_map, irq=None) |
| 35 | + with self.assertRaisesRegex(NotImplementedError, |
| 36 | + r"Peripheral info does not have an IRQ line"): |
| 37 | + info.irq |
| 38 | + |
| 39 | + def test_irq_default(self): |
| 40 | + memory_map = MemoryMap(addr_width=1, data_width=8) |
| 41 | + info = PeripheralInfo(memory_map=memory_map) |
| 42 | + with self.assertRaisesRegex(NotImplementedError, |
| 43 | + r"Peripheral info does not have an IRQ line"): |
| 44 | + info.irq |
| 45 | + |
| 46 | + def test_irq_wrong(self): |
| 47 | + memory_map = MemoryMap(addr_width=1, data_width=8) |
| 48 | + with self.assertRaisesRegex(TypeError, |
| 49 | + r"IRQ line must be an instance of event.Source, not 'foo'"): |
| 50 | + info = PeripheralInfo(memory_map=memory_map, irq="foo") |
0 commit comments