quorum/rlp_test.go

36 lines
779 B
Go
Raw Normal View History

package main
import (
"testing"
"fmt"
)
func TestEncode(t *testing.T) {
strRes := "Cdog"
2013-12-27 14:48:44 -08:00
bytes := Encode("dog")
str := string(bytes)
if str != strRes {
t.Error(fmt.Sprintf("Expected %q, got %q", strRes, str))
}
2013-12-27 14:48:44 -08:00
dec,_ := Decode(bytes, 0)
fmt.Printf("raw: %v encoded: %q == %v\n", dec, str, "dog")
2013-12-27 14:48:44 -08:00
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))
}
2013-12-27 14:48:44 -08:00
dec,_ = Decode(bytes, 0)
fmt.Printf("raw: %v encoded: %q == %v\n", dec, slice, strs)
}
2013-12-27 17:24:01 -08:00
func BenchmarkEncodeDecode(b *testing.B) {
for i := 0; i < b.N; i++ {
bytes := Encode([]string{"dog", "god", "cat"})
Decode(bytes, 0)
}
}