-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcrypto_test.go
184 lines (162 loc) · 3.96 KB
/
crypto_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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
package hawk
import (
"testing"
)
func TestMac_String(t *testing.T) {
for _, tc := range []struct {
name string
uri string
expect string
}{
{
name: "non-encoded uri",
uri: "http://example.com:8000/resource/1?b=1&a=2",
expect: "6R4rV5iE+NPoym+WwjeHzjAGXUtLNIxmo1vpMofpLAE=", // expected value is reference from https://github.com/hueniverse/hawk#protocol-example
},
{
name: "encoded uri",
uri: "http://example.com:8000/resource/x%2Fy%2Fz?b=1&a=2",
expect: "nurs0/PPVGhFt9v2gzBP4BCRQwzQJwPuIQKLYjoVIQ0=",
},
} {
t.Run(tc.name, func(t *testing.T) {
m := &Mac{
Type: Header,
Credential: &Credential{
ID: "dh37fgj492je",
Key: "werxhqb98rpaxn39848xrunpaw3489ruxnpa98w4rxn",
Alg: SHA256,
},
Uri: tc.uri,
Method: "GET",
Option: &Option{
TimeStamp: int64(1353832234),
Nonce: "j4h3g2",
Ext: "some-app-ext-data",
},
}
act, err := m.String()
if err != nil {
t.Error("got an error", err.Error())
}
if act != tc.expect {
t.Errorf("invalid mac: actual=%v, expect=%v", act, tc.expect)
}
})
}
}
func TestMac_String_With_CustomHost(t *testing.T) {
m1 := &Mac{
Type: Header,
Credential: &Credential{
ID: "dh37fgj492je",
Key: "werxhqb98rpaxn39848xrunpaw3489ruxnpa98w4rxn",
Alg: SHA256,
},
Uri: "http://www.example.com/resource/1?b=1&a=2",
HostPort: "example.com:8000",
Method: "GET",
Option: &Option{
TimeStamp: int64(1353832234),
Nonce: "j4h3g2",
Ext: "some-app-ext-data",
},
}
act1, err := m1.String()
if err != nil {
t.Error("got an error", err.Error())
}
expect1 := "6R4rV5iE+NPoym+WwjeHzjAGXUtLNIxmo1vpMofpLAE="
if act1 != expect1 {
t.Error("invalid mac.")
}
// specified HostPort String.
m2 := &Mac{
Type: Header,
Credential: &Credential{
ID: "dh37fgj492je",
Key: "werxhqb98rpaxn39848xrunpaw3489ruxnpa98w4rxn",
Alg: SHA256,
},
Uri: "http://www.example.com/resource/1?b=1&a=2",
HostPort: "example.com",
Method: "GET",
Option: &Option{
TimeStamp: int64(1353832234),
Nonce: "j4h3g2",
Ext: "some-app-ext-data",
},
}
act2, err := m2.String()
if err != nil {
t.Error("got an error", err.Error())
}
expect2 := "fmzTiKheFFqAeWWoVIt6vIflByB9X8TeYQjCdvq9bf4="
if act2 != expect2 {
t.Error("invalid mac.")
}
// specified App and Dlg
m3 := &Mac{
Type: Header,
Credential: &Credential{
ID: "dh37fgj492je",
Key: "werxhqb98rpaxn39848xrunpaw3489ruxnpa98w4rxn",
Alg: SHA256,
},
Uri: "http://example.com:8080/resource/1?b=1&a=2",
Method: "GET",
Option: &Option{
TimeStamp: int64(1353832234),
Nonce: "j4h3g2",
Ext: "some-app-ext-data",
App: "some-app-id",
Dlg: "some-dlg",
},
}
act3, err := m3.String()
if err != nil {
t.Error("got an error", err.Error())
}
expect3 := "3glACULyTDnGSBEBpkFbRxRTFSXauan/Jk7NpA1MKl0="
if act3 != expect3 {
t.Error("invalid mac.")
}
}
func TestTsMac_String(t *testing.T) {
tm := &TsMac{
TimeStamp: 1365741469,
Credential: &Credential{
ID: "123456",
Key: "2983d45yun89q",
Alg: SHA256,
},
}
act := tm.String()
expect := "h/Ff6XI1euObD78ZNflapvLKXGuaw1RiLI4Q6Q5sAbM="
if act != expect {
t.Error("Invalid TsMac result")
}
}
func TestPayloadHash_String(t *testing.T) {
h := &PayloadHash{
ContentType: "text/plain",
Payload: "Thank you for flying Hawk",
Alg: SHA256,
}
// expected value is reference from https://github.com/hueniverse/hawk#payload-validation
expect := "Yi9LfIIFRtBEPt74PVmbTF/xVAwPn7ub15ePICfgnuY="
actual := h.String()
if actual != expect {
t.Error("invalid payload hash string.")
}
h2 := &PayloadHash{
ContentType: "text/plain; charset=utf-8",
Payload: "Thank you for flying Hawk",
Alg: SHA256,
}
// expected value shouldn't change from ContentType changing
actual2 := h2.String()
if actual2 != expect {
t.Error("invalid payload hash string when given ContentType with parameters.")
}
}