2019-03-21 16:42:47 +00:00
|
|
|
"""Tests for the opcodes module."""
|
|
|
|
|
2019-02-23 23:38:14 +00:00
|
|
|
import unittest
|
|
|
|
|
2019-03-21 16:24:40 +00:00
|
|
|
import opcodes
|
2019-02-23 23:38:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestOpcodes(unittest.TestCase):
|
|
|
|
def test_equality(self):
|
|
|
|
op1 = opcodes.Terminate()
|
|
|
|
op2 = opcodes.Terminate()
|
|
|
|
self.assertEqual(op1, op2)
|
|
|
|
|
2019-03-23 22:05:36 +00:00
|
|
|
op1 = opcodes.Nop()
|
|
|
|
op2 = opcodes.Nop()
|
2019-02-23 23:38:14 +00:00
|
|
|
self.assertEqual(op1, op2)
|
|
|
|
|
2019-06-12 21:06:58 +00:00
|
|
|
op1 = opcodes.Ack(aux_active=False)
|
|
|
|
op2 = opcodes.Ack(aux_active=False)
|
2019-03-23 22:05:36 +00:00
|
|
|
self.assertEqual(op1, op2)
|
|
|
|
|
2019-06-12 21:06:58 +00:00
|
|
|
op1 = opcodes.Ack(aux_active=False)
|
2019-03-23 22:05:36 +00:00
|
|
|
op2 = opcodes.Nop()
|
2019-02-23 23:38:14 +00:00
|
|
|
self.assertNotEqual(op1, op2)
|
|
|
|
|
2019-03-23 22:05:36 +00:00
|
|
|
op1 = opcodes.TICK_OPCODES[(4, 32)](0xff, [0x01, 0x02, 0x03, 0x04])
|
|
|
|
op2 = opcodes.TICK_OPCODES[(4, 32)](0xff, [0x01, 0x02, 0x03, 0x04])
|
|
|
|
self.assertEqual(op1, op2)
|
|
|
|
|
|
|
|
# op2 has same payload but different opcode
|
|
|
|
op1 = opcodes.TICK_OPCODES[(4, 32)](0xff, [0x01, 0x02, 0x03, 0x04])
|
|
|
|
op2 = opcodes.TICK_OPCODES[(6, 32)](0xff, [0x01, 0x02, 0x03, 0x04])
|
|
|
|
self.assertNotEqual(op1, op2)
|
|
|
|
|
|
|
|
# op2 has different content byte
|
|
|
|
op1 = opcodes.TICK_OPCODES[(4, 32)](0xff, [0x01, 0x02, 0x03, 0x04])
|
|
|
|
op2 = opcodes.TICK_OPCODES[(4, 32)](0xfe, [0x01, 0x02, 0x03, 0x04])
|
|
|
|
self.assertNotEqual(op1, op2)
|
|
|
|
|
|
|
|
# op2 has different offsets
|
|
|
|
op1 = opcodes.TICK_OPCODES[(4, 32)](0xff, [0x01, 0x02, 0x03, 0x04])
|
|
|
|
op2 = opcodes.TICK_OPCODES[(4, 32)](0xff, [0x01, 0x02, 0x03, 0x05])
|
2019-02-23 23:38:14 +00:00
|
|
|
self.assertNotEqual(op1, op2)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|