aboutsummaryrefslogtreecommitdiffstats
path: root/trie/encoding_test.go
blob: 2f125ef2f8228ad66366ffd71168c4a57a1e1bc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// Copyright 2014 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package trie

import (
    "encoding/hex"
    "testing"

    checker "gopkg.in/check.v1"
)

func TestEncoding(t *testing.T) { checker.TestingT(t) }

type TrieEncodingSuite struct{}

var _ = checker.Suite(&TrieEncodingSuite{})

func (s *TrieEncodingSuite) TestCompactEncode(c *checker.C) {
    // even compact encode
    test1 := []byte{1, 2, 3, 4, 5}
    res1 := compactEncode(test1)
    c.Assert(res1, checker.DeepEquals, []byte("\x11\x23\x45"))

    // odd compact encode
    test2 := []byte{0, 1, 2, 3, 4, 5}
    res2 := compactEncode(test2)
    c.Assert(res2, checker.DeepEquals, []byte("\x00\x01\x23\x45"))

    //odd terminated compact encode
    test3 := []byte{0, 15, 1, 12, 11, 8 /*term*/, 16}
    res3 := compactEncode(test3)
    c.Assert(res3, checker.DeepEquals, []byte("\x20\x0f\x1c\xb8"))

    // even terminated compact encode
    test4 := []byte{15, 1, 12, 11, 8 /*term*/, 16}
    res4 := compactEncode(test4)
    c.Assert(res4, checker.DeepEquals, []byte("\x3f\x1c\xb8"))
}

func (s *TrieEncodingSuite) TestCompactHexDecode(c *checker.C) {
    exp := []byte{7, 6, 6, 5, 7, 2, 6, 2, 16}
    res := compactHexDecode([]byte("verb"))
    c.Assert(res, checker.DeepEquals, exp)
}

func (s *TrieEncodingSuite) TestCompactHexEncode(c *checker.C) {
    exp := []byte("verb")
    res := compactHexEncode([]byte{7, 6, 6, 5, 7, 2, 6, 2, 16})
    c.Assert(res, checker.DeepEquals, exp)
}

func (s *TrieEncodingSuite) TestCompactDecode(c *checker.C) {
    // odd compact decode
    exp := []byte{1, 2, 3, 4, 5}
    res := compactDecode([]byte("\x11\x23\x45"))
    c.Assert(res, checker.DeepEquals, exp)

    // even compact decode
    exp = []byte{0, 1, 2, 3, 4, 5}
    res = compactDecode([]byte("\x00\x01\x23\x45"))
    c.Assert(res, checker.DeepEquals, exp)

    // even terminated compact decode
    exp = []byte{0, 15, 1, 12, 11, 8 /*term*/, 16}
    res = compactDecode([]byte("\x20\x0f\x1c\xb8"))
    c.Assert(res, checker.DeepEquals, exp)

    // even terminated compact decode
    exp = []byte{15, 1, 12, 11, 8 /*term*/, 16}
    res = compactDecode([]byte("\x3f\x1c\xb8"))
    c.Assert(res, checker.DeepEquals, exp)
}

func (s *TrieEncodingSuite) TestDecodeCompact(c *checker.C) {
    exp, _ := hex.DecodeString("012345")
    res := decodeCompact([]byte{0, 1, 2, 3, 4, 5})
    c.Assert(res, checker.DeepEquals, exp)

    exp, _ = hex.DecodeString("012345")
    res = decodeCompact([]byte{0, 1, 2, 3, 4, 5, 16})
    c.Assert(res, checker.DeepEquals, exp)

    exp, _ = hex.DecodeString("abcdef")
    res = decodeCompact([]byte{10, 11, 12, 13, 14, 15})
    c.Assert(res, checker.DeepEquals, exp)
}

func BenchmarkCompactEncode(b *testing.B) {

    testBytes := []byte{0, 15, 1, 12, 11, 8 /*term*/, 16}
    for i := 0; i < b.N; i++ {
        compactEncode(testBytes)
    }
}

func BenchmarkCompactDecode(b *testing.B) {
    testBytes := []byte{0, 15, 1, 12, 11, 8 /*term*/, 16}
    for i := 0; i < b.N; i++ {
        compactDecode(testBytes)
    }
}

func BenchmarkCompactHexDecode(b *testing.B) {
    testBytes := []byte{7, 6, 6, 5, 7, 2, 6, 2, 16}
    for i := 0; i < b.N; i++ {
        compactHexDecode(testBytes)
    }
}

func BenchmarkDecodeCompact(b *testing.B) {
    testBytes := []byte{7, 6, 6, 5, 7, 2, 6, 2, 16}
    for i := 0; i < b.N; i++ {
        decodeCompact(testBytes)
    }
}