diff options
author | obscuren <obscuren@obscura.com> | 2013-12-30 06:50:43 +0800 |
---|---|---|
committer | obscuren <obscuren@obscura.com> | 2013-12-30 06:50:43 +0800 |
commit | 74bc45116aa1c5d0e549f522dccefc58356c1410 (patch) | |
tree | b1a26b5b02170fad1146a610bcab4ee136def502 /encoding_test.go | |
parent | a1c5d5acac542ab877aeec7814338e7638d55dbf (diff) | |
download | go-tangerine-74bc45116aa1c5d0e549f522dccefc58356c1410.tar go-tangerine-74bc45116aa1c5d0e549f522dccefc58356c1410.tar.gz go-tangerine-74bc45116aa1c5d0e549f522dccefc58356c1410.tar.bz2 go-tangerine-74bc45116aa1c5d0e549f522dccefc58356c1410.tar.lz go-tangerine-74bc45116aa1c5d0e549f522dccefc58356c1410.tar.xz go-tangerine-74bc45116aa1c5d0e549f522dccefc58356c1410.tar.zst go-tangerine-74bc45116aa1c5d0e549f522dccefc58356c1410.zip |
Encoding helpers with tests
Diffstat (limited to 'encoding_test.go')
-rw-r--r-- | encoding_test.go | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/encoding_test.go b/encoding_test.go new file mode 100644 index 000000000..63f7878bf --- /dev/null +++ b/encoding_test.go @@ -0,0 +1,50 @@ +package main + +import ( + "testing" + "fmt" +) + +func TestCompactEncode(t *testing.T) { + test1 := []int{1,2,3,4,5} + if res := CompactEncode(test1); res != "\x11\x23\x45" { + t.Error(fmt.Sprintf("even compact encode failed. Got: %q", res)) + } + + test2 := []int{0, 1, 2, 3, 4, 5} + if res := CompactEncode(test2); res != "\x00\x01\x23\x45" { + t.Error(fmt.Sprintf("odd compact encode failed. Got: %q", res)) + } + + test3 := []int{0, 15, 1, 12, 11, 8, /*term*/16} + if res := CompactEncode(test3); res != "\x20\x0f\x1c\xb8" { + t.Error(fmt.Sprintf("odd terminated compact encode failed. Got: %q", res)) + } + + test4 := []int{15, 1, 12, 11, 8, /*term*/16} + if res := CompactEncode(test4); res != "\x3f\x1c\xb8" { + t.Error(fmt.Sprintf("even terminated compact encode failed. Got: %q", res)) + } +} + +// Helper function for comparing slices +func CompareIntSlice(a, b []int) bool { + if len(a) != len(b) { + return false + } + for i, v := range a { + if v != b[i] { + return false + } + } + return true +} + +func TestCompactHexDecode(t *testing.T) { + exp := []int{7, 6, 6, 5, 7, 2, 6, 2, 16} + res := CompactHexDecode("verb") + + if !CompareIntSlice(res, exp) { + t.Error("Error compact hex decode. Expected", exp, "got", res) + } +} |