aboutsummaryrefslogtreecommitdiffstats
path: root/common/bytes_test.go
blob: 97dd34d159deead7f1f1bba00d245acdb34e42d9 (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
// 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 common

import (
    "bytes"
    "testing"

    checker "gopkg.in/check.v1"
)

type BytesSuite struct{}

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

func (s *BytesSuite) TestCopyBytes(c *checker.C) {
    data1 := []byte{1, 2, 3, 4}
    exp1 := []byte{1, 2, 3, 4}
    res1 := CopyBytes(data1)
    c.Assert(res1, checker.DeepEquals, exp1)
}

func (s *BytesSuite) TestLeftPadBytes(c *checker.C) {
    val1 := []byte{1, 2, 3, 4}
    exp1 := []byte{0, 0, 0, 0, 1, 2, 3, 4}

    res1 := LeftPadBytes(val1, 8)
    res2 := LeftPadBytes(val1, 2)

    c.Assert(res1, checker.DeepEquals, exp1)
    c.Assert(res2, checker.DeepEquals, val1)
}

func (s *BytesSuite) TestRightPadBytes(c *checker.C) {
    val := []byte{1, 2, 3, 4}
    exp := []byte{1, 2, 3, 4, 0, 0, 0, 0}

    resstd := RightPadBytes(val, 8)
    resshrt := RightPadBytes(val, 2)

    c.Assert(resstd, checker.DeepEquals, exp)
    c.Assert(resshrt, checker.DeepEquals, val)
}

func TestFromHex(t *testing.T) {
    input := "0x01"
    expected := []byte{1}
    result := FromHex(input)
    if !bytes.Equal(expected, result) {
        t.Errorf("Expected %x got %x", expected, result)
    }
}

func TestIsHex(t *testing.T) {
    tests := []struct {
        input string
        ok    bool
    }{
        {"", true},
        {"0", false},
        {"00", true},
        {"a9e67e", true},
        {"A9E67E", true},
        {"0xa9e67e", false},
        {"a9e67e001", false},
        {"0xHELLO_MY_NAME_IS_STEVEN_@#$^&*", false},
    }
    for _, test := range tests {
        if ok := isHex(test.input); ok != test.ok {
            t.Errorf("isHex(%q) = %v, want %v", test.input, ok, test.ok)
        }
    }
}

func TestFromHexOddLength(t *testing.T) {
    input := "0x1"
    expected := []byte{1}
    result := FromHex(input)
    if !bytes.Equal(expected, result) {
        t.Errorf("Expected %x got %x", expected, result)
    }
}

func TestNoPrefixShortHexOddLength(t *testing.T) {
    input := "1"
    expected := []byte{1}
    result := FromHex(input)
    if !bytes.Equal(expected, result) {
        t.Errorf("Expected %x got %x", expected, result)
    }
}