-
Notifications
You must be signed in to change notification settings - Fork 3
/
hashentry_test.go
163 lines (157 loc) · 3.62 KB
/
hashentry_test.go
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package swid
import (
"encoding/base64"
"errors"
"testing"
"github.com/stretchr/testify/assert"
)
func TestHashEntry_UnmarshalJSON(t *testing.T) {
type TestVector struct {
val string
}
tests := []struct {
name string
testVector TestVector
expected HashEntry
expectedErr error
}{
{
name: "good stuff",
testVector: TestVector{
val: `"sha-256:3q2+7w=="`,
},
expected: HashEntry{
HashAlgID: 1,
HashValue: []byte{0xde, 0xad, 0xbe, 0xef},
},
expectedErr: nil,
},
{
name: "no match for alg",
testVector: TestVector{
val: `"sha0-512:3q2+7w=="`,
},
expected: HashEntry{},
expectedErr: errors.New("unknown hash algorithm sha0-512"),
},
{
name: "empty string",
testVector: TestVector{
val: `""`,
},
expected: HashEntry{},
expectedErr: errors.New("bad format: expecting <hash-alg-string>:<hash-value>"),
},
{
name: "empty algo and hash value",
testVector: TestVector{
val: `":"`,
},
expected: HashEntry{},
expectedErr: errors.New("bad format: expecting <hash-alg-string>:<hash-value>"),
},
{
name: "whitespaces",
testVector: TestVector{
val: `" : "`,
},
expected: HashEntry{},
expectedErr: errors.New("bad format: expecting <hash-alg-string>:<hash-value>"),
}, {
name: "excess material",
testVector: TestVector{
val: `"sha-256:3q2+7w==:EXCESS MATERIAL"`,
},
expected: HashEntry{},
expectedErr: errors.New("bad format: expecting <hash-alg-string>:<hash-value>"),
},
{
name: "missing algo",
testVector: TestVector{
val: `":3q2+7w=="`,
},
expected: HashEntry{},
expectedErr: errors.New("bad format: expecting <hash-alg-string>:<hash-value>"),
},
{
name: "missing hash value",
testVector: TestVector{
val: `"sha-256:"`,
},
expected: HashEntry{},
expectedErr: errors.New("bad format: expecting <hash-alg-string>:<hash-value>"),
},
{
name: "corrupt base64 for value",
testVector: TestVector{
val: `"sha-256:....Caligula...."`,
},
expected: HashEntry{},
expectedErr: base64.CorruptInputError(0),
},
{
name: "unexpected container",
testVector: TestVector{
val: `[ "sha-256", "3q2+7w==" ]`,
},
expected: HashEntry{},
expectedErr: errors.New("expecting string, found []interface {} instead"),
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
actual := HashEntry{}
err := actual.UnmarshalJSON([]byte(test.testVector.val))
assert.Equal(t, test.expectedErr, err)
if test.expectedErr == nil {
assert.Equal(t, test.expected, actual)
}
})
}
}
func TestHashEntry_MarshalJSON(t *testing.T) {
tests := []struct {
name string
testVector HashEntry
expected string
expectedErr error
}{
{
name: "good stuff",
testVector: HashEntry{
HashAlgID: 1,
HashValue: []byte{0xde, 0xad, 0xbe, 0xef},
},
expected: `"sha-256:3q2+7w=="`,
expectedErr: nil,
},
{
name: "unknown hash algo",
testVector: HashEntry{
HashAlgID: 1024,
HashValue: []byte{0xde, 0xad, 0xbe, 0xef},
},
expected: `__ignored__`,
expectedErr: errors.New("unknown hash algorithm ID 1024"),
},
{
name: "empty hash value",
testVector: HashEntry{
HashAlgID: 1,
HashValue: []byte{},
},
expected: `__ignored__`,
expectedErr: errors.New("empty hash value"),
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
u := test.testVector
actual, err := u.MarshalJSON()
assert.Equal(t, test.expectedErr, err)
if test.expectedErr == nil {
assert.JSONEq(t, test.expected, string(actual))
}
})
}
}