-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_memory.py
430 lines (350 loc) · 10.7 KB
/
test_memory.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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
import pytest
import random
import utils
from arithmetic import INC16
from memory import DFF, BIT, REGISTER16, RAM8, RAM64, RAM512, RAM4K, RAM8K, RAM16K, PC
NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST = 16
ZERO16 = (False,) * 16
def _create_random_dff() -> DFF:
value = random.choice([True, False])
return DFF(value)
def _create_random_bit() -> BIT:
dff = _create_random_dff()
return BIT(dff)
def _create_random_register() -> REGISTER16:
bits = tuple(_create_random_bit() for _ in range(16))
return REGISTER16(bits)
def _create_random_ram8() -> RAM8:
registers = tuple(_create_random_register() for _ in range(8))
out = registers[0].out
return RAM8(registers, out)
def _create_random_ram64() -> RAM64:
ram8s = tuple(_create_random_ram8() for _ in range(8))
out = ram8s[0].out
return RAM64(ram8s, out)
def _create_random_ram512() -> RAM512:
ram64s = tuple(_create_random_ram64() for _ in range(8))
out = ram64s[0].out
return RAM512(ram64s, out)
def _create_random_ram4k() -> RAM4K:
ram512s = tuple(_create_random_ram512() for _ in range(8))
out = ram512s[0].out
return RAM4K(ram512s, out)
def _create_random_ram8k() -> RAM8K:
ram4ks = tuple(_create_random_ram4k() for _ in range(2))
out = ram4ks[0].out
return RAM8K(ram4ks, out)
def _create_random_ram16k() -> RAM16K:
ram4ks = tuple(_create_random_ram4k() for _ in range(4))
out = ram4ks[0].out
return RAM16K(ram4ks, out)
@pytest.mark.parametrize(
"initial_value, x",
[
(False, True),
(False, False),
(True, True),
(True, False),
],
)
def test_dff(initial_value: bool, x: bool) -> None:
# Given
dff = DFF(initial_value)
# When
new_dff = dff(x)
# Then
assert dff.out == initial_value
assert new_dff.out == x
@pytest.mark.parametrize(
"initial_value, x, load",
[
(False, False, False),
(False, True, False),
(True, False, False),
(True, True, False),
(False, False, True),
(False, True, True),
(True, False, True),
(True, True, True),
],
)
def test_bit(initial_value: bool, x: bool, load: bool) -> None:
# Given
dff = DFF(initial_value)
bit = BIT(dff)
# When
new_bit = bit(x, load)
# Then
if load:
assert new_bit.out == x
if not load:
assert new_bit.out == initial_value
@pytest.mark.parametrize(
"register, xs, load",
[
(
_create_random_register(),
utils.sample_bits(16),
random.choice([True, False]),
)
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST)
],
)
def test_register(
register: REGISTER16,
xs: tuple[bool, ...],
load: bool,
) -> None:
# When
new_register = register(xs, load)
# Then
if load:
assert all(
new_v == x for new_v, x in zip(new_register.out, xs)
), "new value must be stored when load=1"
if not load:
assert all(
new_v == old_v for new_v, old_v in zip(new_register.out, register.out)
), "old value must be kept when load=0"
@pytest.mark.parametrize(
"ram8, xs, load, address",
[
(
_create_random_ram8(),
utils.sample_bits(16),
random.choice([True, False]),
utils.sample_bits(3),
)
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST)
],
)
def test_ram8(
ram8: RAM8,
xs: tuple[bool, ...],
load: bool,
address: tuple[bool, ...],
) -> None:
# When
new_ram8 = ram8(xs, load, address)
# Then
address_idx = utils.to_int(address)
if load:
assert all(
b.out == v for b, v in zip(new_ram8.registers[address_idx].bits, xs)
), "new value must be stored when load=1"
assert new_ram8.out == xs, "`out` must be the value of the RAM at `address`"
if not load:
assert all(
new_b.out == old_b.out
for new_b, old_b in zip(
new_ram8.registers[address_idx].bits,
ram8.registers[address_idx].bits,
)
), "old value must be kept when load=0"
assert (
new_ram8.out == ram8.state[address_idx]
), "`out` must be the value of the RAM at `address`"
for i in range(8):
if i == address_idx:
continue # skip the address index
assert all(
new_b.out == old_b.out
for new_b, old_b in zip(
new_ram8.registers[i].bits,
ram8.registers[i].bits,
)
), f"register at index {i} should not change"
@pytest.mark.parametrize(
"ram64, xs, load, address",
[
(
_create_random_ram64(),
utils.sample_bits(16),
random.choice([True, False]),
utils.sample_bits(6),
)
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST)
],
)
def test_ram64(
ram64: RAM64,
xs: tuple[bool, ...],
load: bool,
address: tuple[bool, ...],
) -> None:
# When
new_ram64 = ram64(xs, load, address)
# Then
address_idx = utils.to_int(address)
if load:
assert (
new_ram64.state[address_idx] == xs
), "new value must be stored when load=1"
assert new_ram64.out == xs, "out must return the new value when load=1"
if not load:
assert new_ram64.state == ram64.state, "old value must be kept when load=0"
assert (
new_ram64.out == ram64.state[address_idx]
), "out must be the value of the RAM at `address`"
for i in range(64):
if i == address_idx:
continue # skip the address index
assert (
new_ram64.state[i] == ram64.state[i]
), f"register at index {i} should not change"
@pytest.mark.parametrize(
"ram512, xs, load, address",
[
(
_create_random_ram512(),
utils.sample_bits(16),
random.choice([True, False]),
utils.sample_bits(9),
)
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST)
],
)
def test_ram512(
ram512: RAM512,
xs: tuple[bool, ...],
load: bool,
address: tuple[bool, ...],
) -> None:
# When
new_ram512 = ram512(xs, load, address)
# Then
address_idx = utils.to_int(address)
old_state = ram512.state
new_state = new_ram512.state
if load:
assert new_state[address_idx] == xs, "new value must be stored when load=1"
assert new_ram512.out == xs, "out must return the new value when load=1"
if not load:
assert old_state == new_state, "old value must be kept when load=0"
assert (
new_ram512.out == old_state[address_idx]
), "out must be the value of the RAM at `address`"
for i in range(512):
if i == address_idx:
continue # skip the address index
assert new_state[i] == old_state[i], f"register at index {i} should not change"
@pytest.mark.parametrize(
"ram4k, xs, load, address",
[
(
_create_random_ram4k(),
utils.sample_bits(16),
random.choice([True, False]),
utils.sample_bits(12),
)
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST)
],
)
def test_ram4k(
ram4k: RAM4K,
xs: tuple[bool, ...],
load: bool,
address: tuple[bool, ...],
) -> None:
# When
new_ram4k = ram4k(xs, load, address)
# Then
address_idx = utils.to_int(address)
old_state = ram4k.state
new_state = new_ram4k.state
if load:
assert new_state[address_idx] == xs, "new value must be stored when load=1"
assert new_ram4k.out == xs, "out must return the new value when load=1"
if not load:
assert old_state == new_state, "old value must be kept when load=0"
assert (
new_ram4k.out == old_state[address_idx]
), "out must be the value of the RAM at `address`"
for i in range(4_096):
if i == address_idx:
continue # skip the address index
assert new_state[i] == old_state[i], f"register at index {i} should not change"
@pytest.mark.parametrize(
"ram8k, xs, load, address",
[
(
_create_random_ram8k(),
utils.sample_bits(16),
random.choice([True, False]),
utils.sample_bits(13),
)
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST)
],
)
def test_ram8k(
ram8k: RAM8K,
xs: tuple[bool, ...],
load: bool,
address: tuple[bool, ...],
) -> None:
# When
new_ram8k = ram8k(xs, load, address)
# Then
address_idx = utils.to_int(address)
old_out = ram8k.state
new_out = new_ram8k.state
if load:
assert new_out[address_idx] == xs, "new value must be stored when load=1"
assert new_ram8k.out == xs, "out must return the new value when load=1"
if not load:
assert old_out == new_out, "old value must be kept when load=0"
assert (
new_ram8k.out == old_out[address_idx]
), "out must be the value of the RAM at `address`"
for i in range(2**13):
if i == address_idx:
continue
@pytest.mark.parametrize(
"ram16k, xs, load, address",
[
(
_create_random_ram16k(),
utils.sample_bits(16),
random.choice([True, False]),
utils.sample_bits(14),
)
for _ in range(NUMBER_OF_SAMPLES_TO_DRAW_PER_TEST)
],
)
def test_ram16k(
ram16k: RAM16K,
xs: tuple[bool, ...],
load: bool,
address: tuple[bool, ...],
) -> None:
# When
new_ram16k = ram16k(xs, load, address)
# Then
address_idx = utils.to_int(address)
old_out = ram16k.state
new_out = new_ram16k.state
if load:
assert new_out[address_idx] == xs, "new value must be stored when load=1"
assert new_ram16k.out == xs, "out must return the new value when load=1"
if not load:
assert old_out == new_out, "old value must be kept when load=0"
assert (
new_ram16k.out == old_out[address_idx]
), "out must be the value of the RAM at `address`"
for i in range(2**14):
if i == address_idx:
continue # skip the address index
assert new_out[i] == old_out[i], f"register at index {i} should not change"
def test_pc() -> None:
# Given
xs = utils.sample_bits(16)
register = _create_random_register()
pc = PC(register)
# When / Then
assert pc(xs, False, False, False).out == pc.out
assert pc(xs, False, False, True).out == ZERO16
assert pc(xs, False, True, False).out == INC16(pc.out)
assert pc(xs, True, False, False).out == xs
assert pc(xs, True, False, True).out == ZERO16
assert pc(xs, True, True, False).out == xs
assert pc(xs, True, True, True).out == ZERO16