From 991993357c902eaab56726bef97e7494674aa5e5 Mon Sep 17 00:00:00 2001 From: Maran Date: Sat, 14 Mar 2015 11:39:35 +0100 Subject: DRY up the use of fromHex and put it in ethutil --- ethutil/common_test.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'ethutil/common_test.go') diff --git a/ethutil/common_test.go b/ethutil/common_test.go index c2b6077e9..20064b1e7 100644 --- a/ethutil/common_test.go +++ b/ethutil/common_test.go @@ -1,8 +1,10 @@ package ethutil import ( + "bytes" "math/big" "os" + "testing" checker "gopkg.in/check.v1" ) @@ -66,3 +68,22 @@ func (s *CommonSuite) TestLarge(c *checker.C) { c.Assert(adalarge, checker.Equals, "10000E7 Einstein") c.Assert(weilarge, checker.Equals, "100 Babbage") } + +//fromHex +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) + } +} -- cgit v1.2.3