diff options
author | zelig <viktor.tron@gmail.com> | 2014-06-29 23:26:58 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-06-29 23:26:58 +0800 |
commit | 707d413761927f5ad95298e666e297b820ad0901 (patch) | |
tree | 347ffb4f9e1c6694cf1d2b1d5892e297c98d2e94 /ethutil/encoding_test.go | |
parent | 4be3521727698141512eb6454121302bd3b9cc6d (diff) | |
download | dexon-707d413761927f5ad95298e666e297b820ad0901.tar dexon-707d413761927f5ad95298e666e297b820ad0901.tar.gz dexon-707d413761927f5ad95298e666e297b820ad0901.tar.bz2 dexon-707d413761927f5ad95298e666e297b820ad0901.tar.lz dexon-707d413761927f5ad95298e666e297b820ad0901.tar.xz dexon-707d413761927f5ad95298e666e297b820ad0901.tar.zst dexon-707d413761927f5ad95298e666e297b820ad0901.zip |
refactor ethutil/trie to ethtrie
Diffstat (limited to 'ethutil/encoding_test.go')
-rw-r--r-- | ethutil/encoding_test.go | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/ethutil/encoding_test.go b/ethutil/encoding_test.go deleted file mode 100644 index 10e1995c0..000000000 --- a/ethutil/encoding_test.go +++ /dev/null @@ -1,67 +0,0 @@ -package ethutil - -import ( - "fmt" - "testing" -) - -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)) - } -} - -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) - } -} - -func TestCompactDecode(t *testing.T) { - exp := []int{1, 2, 3, 4, 5} - res := CompactDecode("\x11\x23\x45") - - if !CompareIntSlice(res, exp) { - t.Error("odd compact decode. Expected", exp, "got", res) - } - - exp = []int{0, 1, 2, 3, 4, 5} - res = CompactDecode("\x00\x01\x23\x45") - - if !CompareIntSlice(res, exp) { - t.Error("even compact decode. Expected", exp, "got", res) - } - - exp = []int{0, 15, 1, 12, 11, 8 /*term*/, 16} - res = CompactDecode("\x20\x0f\x1c\xb8") - - if !CompareIntSlice(res, exp) { - t.Error("even terminated compact decode. Expected", exp, "got", res) - } - - exp = []int{15, 1, 12, 11, 8 /*term*/, 16} - res = CompactDecode("\x3f\x1c\xb8") - - if !CompareIntSlice(res, exp) { - t.Error("even terminated compact decode. Expected", exp, "got", res) - } -} |