2018-09-15 14:21:05 +00:00
|
|
|
package prog8tests
|
2018-08-10 00:58:41 +00:00
|
|
|
|
2018-08-16 23:47:07 +00:00
|
|
|
import org.hamcrest.MatcherAssert.assertThat
|
2018-08-30 21:07:50 +00:00
|
|
|
import org.hamcrest.Matchers.closeTo
|
2018-08-16 23:47:07 +00:00
|
|
|
import org.hamcrest.Matchers.equalTo
|
2018-08-10 00:58:41 +00:00
|
|
|
import org.junit.jupiter.api.Test
|
|
|
|
import org.junit.jupiter.api.TestInstance
|
2019-07-08 11:30:28 +00:00
|
|
|
import prog8.ast.base.DataType
|
2020-03-14 22:47:26 +00:00
|
|
|
import prog8.ast.base.ErrorReporter
|
2019-07-08 11:30:28 +00:00
|
|
|
import prog8.ast.base.Position
|
2019-07-14 22:26:06 +00:00
|
|
|
import prog8.ast.expressions.NumericLiteralValue
|
2019-08-13 01:00:17 +00:00
|
|
|
import prog8.ast.expressions.StringLiteralValue
|
2018-09-24 21:38:33 +00:00
|
|
|
import prog8.compiler.*
|
2019-10-26 21:27:27 +00:00
|
|
|
import prog8.compiler.target.c64.C64MachineDefinition.C64Zeropage
|
|
|
|
import prog8.compiler.target.c64.C64MachineDefinition.FLOAT_MAX_NEGATIVE
|
|
|
|
import prog8.compiler.target.c64.C64MachineDefinition.FLOAT_MAX_POSITIVE
|
|
|
|
import prog8.compiler.target.c64.C64MachineDefinition.Mflpt5
|
2019-07-13 01:16:48 +00:00
|
|
|
import prog8.compiler.target.c64.Petscii
|
2019-08-19 21:49:06 +00:00
|
|
|
import prog8.vm.RuntimeValueNumeric
|
2018-12-14 22:15:44 +00:00
|
|
|
import java.io.CharConversionException
|
2019-01-20 16:45:57 +00:00
|
|
|
import kotlin.test.*
|
2018-08-10 00:58:41 +00:00
|
|
|
|
2018-08-16 23:47:07 +00:00
|
|
|
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
|
|
|
|
class TestCompiler {
|
|
|
|
@Test
|
|
|
|
fun testToHex() {
|
|
|
|
assertEquals("0", 0.toHex())
|
|
|
|
assertEquals("1", 1.toHex())
|
|
|
|
assertEquals("1", 1.234.toHex())
|
|
|
|
assertEquals("10", 10.toHex())
|
|
|
|
assertEquals("10", 10.99.toHex())
|
|
|
|
assertEquals("15", 15.toHex())
|
2018-10-13 14:09:10 +00:00
|
|
|
assertEquals("\$10", 16.toHex())
|
2018-08-16 23:47:07 +00:00
|
|
|
assertEquals("\$ff", 255.toHex())
|
2018-10-13 14:09:10 +00:00
|
|
|
assertEquals("\$0100", 256.toHex())
|
|
|
|
assertEquals("\$4e5c", 20060.toHex())
|
|
|
|
assertEquals("\$c382", 50050.toHex())
|
2018-08-16 23:47:07 +00:00
|
|
|
assertEquals("\$ffff", 65535.toHex())
|
|
|
|
assertEquals("\$ffff", 65535L.toHex())
|
2018-10-13 14:09:10 +00:00
|
|
|
assertEquals("0", 0.toHex())
|
|
|
|
assertEquals("-1", (-1).toHex())
|
|
|
|
assertEquals("-1", (-1.234).toHex())
|
|
|
|
assertEquals("-10", (-10).toHex())
|
|
|
|
assertEquals("-10", (-10.99).toHex())
|
|
|
|
assertEquals("-15", (-15).toHex())
|
|
|
|
assertEquals("-\$10", (-16).toHex())
|
|
|
|
assertEquals("-\$ff", (-255).toHex())
|
|
|
|
assertEquals("-\$0100", (-256).toHex())
|
|
|
|
assertEquals("-\$4e5c", (-20060).toHex())
|
|
|
|
assertEquals("-\$c382", (-50050).toHex())
|
|
|
|
assertEquals("-\$ffff", (-65535).toHex())
|
|
|
|
assertEquals("-\$ffff", (-65535L).toHex())
|
2018-08-16 23:47:07 +00:00
|
|
|
assertFailsWith<CompilerException> { 65536.toHex() }
|
2018-10-13 14:09:10 +00:00
|
|
|
assertFailsWith<CompilerException> { 65536L.toHex() }
|
2018-08-16 23:47:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testFloatToMflpt5() {
|
2018-08-30 21:07:50 +00:00
|
|
|
assertThat(Mflpt5.fromNumber(0), equalTo(Mflpt5(0x00, 0x00, 0x00, 0x00, 0x00)))
|
|
|
|
assertThat(Mflpt5.fromNumber(3.141592653), equalTo(Mflpt5(0x82, 0x49, 0x0F, 0xDA, 0xA1)))
|
|
|
|
assertThat(Mflpt5.fromNumber(3.141592653589793), equalTo(Mflpt5(0x82, 0x49, 0x0F, 0xDA, 0xA2)))
|
|
|
|
assertThat(Mflpt5.fromNumber(32768), equalTo(Mflpt5(0x90, 0x00, 0x00, 0x00, 0x00)))
|
|
|
|
assertThat(Mflpt5.fromNumber(-32768), equalTo(Mflpt5(0x90, 0x80, 0x00, 0x00, 0x00)))
|
|
|
|
assertThat(Mflpt5.fromNumber(1), equalTo(Mflpt5(0x81, 0x00, 0x00, 0x00, 0x00)))
|
|
|
|
assertThat(Mflpt5.fromNumber(0.7071067812), equalTo(Mflpt5(0x80, 0x35, 0x04, 0xF3, 0x34)))
|
|
|
|
assertThat(Mflpt5.fromNumber(0.7071067811865476), equalTo(Mflpt5(0x80, 0x35, 0x04, 0xF3, 0x33)))
|
|
|
|
assertThat(Mflpt5.fromNumber(1.4142135624), equalTo(Mflpt5(0x81, 0x35, 0x04, 0xF3, 0x34)))
|
|
|
|
assertThat(Mflpt5.fromNumber(1.4142135623730951), equalTo(Mflpt5(0x81, 0x35, 0x04, 0xF3, 0x33)))
|
|
|
|
assertThat(Mflpt5.fromNumber(-.5), equalTo(Mflpt5(0x80, 0x80, 0x00, 0x00, 0x00)))
|
|
|
|
assertThat(Mflpt5.fromNumber(0.69314718061), equalTo(Mflpt5(0x80, 0x31, 0x72, 0x17, 0xF8)))
|
|
|
|
assertThat(Mflpt5.fromNumber(0.6931471805599453), equalTo(Mflpt5(0x80, 0x31, 0x72, 0x17, 0xF7)))
|
|
|
|
assertThat(Mflpt5.fromNumber(10), equalTo(Mflpt5(0x84, 0x20, 0x00, 0x00, 0x00)))
|
|
|
|
assertThat(Mflpt5.fromNumber(1000000000), equalTo(Mflpt5(0x9E, 0x6E, 0x6B, 0x28, 0x00)))
|
|
|
|
assertThat(Mflpt5.fromNumber(.5), equalTo(Mflpt5(0x80, 0x00, 0x00, 0x00, 0x00)))
|
|
|
|
assertThat(Mflpt5.fromNumber(1.4426950408889634), equalTo(Mflpt5(0x81, 0x38, 0xAA, 0x3B, 0x29)))
|
|
|
|
assertThat(Mflpt5.fromNumber(1.5707963267948966), equalTo(Mflpt5(0x81, 0x49, 0x0F, 0xDA, 0xA2)))
|
|
|
|
assertThat(Mflpt5.fromNumber(6.283185307179586), equalTo(Mflpt5(0x83, 0x49, 0x0F, 0xDA, 0xA2)))
|
|
|
|
assertThat(Mflpt5.fromNumber(.25), equalTo(Mflpt5(0x7F, 0x00, 0x00, 0x00, 0x00)))
|
|
|
|
assertThat(Mflpt5.fromNumber(123.45678e22), equalTo(Mflpt5(0xd1, 0x02, 0xb7, 0x06, 0xfb)))
|
|
|
|
assertThat(Mflpt5.fromNumber(-123.45678e-22), equalTo(Mflpt5(0x3e, 0xe9, 0x34, 0x09, 0x1b)))
|
2018-08-16 23:47:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testFloatRange() {
|
2018-08-30 21:07:50 +00:00
|
|
|
assertThat(Mflpt5.fromNumber(FLOAT_MAX_POSITIVE), equalTo(Mflpt5(0xff, 0x7f, 0xff, 0xff, 0xff)))
|
|
|
|
assertThat(Mflpt5.fromNumber(FLOAT_MAX_NEGATIVE), equalTo(Mflpt5(0xff, 0xff, 0xff, 0xff, 0xff)))
|
|
|
|
assertThat(Mflpt5.fromNumber(1.7e-38), equalTo(Mflpt5(0x03, 0x39, 0x1d, 0x15, 0x63)))
|
|
|
|
assertThat(Mflpt5.fromNumber(1.7e-39), equalTo(Mflpt5(0x00, 0x00, 0x00, 0x00, 0x00)))
|
|
|
|
assertThat(Mflpt5.fromNumber(-1.7e-38), equalTo(Mflpt5(0x03, 0xb9, 0x1d, 0x15, 0x63)))
|
|
|
|
assertThat(Mflpt5.fromNumber(-1.7e-39), equalTo(Mflpt5(0x00, 0x00, 0x00, 0x00, 0x00)))
|
|
|
|
assertFailsWith<CompilerException> { Mflpt5.fromNumber(1.7014118346e+38) }
|
|
|
|
assertFailsWith<CompilerException> { Mflpt5.fromNumber(-1.7014118346e+38) }
|
|
|
|
assertFailsWith<CompilerException> { Mflpt5.fromNumber(1.7014118347e+38) }
|
|
|
|
assertFailsWith<CompilerException> { Mflpt5.fromNumber(-1.7014118347e+38) }
|
2018-08-16 23:47:07 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 21:07:50 +00:00
|
|
|
@Test
|
|
|
|
fun testMflpt5ToFloat() {
|
2019-10-26 21:27:27 +00:00
|
|
|
val epsilon=0.000000001
|
2018-08-30 21:07:50 +00:00
|
|
|
assertThat(Mflpt5(0x00, 0x00, 0x00, 0x00, 0x00).toDouble(), equalTo(0.0))
|
2019-10-26 21:27:27 +00:00
|
|
|
assertThat(Mflpt5(0x82, 0x49, 0x0F, 0xDA, 0xA1).toDouble(), closeTo(3.141592653, epsilon))
|
|
|
|
assertThat(Mflpt5(0x82, 0x49, 0x0F, 0xDA, 0xA2).toDouble(), closeTo(3.141592653589793, epsilon))
|
2018-08-30 21:07:50 +00:00
|
|
|
assertThat(Mflpt5(0x90, 0x00, 0x00, 0x00, 0x00).toDouble(), equalTo(32768.0))
|
|
|
|
assertThat(Mflpt5(0x90, 0x80, 0x00, 0x00, 0x00).toDouble(), equalTo(-32768.0))
|
|
|
|
assertThat(Mflpt5(0x81, 0x00, 0x00, 0x00, 0x00).toDouble(), equalTo(1.0))
|
2019-10-26 21:27:27 +00:00
|
|
|
assertThat(Mflpt5(0x80, 0x35, 0x04, 0xF3, 0x34).toDouble(), closeTo(0.7071067812, epsilon))
|
|
|
|
assertThat(Mflpt5(0x80, 0x35, 0x04, 0xF3, 0x33).toDouble(), closeTo(0.7071067811865476, epsilon))
|
|
|
|
assertThat(Mflpt5(0x81, 0x35, 0x04, 0xF3, 0x34).toDouble(), closeTo(1.4142135624, epsilon))
|
|
|
|
assertThat(Mflpt5(0x81, 0x35, 0x04, 0xF3, 0x33).toDouble(), closeTo(1.4142135623730951, epsilon))
|
2018-08-30 21:07:50 +00:00
|
|
|
assertThat(Mflpt5(0x80, 0x80, 0x00, 0x00, 0x00).toDouble(), equalTo(-.5))
|
2019-10-26 21:27:27 +00:00
|
|
|
assertThat(Mflpt5(0x80, 0x31, 0x72, 0x17, 0xF8).toDouble(), closeTo(0.69314718061, epsilon))
|
|
|
|
assertThat(Mflpt5(0x80, 0x31, 0x72, 0x17, 0xF7).toDouble(), closeTo(0.6931471805599453, epsilon))
|
2018-08-30 21:07:50 +00:00
|
|
|
assertThat(Mflpt5(0x84, 0x20, 0x00, 0x00, 0x00).toDouble(), equalTo(10.0))
|
|
|
|
assertThat(Mflpt5(0x9E, 0x6E, 0x6B, 0x28, 0x00).toDouble(), equalTo(1000000000.0))
|
|
|
|
assertThat(Mflpt5(0x80, 0x00, 0x00, 0x00, 0x00).toDouble(), equalTo(.5))
|
2019-10-26 21:27:27 +00:00
|
|
|
assertThat(Mflpt5(0x81, 0x38, 0xAA, 0x3B, 0x29).toDouble(), closeTo(1.4426950408889634, epsilon))
|
|
|
|
assertThat(Mflpt5(0x81, 0x49, 0x0F, 0xDA, 0xA2).toDouble(), closeTo(1.5707963267948966, epsilon))
|
|
|
|
assertThat(Mflpt5(0x83, 0x49, 0x0F, 0xDA, 0xA2).toDouble(), closeTo(6.283185307179586, epsilon))
|
2018-08-30 21:07:50 +00:00
|
|
|
assertThat(Mflpt5(0x7F, 0x00, 0x00, 0x00, 0x00).toDouble(), equalTo(.25))
|
|
|
|
assertThat(Mflpt5(0xd1, 0x02, 0xb7, 0x06, 0xfb).toDouble(), closeTo(123.45678e22, 1.0e15))
|
2019-10-26 21:27:27 +00:00
|
|
|
assertThat(Mflpt5(0x3e, 0xe9, 0x34, 0x09, 0x1b).toDouble(), closeTo(-123.45678e-22, epsilon))
|
2018-08-30 21:07:50 +00:00
|
|
|
}
|
2018-08-16 23:47:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-10 00:58:41 +00:00
|
|
|
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
|
2018-08-16 21:10:28 +00:00
|
|
|
class TestZeropage {
|
2020-03-14 22:47:26 +00:00
|
|
|
|
|
|
|
private val errors = ErrorReporter()
|
|
|
|
|
2018-08-16 21:10:28 +00:00
|
|
|
@Test
|
|
|
|
fun testNames() {
|
2018-10-08 22:01:53 +00:00
|
|
|
val zp = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.BASICSAFE, emptyList(), false))
|
2018-08-16 21:10:28 +00:00
|
|
|
|
2020-03-14 22:47:26 +00:00
|
|
|
zp.allocate("", DataType.UBYTE, null, errors)
|
|
|
|
zp.allocate("", DataType.UBYTE, null, errors)
|
|
|
|
zp.allocate("varname", DataType.UBYTE, null, errors)
|
2018-08-16 21:10:28 +00:00
|
|
|
assertFailsWith<AssertionError> {
|
2020-03-14 22:47:26 +00:00
|
|
|
zp.allocate("varname", DataType.UBYTE, null, errors)
|
2018-08-16 21:10:28 +00:00
|
|
|
}
|
2020-03-14 22:47:26 +00:00
|
|
|
zp.allocate("varname2", DataType.UBYTE, null, errors)
|
2018-08-16 21:10:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testZpFloatEnable() {
|
2018-10-08 22:01:53 +00:00
|
|
|
val zp = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.FULL, emptyList(), false))
|
2018-08-16 23:47:07 +00:00
|
|
|
assertFailsWith<CompilerException> {
|
2020-03-14 22:47:26 +00:00
|
|
|
zp.allocate("", DataType.FLOAT, null, errors)
|
2018-08-16 21:10:28 +00:00
|
|
|
}
|
2019-08-04 20:44:20 +00:00
|
|
|
val zp2 = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.DONTUSE, emptyList(), true))
|
|
|
|
assertFailsWith<CompilerException> {
|
2020-03-14 22:47:26 +00:00
|
|
|
zp2.allocate("", DataType.FLOAT, null, errors)
|
2019-08-04 20:44:20 +00:00
|
|
|
}
|
|
|
|
val zp3 = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.FLOATSAFE, emptyList(), true))
|
2020-03-14 22:47:26 +00:00
|
|
|
zp3.allocate("", DataType.FLOAT, null, errors)
|
2018-08-16 21:10:28 +00:00
|
|
|
}
|
|
|
|
|
2019-02-09 16:29:59 +00:00
|
|
|
@Test
|
|
|
|
fun testZpModesWithFloats() {
|
|
|
|
C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.FULL, emptyList(), false))
|
|
|
|
C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.KERNALSAFE, emptyList(), false))
|
|
|
|
C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.BASICSAFE, emptyList(), false))
|
|
|
|
C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.FLOATSAFE, emptyList(), false))
|
|
|
|
C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.BASICSAFE, emptyList(), true))
|
|
|
|
C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.FLOATSAFE, emptyList(), true))
|
|
|
|
assertFailsWith<CompilerException> {
|
|
|
|
C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.FULL, emptyList(), true))
|
|
|
|
}
|
|
|
|
assertFailsWith<CompilerException> {
|
|
|
|
C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.KERNALSAFE, emptyList(), true))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-11 19:30:13 +00:00
|
|
|
@Test
|
|
|
|
fun testZpDontuse() {
|
|
|
|
val zp = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.DONTUSE, emptyList(), false))
|
|
|
|
println(zp.free)
|
|
|
|
assertEquals(0, zp.available())
|
|
|
|
assertFailsWith<CompilerException> {
|
2020-03-14 22:47:26 +00:00
|
|
|
zp.allocate("", DataType.BYTE, null, errors)
|
2019-08-11 19:30:13 +00:00
|
|
|
}
|
|
|
|
}
|
2019-08-04 19:38:14 +00:00
|
|
|
|
2018-08-16 21:10:28 +00:00
|
|
|
@Test
|
2018-09-06 19:13:49 +00:00
|
|
|
fun testFreeSpaces() {
|
2018-10-08 22:01:53 +00:00
|
|
|
val zp1 = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.BASICSAFE, emptyList(), true))
|
2019-08-04 20:44:20 +00:00
|
|
|
assertEquals(16, zp1.available())
|
2019-02-09 16:29:59 +00:00
|
|
|
val zp2 = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.FLOATSAFE, emptyList(), false))
|
2019-08-04 20:44:20 +00:00
|
|
|
assertEquals(91, zp2.available())
|
2019-02-09 16:29:59 +00:00
|
|
|
val zp3 = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.KERNALSAFE, emptyList(), false))
|
2019-08-04 20:44:20 +00:00
|
|
|
assertEquals(125, zp3.available())
|
2019-02-09 16:29:59 +00:00
|
|
|
val zp4 = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.FULL, emptyList(), false))
|
|
|
|
assertEquals(238, zp4.available())
|
2018-09-06 19:13:49 +00:00
|
|
|
}
|
|
|
|
|
2018-10-08 22:01:53 +00:00
|
|
|
@Test
|
|
|
|
fun testReservedSpace() {
|
2019-02-09 16:29:59 +00:00
|
|
|
val zp1 = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.FULL, emptyList(), false))
|
2018-12-07 23:27:12 +00:00
|
|
|
assertEquals(238, zp1.available())
|
2018-10-08 22:01:53 +00:00
|
|
|
assertTrue(50 in zp1.free)
|
|
|
|
assertTrue(100 in zp1.free)
|
|
|
|
assertTrue(49 in zp1.free)
|
|
|
|
assertTrue(101 in zp1.free)
|
|
|
|
assertTrue(200 in zp1.free)
|
|
|
|
assertTrue(255 in zp1.free)
|
|
|
|
assertTrue(199 in zp1.free)
|
2019-02-09 16:29:59 +00:00
|
|
|
val zp2 = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.FULL, listOf(50 .. 100, 200..255), false))
|
2018-10-08 22:01:53 +00:00
|
|
|
assertEquals(139, zp2.available())
|
|
|
|
assertFalse(50 in zp2.free)
|
|
|
|
assertFalse(100 in zp2.free)
|
|
|
|
assertTrue(49 in zp2.free)
|
|
|
|
assertTrue(101 in zp2.free)
|
|
|
|
assertFalse(200 in zp2.free)
|
|
|
|
assertFalse(255 in zp2.free)
|
|
|
|
assertTrue(199 in zp2.free)
|
|
|
|
}
|
|
|
|
|
2018-09-06 19:13:49 +00:00
|
|
|
@Test
|
|
|
|
fun testBasicsafeAllocation() {
|
2018-10-08 22:01:53 +00:00
|
|
|
val zp = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.BASICSAFE, emptyList(), true))
|
2019-08-04 20:44:20 +00:00
|
|
|
assertEquals(16, zp.available())
|
2018-09-06 19:13:49 +00:00
|
|
|
|
2019-01-27 00:02:45 +00:00
|
|
|
assertFailsWith<ZeropageDepletedError> {
|
2019-08-04 20:44:20 +00:00
|
|
|
// in regular zp there aren't 5 sequential bytes free
|
2020-03-14 22:47:26 +00:00
|
|
|
zp.allocate("", DataType.FLOAT, null, errors)
|
2018-08-16 21:10:28 +00:00
|
|
|
}
|
2018-09-06 19:13:49 +00:00
|
|
|
|
2018-08-16 21:10:28 +00:00
|
|
|
for (i in 0 until zp.available()) {
|
2020-03-14 22:47:26 +00:00
|
|
|
val loc = zp.allocate("", DataType.UBYTE, null, errors)
|
2018-09-06 19:13:49 +00:00
|
|
|
assertTrue(loc > 0)
|
2018-08-16 21:10:28 +00:00
|
|
|
}
|
2018-09-06 19:13:49 +00:00
|
|
|
assertEquals(0, zp.available())
|
2019-01-27 00:02:45 +00:00
|
|
|
assertFailsWith<ZeropageDepletedError> {
|
2020-03-14 22:47:26 +00:00
|
|
|
zp.allocate("", DataType.UBYTE, null, errors)
|
2018-08-16 21:10:28 +00:00
|
|
|
}
|
2019-01-27 00:02:45 +00:00
|
|
|
assertFailsWith<ZeropageDepletedError> {
|
2020-03-14 22:47:26 +00:00
|
|
|
zp.allocate("", DataType.UWORD, null, errors)
|
2018-08-16 21:10:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-10 00:58:41 +00:00
|
|
|
@Test
|
2018-08-16 21:10:28 +00:00
|
|
|
fun testFullAllocation() {
|
2019-02-09 16:29:59 +00:00
|
|
|
val zp = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.FULL, emptyList(), false))
|
2018-12-07 23:27:12 +00:00
|
|
|
assertEquals(238, zp.available())
|
2020-03-14 22:47:26 +00:00
|
|
|
val loc = zp.allocate("", DataType.UWORD, null, errors)
|
2018-09-06 19:13:49 +00:00
|
|
|
assertTrue(loc > 3)
|
2018-09-30 12:19:41 +00:00
|
|
|
assertFalse(loc in zp.free)
|
2019-02-09 16:29:59 +00:00
|
|
|
val num = zp.available() / 2
|
2018-08-16 21:10:28 +00:00
|
|
|
|
2018-12-16 02:38:17 +00:00
|
|
|
for(i in 0..num-4) {
|
2020-03-14 22:47:26 +00:00
|
|
|
zp.allocate("", DataType.UWORD, null, errors)
|
2018-08-16 21:10:28 +00:00
|
|
|
}
|
2019-02-09 16:29:59 +00:00
|
|
|
assertEquals(6,zp.available())
|
2018-08-16 21:10:28 +00:00
|
|
|
|
2019-01-27 00:02:45 +00:00
|
|
|
assertFailsWith<ZeropageDepletedError> {
|
2018-08-16 21:10:28 +00:00
|
|
|
// can't allocate because no more sequential bytes, only fragmented
|
2020-03-14 22:47:26 +00:00
|
|
|
zp.allocate("", DataType.UWORD, null, errors)
|
2018-08-16 21:10:28 +00:00
|
|
|
}
|
|
|
|
|
2019-02-09 16:29:59 +00:00
|
|
|
for(i in 0..5) {
|
2020-03-14 22:47:26 +00:00
|
|
|
zp.allocate("", DataType.UBYTE, null, errors)
|
2018-08-16 21:10:28 +00:00
|
|
|
}
|
|
|
|
|
2019-02-09 16:29:59 +00:00
|
|
|
assertEquals(0, zp.available())
|
2019-01-27 00:02:45 +00:00
|
|
|
assertFailsWith<ZeropageDepletedError> {
|
2018-08-16 21:10:28 +00:00
|
|
|
// no more space
|
2020-03-14 22:47:26 +00:00
|
|
|
zp.allocate("", DataType.UBYTE, null, errors)
|
2018-08-16 21:10:28 +00:00
|
|
|
}
|
2018-08-10 00:58:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
2018-08-16 21:10:28 +00:00
|
|
|
fun testEfficientAllocation() {
|
2018-10-08 22:01:53 +00:00
|
|
|
val zp = C64Zeropage(CompilationOptions(OutputType.RAW, LauncherType.NONE, ZeropageType.BASICSAFE, emptyList(), true))
|
2019-08-04 20:44:20 +00:00
|
|
|
assertEquals(16, zp.available())
|
2020-03-14 22:47:26 +00:00
|
|
|
assertEquals(0x04, zp.allocate("", DataType.WORD, null, errors))
|
|
|
|
assertEquals(0x06, zp.allocate("", DataType.UBYTE, null, errors))
|
|
|
|
assertEquals(0x0a, zp.allocate("", DataType.UBYTE, null, errors))
|
|
|
|
assertEquals(0x94, zp.allocate("", DataType.UWORD, null, errors))
|
|
|
|
assertEquals(0xa7, zp.allocate("", DataType.UWORD, null, errors))
|
|
|
|
assertEquals(0xa9, zp.allocate("", DataType.UWORD, null, errors))
|
|
|
|
assertEquals(0xb5, zp.allocate("", DataType.UWORD, null, errors))
|
|
|
|
assertEquals(0xf7, zp.allocate("", DataType.UWORD, null, errors))
|
|
|
|
assertEquals(0x0e, zp.allocate("", DataType.UBYTE, null, errors))
|
|
|
|
assertEquals(0xf9, zp.allocate("", DataType.UBYTE, null, errors))
|
2018-09-06 19:13:49 +00:00
|
|
|
assertEquals(0, zp.available())
|
2018-08-10 00:58:41 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-31 16:32:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
|
|
|
|
class TestPetscii {
|
|
|
|
|
2019-06-26 00:34:43 +00:00
|
|
|
@Test
|
|
|
|
fun testZero() {
|
|
|
|
assertThat(Petscii.encodePetscii("\u0000", true), equalTo(listOf<Short>(0)))
|
|
|
|
assertThat(Petscii.encodePetscii("\u0000", false), equalTo(listOf<Short>(0)))
|
|
|
|
assertThat(Petscii.decodePetscii(listOf(0), true), equalTo("\u0000"))
|
|
|
|
assertThat(Petscii.decodePetscii(listOf(0), false), equalTo("\u0000"))
|
|
|
|
}
|
|
|
|
|
2018-08-31 16:32:33 +00:00
|
|
|
@Test
|
|
|
|
fun testLowercase() {
|
|
|
|
assertThat(Petscii.encodePetscii("hello WORLD 123 @!£", true), equalTo(
|
2018-09-02 17:20:06 +00:00
|
|
|
listOf<Short>(72, 69, 76, 76, 79, 32, 0xd7, 0xcf, 0xd2, 0xcc, 0xc4, 32, 49, 50, 51, 32, 64, 33, 0x5c)))
|
|
|
|
assertThat(Petscii.encodePetscii("\uf11a", true), equalTo(listOf<Short>(0x12))) // reverse vid
|
|
|
|
assertThat(Petscii.encodePetscii("✓", true), equalTo(listOf<Short>(0xfa)))
|
2018-12-14 22:15:44 +00:00
|
|
|
assertFailsWith<CharConversionException> { Petscii.encodePetscii("π", true) }
|
|
|
|
assertFailsWith<CharConversionException> { Petscii.encodePetscii("♥", true) }
|
2018-08-31 16:32:33 +00:00
|
|
|
|
2018-09-02 09:54:42 +00:00
|
|
|
assertThat(Petscii.decodePetscii(listOf(72, 0xd7, 0x5c, 0xfa, 0x12), true), equalTo("hW£✓\uF11A"))
|
|
|
|
assertFailsWith<ArrayIndexOutOfBoundsException> { Petscii.decodePetscii(listOf(-1), true) }
|
|
|
|
assertFailsWith<ArrayIndexOutOfBoundsException> { Petscii.decodePetscii(listOf(256), true) }
|
2018-08-31 16:32:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testUppercase() {
|
|
|
|
assertThat(Petscii.encodePetscii("HELLO 123 @!£"), equalTo(
|
2018-09-02 17:20:06 +00:00
|
|
|
listOf<Short>(72, 69, 76, 76, 79, 32, 49, 50, 51, 32, 64, 33, 0x5c)))
|
|
|
|
assertThat(Petscii.encodePetscii("\uf11a"), equalTo(listOf<Short>(0x12))) // reverse vid
|
|
|
|
assertThat(Petscii.encodePetscii("♥"), equalTo(listOf<Short>(0xd3)))
|
|
|
|
assertThat(Petscii.encodePetscii("π"), equalTo(listOf<Short>(0xff)))
|
2018-12-14 22:15:44 +00:00
|
|
|
assertFailsWith<CharConversionException> { Petscii.encodePetscii("✓") }
|
2018-08-31 16:32:33 +00:00
|
|
|
|
2018-09-02 09:54:42 +00:00
|
|
|
assertThat(Petscii.decodePetscii(listOf(72, 0x5c, 0xd3, 0xff)), equalTo("H£♥π"))
|
|
|
|
assertFailsWith<ArrayIndexOutOfBoundsException> { Petscii.decodePetscii(listOf(-1)) }
|
|
|
|
assertFailsWith<ArrayIndexOutOfBoundsException> { Petscii.decodePetscii(listOf(256)) }
|
2018-08-31 16:32:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testScreencodeLowercase() {
|
|
|
|
assertThat(Petscii.encodeScreencode("hello WORLD 123 @!£", true), equalTo(
|
2018-09-02 17:20:06 +00:00
|
|
|
listOf<Short>(0x08, 0x05, 0x0c, 0x0c, 0x0f, 0x20, 0x57, 0x4f, 0x52, 0x4c, 0x44, 0x20, 0x31, 0x32, 0x33, 0x20, 0x00, 0x21, 0x1c)
|
2018-08-31 16:32:33 +00:00
|
|
|
))
|
2018-09-02 17:20:06 +00:00
|
|
|
assertThat(Petscii.encodeScreencode("✓", true), equalTo(listOf<Short>(0x7a)))
|
2018-12-14 22:15:44 +00:00
|
|
|
assertFailsWith<CharConversionException> { Petscii.encodeScreencode("♥", true) }
|
|
|
|
assertFailsWith<CharConversionException> { Petscii.encodeScreencode("π", true) }
|
2018-08-31 16:32:33 +00:00
|
|
|
|
2018-09-02 09:54:42 +00:00
|
|
|
assertThat(Petscii.decodeScreencode(listOf(0x08, 0x57, 0x1c, 0x7a), true), equalTo("hW£✓"))
|
|
|
|
assertFailsWith<ArrayIndexOutOfBoundsException> { Petscii.decodeScreencode(listOf(-1), true) }
|
|
|
|
assertFailsWith<ArrayIndexOutOfBoundsException> { Petscii.decodeScreencode(listOf(256), true) }
|
2018-08-31 16:32:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testScreencodeUppercase() {
|
|
|
|
assertThat(Petscii.encodeScreencode("WORLD 123 @!£"), equalTo(
|
2018-09-02 17:20:06 +00:00
|
|
|
listOf<Short>(0x17, 0x0f, 0x12, 0x0c, 0x04, 0x20, 0x31, 0x32, 0x33, 0x20, 0x00, 0x21, 0x1c)))
|
|
|
|
assertThat(Petscii.encodeScreencode("♥"), equalTo(listOf<Short>(0x53)))
|
|
|
|
assertThat(Petscii.encodeScreencode("π"), equalTo(listOf<Short>(0x5e)))
|
2018-12-14 22:15:44 +00:00
|
|
|
assertFailsWith<CharConversionException> { Petscii.encodeScreencode("✓") }
|
|
|
|
assertFailsWith<CharConversionException> { Petscii.encodeScreencode("hello") }
|
2018-08-31 16:32:33 +00:00
|
|
|
|
2018-09-02 09:54:42 +00:00
|
|
|
assertThat(Petscii.decodeScreencode(listOf(0x17, 0x1c, 0x53, 0x5e)), equalTo("W£♥π"))
|
|
|
|
assertFailsWith<ArrayIndexOutOfBoundsException> { Petscii.decodeScreencode(listOf(-1)) }
|
|
|
|
assertFailsWith<ArrayIndexOutOfBoundsException> { Petscii.decodeScreencode(listOf(256)) }
|
2018-08-31 16:32:33 +00:00
|
|
|
}
|
2018-09-19 23:13:21 +00:00
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testLiteralValueComparisons() {
|
2019-07-14 22:26:06 +00:00
|
|
|
val ten = NumericLiteralValue(DataType.UWORD, 10, Position("", 0, 0, 0))
|
|
|
|
val nine = NumericLiteralValue(DataType.UBYTE, 9, Position("", 0, 0, 0))
|
2019-01-20 16:45:57 +00:00
|
|
|
assertEquals(ten, ten)
|
|
|
|
assertNotEquals(ten, nine)
|
2018-09-19 23:13:21 +00:00
|
|
|
assertFalse(ten != ten)
|
|
|
|
assertTrue(ten != nine)
|
|
|
|
|
|
|
|
assertTrue(ten > nine)
|
|
|
|
assertTrue(ten >= nine)
|
|
|
|
assertTrue(ten >= ten)
|
|
|
|
assertFalse(ten > ten)
|
|
|
|
|
|
|
|
assertFalse(ten < nine)
|
|
|
|
assertFalse(ten <= nine)
|
|
|
|
assertTrue(ten <= ten)
|
|
|
|
assertFalse(ten < ten)
|
|
|
|
|
2020-03-10 23:32:50 +00:00
|
|
|
val abc = StringLiteralValue("abc", false, Position("", 0, 0, 0))
|
|
|
|
val abd = StringLiteralValue("abd", false, Position("", 0, 0, 0))
|
2019-01-20 16:45:57 +00:00
|
|
|
assertEquals(abc, abc)
|
2018-09-19 23:13:21 +00:00
|
|
|
assertTrue(abc!=abd)
|
|
|
|
assertFalse(abc!=abc)
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testStackvmValueComparisons() {
|
2019-08-19 21:49:06 +00:00
|
|
|
val ten = RuntimeValueNumeric(DataType.FLOAT, 10)
|
|
|
|
val nine = RuntimeValueNumeric(DataType.UWORD, 9)
|
2019-01-20 16:45:57 +00:00
|
|
|
assertEquals(ten, ten)
|
|
|
|
assertNotEquals(ten, nine)
|
2018-09-19 23:13:21 +00:00
|
|
|
assertFalse(ten != ten)
|
|
|
|
assertTrue(ten != nine)
|
|
|
|
|
|
|
|
assertTrue(ten > nine)
|
|
|
|
assertTrue(ten >= nine)
|
|
|
|
assertTrue(ten >= ten)
|
|
|
|
assertFalse(ten > ten)
|
|
|
|
|
|
|
|
assertFalse(ten < nine)
|
|
|
|
assertFalse(ten <= nine)
|
|
|
|
assertTrue(ten <= ten)
|
|
|
|
assertFalse(ten < ten)
|
|
|
|
}
|
2018-08-31 16:32:33 +00:00
|
|
|
}
|