diff options
author | obscuren <obscuren@obscura.com> | 2013-12-26 19:45:52 +0800 |
---|---|---|
committer | obscuren <obscuren@obscura.com> | 2013-12-26 19:45:52 +0800 |
commit | 5db3335dce766bd679c54ea44f6df08a7ff74762 (patch) | |
tree | 75614c847fdc07150351e9aa02353d8f1d23196c /parsing_test.go | |
download | go-tangerine-5db3335dce766bd679c54ea44f6df08a7ff74762.tar.gz go-tangerine-5db3335dce766bd679c54ea44f6df08a7ff74762.tar.zst go-tangerine-5db3335dce766bd679c54ea44f6df08a7ff74762.zip |
Initial commit
Diffstat (limited to 'parsing_test.go')
-rw-r--r-- | parsing_test.go | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/parsing_test.go b/parsing_test.go new file mode 100644 index 000000000..93fe434b9 --- /dev/null +++ b/parsing_test.go @@ -0,0 +1,42 @@ +package main + +import ( + "testing" + "math" +) + +func TestCompile(t *testing.T) { + instr, err := CompileInstr("SET 10 1") + + if err != nil { + t.Error("Failed compiling instruction") + } + + calc := (67 + 10 * 256 + 1 * int64(math.Pow(256,2))) + if Big(instr).Int64() != calc { + t.Error("Expected", calc, ", got:", instr) + } +} + +func TestValidInstr(t *testing.T) { + op, args, err := Instr("68163") + if err != nil { + t.Error("Error decoding instruction") + } + + if op != oSET { + t.Error("Expected op to be 43, got:", op) + } + + if args[0] != "10" { + t.Error("Expect args[0] to be 10, got:", args[0]) + } + + if args[1] != "1" { + t.Error("Expected args[1] to be 1, got:", args[1]) + } +} + +func TestInvalidInstr(t *testing.T) { +} + |