-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathtest_lib_enum.py
341 lines (311 loc) · 11.8 KB
/
test_lib_enum.py
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
import enum as py_enum
import operator
import sys
import unittest
from amaranth import *
from amaranth.hdl import *
from amaranth.lib.enum import Enum, EnumType, Flag, IntEnum, EnumView, FlagView
from .utils import *
class EnumTestCase(FHDLTestCase):
def test_members_non_int(self):
# Mustn't raise to be a drop-in replacement for Enum.
class EnumA(Enum):
A = "str"
def test_members_const_non_int(self):
class EnumA(Enum):
A = C(0)
B = C(1)
self.assertIs(EnumA.A.value, 0)
self.assertIs(EnumA.B.value, 1)
self.assertEqual(Shape.cast(EnumA), unsigned(1))
def test_shape_no_members(self):
class EnumA(Enum):
pass
class PyEnumA(py_enum.Enum):
pass
self.assertEqual(Shape.cast(EnumA), unsigned(0))
self.assertEqual(Shape.cast(PyEnumA), unsigned(0))
def test_shape_explicit(self):
class EnumA(Enum, shape=signed(2)):
pass
self.assertEqual(Shape.cast(EnumA), signed(2))
def test_shape_explicit_cast(self):
class EnumA(Enum, shape=range(10)):
pass
self.assertEqual(Shape.cast(EnumA), unsigned(4))
def test_shape_implicit(self):
class EnumA(Enum):
A = 0
B = 1
self.assertEqual(Shape.cast(EnumA), unsigned(1))
class EnumB(Enum):
A = 0
B = 5
self.assertEqual(Shape.cast(EnumB), unsigned(3))
class EnumC(Enum):
A = 0
B = -1
self.assertEqual(Shape.cast(EnumC), signed(2))
class EnumD(Enum):
A = 3
B = -5
self.assertEqual(Shape.cast(EnumD), signed(4))
def test_shape_members_non_const_non_int_wrong(self):
with self.assertRaisesRegex(TypeError,
r"^Value 'str' of enumeration member 'A' must be a constant-castable expression$"):
class EnumA(Enum, shape=unsigned(1)):
A = "str"
def test_shape_explicit_wrong_signed_mismatch(self):
with self.assertWarnsRegex(SyntaxWarning,
r"^Value -1 of enumeration member 'A' is signed, but the enumeration "
r"shape is unsigned\(1\)$"):
class EnumA(Enum, shape=unsigned(1)):
A = -1
def test_shape_explicit_wrong_too_wide(self):
with self.assertWarnsRegex(SyntaxWarning,
r"^Value 2 of enumeration member 'A' will be truncated to the enumeration "
r"shape unsigned\(1\)$"):
class EnumA(Enum, shape=unsigned(1)):
A = 2
with self.assertWarnsRegex(SyntaxWarning,
r"^Value 1 of enumeration member 'A' will be truncated to the enumeration "
r"shape signed\(1\)$"):
class EnumB(Enum, shape=signed(1)):
A = 1
with self.assertWarnsRegex(SyntaxWarning,
r"^Value -2 of enumeration member 'A' will be truncated to the "
r"enumeration shape signed\(1\)$"):
class EnumC(Enum, shape=signed(1)):
A = -2
def test_value_shape_from_enum_member(self):
class EnumA(Enum, shape=unsigned(10)):
A = 1
self.assertRepr(Value.cast(EnumA.A), "(const 10'd1)")
def test_no_shape(self):
class EnumA(Enum):
Z = 0
A = 10
B = 20
self.assertNotIsInstance(EnumA, EnumType)
self.assertIsInstance(EnumA, py_enum.EnumMeta)
def test_const_shape(self):
class EnumA(Enum, shape=8):
Z = 0
A = 10
self.assertRepr(EnumA.const(None), f"EnumView({EnumA.__qualname__}, (const 8'd0))")
self.assertRepr(EnumA.const(10), f"EnumView({EnumA.__qualname__}, (const 8'd10))")
self.assertRepr(EnumA.const(EnumA.A), f"EnumView({EnumA.__qualname__}, (const 8'd10))")
def test_from_bits(self):
class EnumA(Enum, shape=2):
A = 0
B = 1
C = 2
self.assertIs(EnumA.from_bits(2), EnumA.C)
with self.assertRaises(ValueError):
EnumA.from_bits(3)
def test_shape_implicit_wrong_in_concat(self):
class EnumA(Enum):
A = 0
with self.assertWarnsRegex(SyntaxWarning,
r"^Argument #1 of Cat\(\) is an enumerated value <EnumA\.A: 0> without a defined "
r"shape used in bit vector context; define the enumeration by inheriting from "
r"the class in amaranth\.lib\.enum and specifying the 'shape=' keyword argument$"):
Cat(EnumA.A)
def test_functional(self):
Enum("FOO", ["BAR", "BAZ"])
def test_int_enum(self):
class EnumA(IntEnum, shape=signed(4)):
A = 0
B = -3
a = Signal(EnumA)
self.assertRepr(a, "(sig a)")
self.assertRepr(a._format, f"(format-enum (sig a) '{EnumA.__qualname__}' (0 'A') (-3 'B'))")
def test_enum_view(self):
class EnumA(Enum, shape=signed(4)):
A = 0
B = -3
class EnumB(Enum, shape=signed(4)):
C = 0
D = 5
E = 7
a = Signal(EnumA)
b = Signal(EnumB)
c = Signal(EnumA)
d = Signal(4)
self.assertIsInstance(a, EnumView)
self.assertIs(a.shape(), EnumA)
self.assertRepr(a, f"EnumView({EnumA.__qualname__}, (sig a))")
self.assertRepr(a.as_value(), "(sig a)")
self.assertRepr(a.eq(c), "(eq (sig a) (sig c))")
for op in [
operator.__add__,
operator.__sub__,
operator.__mul__,
operator.__floordiv__,
operator.__mod__,
operator.__lshift__,
operator.__rshift__,
operator.__and__,
operator.__or__,
operator.__xor__,
operator.__lt__,
operator.__le__,
operator.__gt__,
operator.__ge__,
]:
with self.assertRaises(TypeError):
op(a, a)
with self.assertRaises(TypeError):
op(a, d)
with self.assertRaises(TypeError):
op(d, a)
with self.assertRaises(TypeError):
op(a, 3)
with self.assertRaises(TypeError):
op(a, EnumA.A)
for op in [
operator.__eq__,
operator.__ne__,
]:
with self.assertRaises(TypeError):
op(a, b)
with self.assertRaises(TypeError):
op(a, d)
with self.assertRaises(TypeError):
op(d, a)
with self.assertRaises(TypeError):
op(a, 3)
with self.assertRaises(TypeError):
op(a, EnumB.C)
self.assertRepr(a == c, "(== (sig a) (sig c))")
self.assertRepr(a != c, "(!= (sig a) (sig c))")
self.assertRepr(a == EnumA.B, "(== (sig a) (const 4'sd-3))")
self.assertRepr(EnumA.B == a, "(== (sig a) (const 4'sd-3))")
self.assertRepr(a != EnumA.B, "(!= (sig a) (const 4'sd-3))")
self.assertRepr(b.matches(EnumB.C, EnumB.D), """
(r| (cat
(== (sig b) (const 1'd0))
(== (sig b) (const 3'd5))
))
""")
with self.assertRaisesRegex(TypeError,
r"^a pattern must be an enum value of the same type as the EnumView \(.*EnumB\), "
r"not .*$"):
b.matches(EnumA.A)
def test_flag_view(self):
class FlagA(Flag, shape=unsigned(4)):
A = 1
B = 4
class FlagB(Flag, shape=unsigned(4)):
C = 1
D = 2
a = Signal(FlagA)
b = Signal(FlagB)
c = Signal(FlagA)
d = Signal(4)
self.assertIsInstance(a, FlagView)
self.assertRepr(a, f"FlagView({FlagA.__qualname__}, (sig a))")
for op in [
operator.__add__,
operator.__sub__,
operator.__mul__,
operator.__floordiv__,
operator.__mod__,
operator.__lshift__,
operator.__rshift__,
operator.__lt__,
operator.__le__,
operator.__gt__,
operator.__ge__,
]:
with self.assertRaises(TypeError):
op(a, a)
with self.assertRaises(TypeError):
op(a, d)
with self.assertRaises(TypeError):
op(d, a)
with self.assertRaises(TypeError):
op(a, 3)
with self.assertRaises(TypeError):
op(a, FlagA.A)
for op in [
operator.__eq__,
operator.__ne__,
operator.__and__,
operator.__or__,
operator.__xor__,
]:
with self.assertRaises(TypeError):
op(a, b)
with self.assertRaises(TypeError):
op(a, d)
with self.assertRaises(TypeError):
op(d, a)
with self.assertRaises(TypeError):
op(a, 3)
with self.assertRaises(TypeError):
op(a, FlagB.C)
self.assertRepr(a == c, "(== (sig a) (sig c))")
self.assertRepr(a != c, "(!= (sig a) (sig c))")
self.assertRepr(a == FlagA.B, "(== (sig a) (const 4'd4))")
self.assertRepr(FlagA.B == a, "(== (sig a) (const 4'd4))")
self.assertRepr(a != FlagA.B, "(!= (sig a) (const 4'd4))")
self.assertRepr(a | c, f"FlagView({FlagA.__qualname__}, (| (sig a) (sig c)))")
self.assertRepr(a & c, f"FlagView({FlagA.__qualname__}, (& (sig a) (sig c)))")
self.assertRepr(a ^ c, f"FlagView({FlagA.__qualname__}, (^ (sig a) (sig c)))")
self.assertRepr(~a, f"FlagView({FlagA.__qualname__}, (& (~ (sig a)) (const 3'd5)))")
self.assertRepr(a | FlagA.B, f"FlagView({FlagA.__qualname__}, (| (sig a) (const 4'd4)))")
if sys.version_info >= (3, 11):
class FlagC(Flag, shape=unsigned(4), boundary=py_enum.KEEP):
A = 1
B = 4
e = Signal(FlagC)
self.assertRepr(~e, f"FlagView({FlagC.__qualname__}, (~ (sig e)))")
def test_enum_view_wrong(self):
class EnumA(Enum, shape=signed(4)):
A = 0
B = -3
a = Signal(2)
with self.assertRaisesRegex(TypeError,
r'^EnumView target must have the same shape as the enum$'):
EnumA(a)
with self.assertRaisesRegex(TypeError,
r'^EnumView target must be a value-castable object, not .*$'):
EnumView(EnumA, "a")
class EnumB(Enum):
C = 0
D = 1
with self.assertRaisesRegex(TypeError,
r'^EnumView type must be an enum with shape, not .*$'):
EnumView(EnumB, 3)
def test_enum_view_custom(self):
class CustomView(EnumView):
pass
class EnumA(Enum, view_class=CustomView, shape=unsigned(2)):
A = 0
B = 1
a = Signal(EnumA)
assert isinstance(a, CustomView)
@unittest.skipUnless(hasattr(py_enum, "nonmember"), "Python<3.11 lacks nonmember")
def test_enum_member_nonmember(self):
with self.assertRaisesRegex(
TypeError, r"^Value \{\} of enumeration member 'x' must.*$"
):
class EnumA(IntEnum, shape=4):
A = 1
x = {}
empty = {}
class EnumA(IntEnum, shape=4):
A = 1
x = py_enum.nonmember(empty)
self.assertIs(empty, EnumA.x)
class EnumB(IntEnum, shape=4):
A = 1
B = py_enum.member(2)
self.assertIs(2, EnumB.B.value)
def test_format(self):
class EnumA(Enum, shape=unsigned(2)):
A = 0
B = 1
sig = Signal(EnumA)
self.assertRepr(EnumA.format(sig, ""), f"(format-enum (sig sig) '{EnumA.__qualname__}' (0 'A') (1 'B'))")