-
Notifications
You must be signed in to change notification settings - Fork 5
/
type_marshaljson_test.go
123 lines (97 loc) · 2.47 KB
/
type_marshaljson_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
package hashuri
import (
"testing"
)
func TestTypeMarshalJSON(t *testing.T) {
tests := []struct{
Value Type
Expected string
}{
{
Value: Type{},
Expected: `"hash:"`,
},
{
Value: Type{
Algorithm: "md5",
},
Expected: `"hash://md5/"`,
},
{
Value: Type{
Algorithm: "sha1",
},
Expected: `"hash://sha1/"`,
},
{
Value: Type{
Algorithm: "sha256",
},
Expected: `"hash://sha256/"`,
},
{
Value: Type{
Hash: "0ba904eae8773b70c75333db4de2f3ac45a8ad4ddba1b242f0b3cfc199391dd8",
},
Expected: `"hash:/0ba904eae8773b70c75333db4de2f3ac45a8ad4ddba1b242f0b3cfc199391dd8"`,
},
{
Value: Type{
RawQuery: "apple=one&banana=۲&cherry=3",
},
Expected: `"hash:?apple=one\u0026banana=۲\u0026cherry=3"`,
},
{
Value: Type{
Fragment: "over-there",
},
Expected: `"hash:#over-there"`,
},
{
Value: Type{
Algorithm: "sha256",
Hash: "0ba904eae8773b70c75333db4de2f3ac45a8ad4ddba1b242f0b3cfc199391dd8",
RawQuery: "apple=one&banana=۲&cherry=3",
Fragment: "over-there",
},
Expected: `"hash://sha256/0ba904eae8773b70c75333db4de2f3ac45a8ad4ddba1b242f0b3cfc199391dd8?apple=one\u0026banana=۲\u0026cherry=3#over-there"`,
},
{
Value: Type{
Algorithm: "sha256",
Hash: "0ba904eae8773b70c75333db4de2f3ac45a8ad4ddba1b242f0b3cfc199391dd8",
RawQuery: "apple=one&banana=۲&cherry=3",
},
Expected: `"hash://sha256/0ba904eae8773b70c75333db4de2f3ac45a8ad4ddba1b242f0b3cfc199391dd8?apple=one\u0026banana=۲\u0026cherry=3"`,
},
{
Value: Type{
Algorithm: "sha256",
Hash: "0ba904eae8773b70c75333db4de2f3ac45a8ad4ddba1b242f0b3cfc199391dd8",
Fragment: "over-there",
},
Expected: `"hash://sha256/0ba904eae8773b70c75333db4de2f3ac45a8ad4ddba1b242f0b3cfc199391dd8#over-there"`,
},
{
Value: Type{
Algorithm: "sha256",
Hash: "0ba904eae8773b70c75333db4de2f3ac45a8ad4ddba1b242f0b3cfc199391dd8",
},
Expected: `"hash://sha256/0ba904eae8773b70c75333db4de2f3ac45a8ad4ddba1b242f0b3cfc199391dd8"`,
},
}
for testNumber, test := range tests {
actualBytes, err := test.Value.MarshalJSON()
if nil != err {
t.Errorf("For test #%d, did not expect an error, but actually got one: (%T) %q", testNumber, err, err)
continue
}
actual := string(actualBytes)
if expected := test.Expected; expected != actual {
t.Errorf("For test #%d,...", testNumber)
t.Errorf("\texpected: %q", expected)
t.Errorf("\tactual: %q", actual)
continue
}
}
}