aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/test.effekt109
1 files changed, 55 insertions, 54 deletions
diff --git a/src/test.effekt b/src/test.effekt
index 7048bab..c64b7c4 100644
--- a/src/test.effekt
+++ b/src/test.effekt
@@ -6,66 +6,67 @@ import src/renderer
import bytearray
import array
-// Mock renderer for testing
-def makeMockRenderer() = {
- var screen: Array[Bool] = allocate(32 *64)
- var lastKey: String = "P"
- var beeping: Bool = false
- new Renderer {
- def init(run: (ByteArray) => Unit at {io, global}) = ()
- def clear() = screen = allocate(32 *64)
- def draw(x: Int, y: Int, color: String) = {
- screen.get(y).set(x, color == "white")
- }
- def fill(color: String) = {
- screen = allocate(32 *64, color == "white")
- }
- def get(x: Int, y: Int): Bool = screen(y)(x)
- def update(f: () => Unit at {io, global}) = ()
- def log(msg: String) = ()
- def getKeyPressed() = Some(lastKey)
- def beep() = { beeping = true }
- def stopBeep() = { beeping = false }
- }
-}
+// // Mock renderer for testing
+// def makeMockRenderer() = {
+// var screen: Array[Bool] = allocate(32 *64)
+// var lastKey: String = "P"
+// var beeping: Bool = false
+// new Renderer {
+// def init(run: (ByteArray) => Unit at {io, global}) = ()
+// def clear() = screen = allocate(32 *64)
+// def draw(x: Int, y: Int, color: String) = {
+// screen.get(y).set(x, color == "white")
+// }
+// def fill(color: String) = {
+// screen = allocate(32 *64, color == "white")
+// }
+// def get(x: Int, y: Int): Bool = screen(y)(x)
+// def update(f: () => Unit at {io, global}) = ()
+// def log(msg: String) = ()
+// def getKeyPressed() = Some(lastKey)
+// def beep() = { beeping = true }
+// def stopBeep() = { beeping = false }
+// }
+// }
def main() = mainSuite("CHIP-8") {
// CPU Tests
- test("Key conversion") {
- assertEqual(convertKey("1"), 1)
- assertEqual(convertKey("2"), 2)
- assertEqual(convertKey("v"), 15)
- assertEqual(convertKey("invalid"), -1)
+ // test("Key conversion") {
+ // assertEqual(convertKey("1"), 1)
+ // assertEqual(convertKey("2"), 2)
+ // assertEqual(convertKey("v"), 15)
+ // assertEqual(convertKey("invalid"), -1)
- test("CPU initialization") {
- val renderer = makeMockRenderer()
- val cpu = makeCPU() { renderer }
- val testRom = allocate(10)
- cpu.initCPU(testRom)
- // Add assertions here for initial state
- }
+ // test("CPU initialization") {
+ // val renderer = makeMockRenderer()
+ // val cpu = makeCPU() { renderer }
+ // val testRom = allocate(10)
+ // cpu.initCPU(testRom)
+ // // Add assertions here for initial state
+ // }
- test("Basic instructions") {
- val renderer = makeMockRenderer()
- val cpu = makeCPU() { renderer }
- val testRom = allocate(4)
- // Set up a simple instruction in ROM
- testRom.unsafeSet(0, 96) // 0x60
- testRom.unsafeSet(1, 66) // 0x42
- cpu.initCPU(testRom)
- cpu.cycleCPU()
+ // test("Basic instructions") {
+ // val renderer = makeMockRenderer()
+ // val cpu = makeCPU() { renderer }
+ // val testRom = allocate(4)
+ // // Set up a simple instruction in ROM
+ // testRom.unsafeSet(0, 96) // 0x60
+ // testRom.unsafeSet(1, 66) // 0x42
+ // cpu.initCPU(testRom)
+ // cpu.cycleCPU()
- }
- }
+ // }
+ // }
- // Renderer Tests
+ // // Renderer Tests
- test("Screen operations") {
- val renderer = makeMockRenderer()
- renderer.clear()
- renderer.draw(0, 0, "white")
- assert(renderer.get(0, 0))
- renderer.draw(0, 0, "black")
- assert(renderer.get(0, 0), false)
- }
+ // test("Screen operations") {
+ // val renderer = makeMockRenderer()
+ // renderer.clear()
+ // renderer.draw(0, 0, "white")
+ // assert(renderer.get(0, 0))
+ // renderer.draw(0, 0, "black")
+ // assert(renderer.get(0, 0), false)
+ // }
+ ()
} \ No newline at end of file