diff options
author | obscuren <geffobscura@gmail.com> | 2014-01-12 23:50:43 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-01-12 23:50:43 +0800 |
commit | fedbd9a962b2e800afe2e191d768f47172172741 (patch) | |
tree | cfa698cc0b89289af414a92c10de8f5cb827c477 /rlp_test.go | |
parent | 12c0e827032f2c8de12bac0738116a51b3816cdb (diff) | |
download | go-tangerine-fedbd9a962b2e800afe2e191d768f47172172741.tar go-tangerine-fedbd9a962b2e800afe2e191d768f47172172741.tar.gz go-tangerine-fedbd9a962b2e800afe2e191d768f47172172741.tar.bz2 go-tangerine-fedbd9a962b2e800afe2e191d768f47172172741.tar.lz go-tangerine-fedbd9a962b2e800afe2e191d768f47172172741.tar.xz go-tangerine-fedbd9a962b2e800afe2e191d768f47172172741.tar.zst go-tangerine-fedbd9a962b2e800afe2e191d768f47172172741.zip |
Rlp integer fix
Diffstat (limited to 'rlp_test.go')
-rw-r--r-- | rlp_test.go | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/rlp_test.go b/rlp_test.go deleted file mode 100644 index 65cf34b39..000000000 --- a/rlp_test.go +++ /dev/null @@ -1,54 +0,0 @@ -package main - -import ( - "fmt" - "testing" -) - -func TestEncode(t *testing.T) { - strRes := "Cdog" - - bytes := Encode("dog") - - str := string(bytes) - if str != strRes { - t.Error(fmt.Sprintf("Expected %q, got %q", strRes, str)) - } - //dec,_ := Decode(bytes, 0) - - sliceRes := "\x83CdogCgodCcat" - strs := []string{"dog", "god", "cat"} - bytes = Encode(strs) - slice := string(bytes) - if slice != sliceRes { - t.Error(fmt.Sprintf("Expected %q, got %q", sliceRes, slice)) - } - - //dec,_ = Decode(bytes, 0) -} - -func TestMultiEncode(t *testing.T) { - inter := []interface{}{ - []interface{}{ - "1", "2", "3", - }, - []string{ - "string", - "string2", - "\x86A0J1234567890A\x00B20A0\x82F395843F657986", - "\x86A0J1234567890A\x00B20A0\x8cF395843F657986I335612448F524099H16716881A0H13114947G2039362G1507139H16719697G1048387E65360", - }, - "test", - } - - bytes := Encode(inter) - - Decode(bytes, 0) -} - -func BenchmarkEncodeDecode(b *testing.B) { - for i := 0; i < b.N; i++ { - bytes := Encode([]string{"dog", "god", "cat"}) - Decode(bytes, 0) - } -} |