blob: da4d8c19256b37624f5a0d22118076dc6e2b9202 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
import pychrysalide
from chrysacase import ChrysalideTestCase
from pychrysalide.arch import ArchInstruction
class TestProcessor(ChrysalideTestCase):
"""TestCase for arch.ArchProcessor."""
def testAbstractClass(self):
"""Forbid instruction class instance."""
with self.assertRaisesRegex(RuntimeError, 'pychrysalide.arch.ArchInstruction is an abstract class'):
ins = ArchInstruction()
def testInstructionBasicImplementation(self):
"""Implement basic custom instructions."""
class TodoInstruction(ArchInstruction):
def __init__(self):
super().__init__(0x123)
ins = TodoInstruction()
with self.assertRaisesRegex(NotImplementedError, 'unexpected NULL value as encoding'):
print(ins.encoding)
with self.assertRaisesRegex(NotImplementedError, 'unexpected NULL value as keyword'):
print(ins.keyword)
class CustomInstruction(ArchInstruction):
def __init__(self):
super().__init__(0x123)
def _get_encoding(self):
return 'custom'
def _get_keyword(self):
return 'kw'
ins = CustomInstruction()
self.assertEqual('custom', ins.encoding)
self.assertEqual('kw', ins.keyword)
|