2018-01-09 01:40:32 +00:00
|
|
|
import pytest
|
2018-01-09 22:28:39 +00:00
|
|
|
from il65 import datatypes
|
2018-01-17 00:26:58 +00:00
|
|
|
from il65.plyparse import coerce_constant_value, LiteralValue
|
2018-01-09 01:40:32 +00:00
|
|
|
from il65.compile import ParseError
|
|
|
|
from il65.plylex import SourceRef
|
2018-01-14 14:18:50 +00:00
|
|
|
from il65.emit import to_hex, to_mflpt5
|
2018-01-08 02:31:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_datatypes():
|
2018-01-09 22:28:39 +00:00
|
|
|
assert all(isinstance(s, datatypes.DataType) for s in datatypes.STRING_DATATYPES)
|
2018-01-13 22:49:57 +00:00
|
|
|
assert all(s.isstring() for s in datatypes.STRING_DATATYPES)
|
|
|
|
assert not any(s.isarray() or s.isnumeric() for s in datatypes.STRING_DATATYPES)
|
|
|
|
assert datatypes.DataType.WORDARRAY.isarray()
|
|
|
|
assert not datatypes.DataType.WORDARRAY.isnumeric()
|
|
|
|
assert not datatypes.DataType.WORDARRAY.isstring()
|
|
|
|
assert not datatypes.DataType.WORD.isarray()
|
|
|
|
assert datatypes.DataType.WORD.isnumeric()
|
|
|
|
assert not datatypes.DataType.WORD.isstring()
|
2018-01-08 02:31:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_sourceref():
|
|
|
|
s = SourceRef("file", 99, 42)
|
|
|
|
assert str(s) == "file:99:42"
|
|
|
|
s = SourceRef("file", 99)
|
|
|
|
assert str(s) == "file:99"
|
|
|
|
|
|
|
|
|
|
|
|
def test_parseerror():
|
2018-01-09 01:40:32 +00:00
|
|
|
p = ParseError("message", SourceRef("filename", 99, 42))
|
2018-01-08 02:31:23 +00:00
|
|
|
assert p.args == ("message", )
|
|
|
|
assert str(p) == "filename:99:42 message"
|
2018-01-09 01:40:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_to_hex():
|
2018-01-14 14:18:50 +00:00
|
|
|
assert to_hex(0) == "0"
|
|
|
|
assert to_hex(1) == "1"
|
|
|
|
assert to_hex(10) == "10"
|
|
|
|
assert to_hex(15) == "15"
|
|
|
|
assert to_hex(16) == "$10"
|
|
|
|
assert to_hex(255) == "$ff"
|
|
|
|
assert to_hex(256) == "$0100"
|
|
|
|
assert to_hex(20060) == "$4e5c"
|
|
|
|
assert to_hex(65535) == "$ffff"
|
2018-01-09 01:40:32 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-14 14:18:50 +00:00
|
|
|
to_hex(-1)
|
2018-01-09 01:40:32 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-14 14:18:50 +00:00
|
|
|
to_hex(65536)
|
2018-01-09 22:28:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_float_to_mflpt5():
|
2018-01-14 14:18:50 +00:00
|
|
|
mflpt = to_mflpt5(1.0)
|
2018-01-09 22:28:39 +00:00
|
|
|
assert type(mflpt) is bytearray
|
2018-01-14 14:18:50 +00:00
|
|
|
assert b"\x00\x00\x00\x00\x00" == to_mflpt5(0)
|
|
|
|
assert b"\x82\x49\x0F\xDA\xA1" == to_mflpt5(3.141592653)
|
|
|
|
assert b"\x82\x49\x0F\xDA\xA2" == to_mflpt5(3.141592653589793)
|
|
|
|
assert b"\x90\x80\x00\x00\x00" == to_mflpt5(-32768)
|
|
|
|
assert b"\x81\x00\x00\x00\x00" == to_mflpt5(1)
|
|
|
|
assert b"\x80\x35\x04\xF3\x34" == to_mflpt5(0.7071067812)
|
|
|
|
assert b"\x80\x35\x04\xF3\x33" == to_mflpt5(0.7071067811865476)
|
|
|
|
assert b"\x81\x35\x04\xF3\x34" == to_mflpt5(1.4142135624)
|
|
|
|
assert b"\x81\x35\x04\xF3\x33" == to_mflpt5(1.4142135623730951)
|
|
|
|
assert b"\x80\x80\x00\x00\x00" == to_mflpt5(-.5)
|
|
|
|
assert b"\x80\x31\x72\x17\xF8" == to_mflpt5(0.69314718061)
|
|
|
|
assert b"\x80\x31\x72\x17\xF7" == to_mflpt5(0.6931471805599453)
|
|
|
|
assert b"\x84\x20\x00\x00\x00" == to_mflpt5(10)
|
|
|
|
assert b"\x9E\x6E\x6B\x28\x00" == to_mflpt5(1000000000)
|
|
|
|
assert b"\x80\x00\x00\x00\x00" == to_mflpt5(.5)
|
|
|
|
assert b"\x81\x38\xAA\x3B\x29" == to_mflpt5(1.4426950408889634)
|
|
|
|
assert b"\x81\x49\x0F\xDA\xA2" == to_mflpt5(1.5707963267948966)
|
|
|
|
assert b"\x83\x49\x0F\xDA\xA2" == to_mflpt5(6.283185307179586)
|
|
|
|
assert b"\x7F\x00\x00\x00\x00" == to_mflpt5(.25)
|
2018-01-09 22:28:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_float_range():
|
2018-01-14 14:18:50 +00:00
|
|
|
assert b"\xff\x7f\xff\xff\xff" == to_mflpt5(datatypes.FLOAT_MAX_POSITIVE)
|
|
|
|
assert b"\xff\xff\xff\xff\xff" == to_mflpt5(datatypes.FLOAT_MAX_NEGATIVE)
|
2018-01-09 22:28:39 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-14 14:18:50 +00:00
|
|
|
to_mflpt5(1.7014118346e+38)
|
2018-01-09 22:28:39 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-14 14:18:50 +00:00
|
|
|
to_mflpt5(-1.7014118346e+38)
|
2018-01-09 22:28:39 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-14 14:18:50 +00:00
|
|
|
to_mflpt5(1.7014118347e+38)
|
2018-01-09 22:28:39 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-14 14:18:50 +00:00
|
|
|
to_mflpt5(-1.7014118347e+38)
|
|
|
|
assert b"\x03\x39\x1d\x15\x63" == to_mflpt5(1.7e-38)
|
|
|
|
assert b"\x00\x00\x00\x00\x00" == to_mflpt5(1.7e-39)
|
|
|
|
assert b"\x03\xb9\x1d\x15\x63" == to_mflpt5(-1.7e-38)
|
|
|
|
assert b"\x00\x00\x00\x00\x00" == to_mflpt5(-1.7e-39)
|
2018-01-09 22:28:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_char_to_bytevalue():
|
|
|
|
assert datatypes.char_to_bytevalue('a') == 65
|
|
|
|
assert datatypes.char_to_bytevalue('\n') == 13
|
|
|
|
assert datatypes.char_to_bytevalue('π') == 126
|
|
|
|
assert datatypes.char_to_bytevalue('▒') == 230
|
|
|
|
assert datatypes.char_to_bytevalue('\x00') == 0
|
|
|
|
assert datatypes.char_to_bytevalue('\xff') == 255
|
|
|
|
with pytest.raises(AssertionError):
|
|
|
|
datatypes.char_to_bytevalue('<undefined>')
|
|
|
|
# screencodes not yet implemented: assert datatypes.char_to_bytevalue('a', False) == 65
|
|
|
|
|
|
|
|
|
|
|
|
def test_coerce_value():
|
2018-01-17 00:26:58 +00:00
|
|
|
def lv(v) -> LiteralValue:
|
2018-01-21 00:32:50 +00:00
|
|
|
return LiteralValue(value=v, sourceref=SourceRef("test", 1, 1)) # type: ignore
|
2018-01-17 00:26:58 +00:00
|
|
|
assert coerce_constant_value(datatypes.DataType.BYTE, lv(0)) == (False, lv(0))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.BYTE, lv(255)) == (False, lv(255))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.BYTE, lv('@')) == (True, lv(64))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.WORD, lv(0)) == (False, lv(0))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.WORD, lv(65535)) == (False, lv(65535))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.WORD, lv('@')) == (True, lv(64))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.FLOAT, lv(-999.22)) == (False, lv(-999.22))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.FLOAT, lv(123.45)) == (False, lv(123.45))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.FLOAT, lv('@')) == (True, lv(64))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.BYTE, lv(5.678)) == (True, lv(5))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.WORD, lv(5.678)) == (True, lv(5))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.WORD,
|
|
|
|
lv("string")) == (False, lv("string")), "string (address) can be assigned to a word"
|
|
|
|
assert coerce_constant_value(datatypes.DataType.STRING, lv("string")) == (False, lv("string"))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.STRING_P, lv("string")) == (False, lv("string"))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.STRING_S, lv("string")) == (False, lv("string"))
|
|
|
|
assert coerce_constant_value(datatypes.DataType.STRING_PS, lv("string")) == (False, lv("string"))
|
2018-01-09 22:28:39 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-17 00:26:58 +00:00
|
|
|
coerce_constant_value(datatypes.DataType.BYTE, lv(-1))
|
2018-01-09 22:28:39 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-17 00:26:58 +00:00
|
|
|
coerce_constant_value(datatypes.DataType.BYTE, lv(256))
|
2018-01-09 22:28:39 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-17 00:26:58 +00:00
|
|
|
coerce_constant_value(datatypes.DataType.BYTE, lv(256.12345))
|
2018-01-09 22:28:39 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-17 00:26:58 +00:00
|
|
|
coerce_constant_value(datatypes.DataType.WORD, lv(-1))
|
2018-01-09 22:28:39 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-17 00:26:58 +00:00
|
|
|
coerce_constant_value(datatypes.DataType.WORD, lv(65536))
|
2018-01-09 22:28:39 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-17 00:26:58 +00:00
|
|
|
coerce_constant_value(datatypes.DataType.WORD, lv(65536.12345))
|
2018-01-09 22:28:39 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-17 00:26:58 +00:00
|
|
|
coerce_constant_value(datatypes.DataType.FLOAT, lv(-1.7014118346e+38))
|
2018-01-09 22:28:39 +00:00
|
|
|
with pytest.raises(OverflowError):
|
2018-01-17 00:26:58 +00:00
|
|
|
coerce_constant_value(datatypes.DataType.FLOAT, lv(1.7014118347e+38))
|
2018-01-10 23:29:46 +00:00
|
|
|
with pytest.raises(TypeError):
|
2018-01-17 00:26:58 +00:00
|
|
|
coerce_constant_value(datatypes.DataType.BYTE, lv("string"))
|
2018-01-10 23:29:46 +00:00
|
|
|
with pytest.raises(TypeError):
|
2018-01-17 00:26:58 +00:00
|
|
|
coerce_constant_value(datatypes.DataType.FLOAT, lv("string"))
|