2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
|
|
|
// go-ethereum 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.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2014-10-31 13:45:03 +00:00
|
|
|
package trie
|
2014-02-14 22:56:09 +00:00
|
|
|
|
|
|
|
import (
|
2014-11-14 21:01:52 +00:00
|
|
|
checker "gopkg.in/check.v1"
|
2014-02-14 22:56:09 +00:00
|
|
|
)
|
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
type TrieEncodingSuite struct{}
|
|
|
|
|
|
|
|
var _ = checker.Suite(&TrieEncodingSuite{})
|
|
|
|
|
|
|
|
func (s *TrieEncodingSuite) TestCompactEncode(c *checker.C) {
|
|
|
|
// even compact encode
|
2014-10-10 15:00:06 +00:00
|
|
|
test1 := []byte{1, 2, 3, 4, 5}
|
2014-11-14 21:01:52 +00:00
|
|
|
res1 := CompactEncode(test1)
|
|
|
|
c.Assert(res1, checker.Equals, "\x11\x23\x45")
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
// odd compact encode
|
2014-10-10 15:00:06 +00:00
|
|
|
test2 := []byte{0, 1, 2, 3, 4, 5}
|
2014-11-14 21:01:52 +00:00
|
|
|
res2 := CompactEncode(test2)
|
|
|
|
c.Assert(res2, checker.Equals, "\x00\x01\x23\x45")
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
//odd terminated compact encode
|
2014-10-10 15:00:06 +00:00
|
|
|
test3 := []byte{0, 15, 1, 12, 11, 8 /*term*/, 16}
|
2014-11-14 21:01:52 +00:00
|
|
|
res3 := CompactEncode(test3)
|
|
|
|
c.Assert(res3, checker.Equals, "\x20\x0f\x1c\xb8")
|
2014-02-14 22:56:09 +00:00
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
// even terminated compact encode
|
2014-10-10 15:00:06 +00:00
|
|
|
test4 := []byte{15, 1, 12, 11, 8 /*term*/, 16}
|
2014-11-14 21:01:52 +00:00
|
|
|
res4 := CompactEncode(test4)
|
|
|
|
c.Assert(res4, checker.Equals, "\x3f\x1c\xb8")
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
func (s *TrieEncodingSuite) TestCompactHexDecode(c *checker.C) {
|
2014-10-10 15:00:06 +00:00
|
|
|
exp := []byte{7, 6, 6, 5, 7, 2, 6, 2, 16}
|
2014-02-14 22:56:09 +00:00
|
|
|
res := CompactHexDecode("verb")
|
2014-11-14 21:01:52 +00:00
|
|
|
c.Assert(res, checker.DeepEquals, exp)
|
2014-02-14 22:56:09 +00:00
|
|
|
}
|
2014-02-17 23:46:16 +00:00
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
func (s *TrieEncodingSuite) TestCompactDecode(c *checker.C) {
|
|
|
|
// odd compact decode
|
2014-10-10 15:00:06 +00:00
|
|
|
exp := []byte{1, 2, 3, 4, 5}
|
2014-02-17 23:46:16 +00:00
|
|
|
res := CompactDecode("\x11\x23\x45")
|
2014-11-14 21:01:52 +00:00
|
|
|
c.Assert(res, checker.DeepEquals, exp)
|
2014-02-17 23:46:16 +00:00
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
// even compact decode
|
2014-10-10 15:00:06 +00:00
|
|
|
exp = []byte{0, 1, 2, 3, 4, 5}
|
2014-02-17 23:46:16 +00:00
|
|
|
res = CompactDecode("\x00\x01\x23\x45")
|
2014-11-14 21:01:52 +00:00
|
|
|
c.Assert(res, checker.DeepEquals, exp)
|
2014-02-17 23:46:16 +00:00
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
// even terminated compact decode
|
2014-10-10 15:00:06 +00:00
|
|
|
exp = []byte{0, 15, 1, 12, 11, 8 /*term*/, 16}
|
2014-02-17 23:46:16 +00:00
|
|
|
res = CompactDecode("\x20\x0f\x1c\xb8")
|
2014-11-14 21:01:52 +00:00
|
|
|
c.Assert(res, checker.DeepEquals, exp)
|
2014-02-17 23:46:16 +00:00
|
|
|
|
2014-11-14 21:01:52 +00:00
|
|
|
// even terminated compact decode
|
2014-10-10 15:00:06 +00:00
|
|
|
exp = []byte{15, 1, 12, 11, 8 /*term*/, 16}
|
2014-02-17 23:46:16 +00:00
|
|
|
res = CompactDecode("\x3f\x1c\xb8")
|
2014-11-14 21:01:52 +00:00
|
|
|
c.Assert(res, checker.DeepEquals, exp)
|
2014-06-26 17:45:57 +00:00
|
|
|
}
|