diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-22 20:32:52 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-22 20:32:52 +0800 |
commit | 08b21acff1ca397e775e926e0f9a96deaa9820fd (patch) | |
tree | c7d0c97159b8d54ac04bc03c2e3b8f85b3c4e241 /common/bytes_test.go | |
parent | 9682a3ef3ec72a871708a9bba1133fa59b58ccb5 (diff) | |
download | dexon-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar dexon-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.gz dexon-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.bz2 dexon-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.lz dexon-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.xz dexon-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.zst dexon-08b21acff1ca397e775e926e0f9a96deaa9820fd.zip |
Move ToHex/FromHex into bytes
Diffstat (limited to 'common/bytes_test.go')
-rw-r--r-- | common/bytes_test.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/common/bytes_test.go b/common/bytes_test.go index ec106bf4b..4b00aa49b 100644 --- a/common/bytes_test.go +++ b/common/bytes_test.go @@ -1,6 +1,9 @@ package common import ( + "bytes" + "testing" + checker "gopkg.in/check.v1" ) @@ -191,3 +194,21 @@ func (s *BytesSuite) TestRightPadString(c *checker.C) { c.Assert(resstd, checker.Equals, exp) c.Assert(resshrt, checker.Equals, val) } + +func TestFromHex(t *testing.T) { + input := "0x01" + expected := []byte{1} + result := FromHex(input) + if bytes.Compare(expected, result) != 0 { + t.Errorf("Expected % x got % x", expected, result) + } +} + +func TestFromHexOddLength(t *testing.T) { + input := "0x1" + expected := []byte{1} + result := FromHex(input) + if bytes.Compare(expected, result) != 0 { + t.Errorf("Expected % x got % x", expected, result) + } +} |