-
Notifications
You must be signed in to change notification settings - Fork 4
/
client_test.go
281 lines (254 loc) · 6.86 KB
/
client_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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
package hawk
import (
"testing"
"fmt"
"net/http"
"net/http/httptest"
"net/url"
"strings"
"time"
)
func TestClient_Header(t *testing.T) {
c1 := NewClient(
&Credential{
ID: "test-id",
Key: "test-key",
Alg: SHA256,
},
&Option{
TimeStamp: time.Now().Unix(),
Nonce: "xyz123",
Ext: "sample-ext-string",
},
)
url1 := "https://example.com/test/hawk"
act1, err := c1.Header("GET", url1)
if err != nil {
t.Error("got an error,", err.Error())
}
if !strings.Contains(act1, "Hawk") {
t.Error("actual not contains 'Authorization: Hawk'")
}
if !strings.Contains(act1, "id=") {
t.Error("actual not contains 'id' attribute")
}
if !strings.Contains(act1, "ts=") {
t.Error("actual not contains 'ts' attribute")
}
if !strings.Contains(act1, "nonce=") {
t.Error("actual not contains 'nonce' attribute")
}
if !strings.Contains(act1, "ext=") {
t.Error("actual not contains 'ext=' attribute")
}
// specified payload
c2 := NewClient(
&Credential{
ID: "test-id",
Key: "test-key",
Alg: SHA256,
},
&Option{
TimeStamp: time.Now().Unix(),
Nonce: "xyz123",
Ext: "sample-ext-string",
ContentType: "text/plain",
Payload: "something to write about",
},
)
url2 := "http://example.net/somewhere/over/the/rainbow"
act2, err := c2.Header("POST", url2)
if err != nil {
t.Error("got an error,", err.Error())
}
if !strings.Contains(act2, "Hawk") {
t.Error("actual not contains 'Authorization: Hawk'")
}
if !strings.Contains(act2, "id=") {
t.Error("actual not contains 'id' attribute")
}
if !strings.Contains(act2, "ts=") {
t.Error("actual not contains 'ts' attribute")
}
if !strings.Contains(act2, "nonce=") {
t.Error("actual not contains 'nonce' attribute")
}
if !strings.Contains(act2, "ext=") {
t.Error("actual not contains 'ext=' attribute")
}
if !strings.Contains(act2, "hash=") {
t.Error("actual not contains 'hash=' attribute")
}
// specified app and dlg param
c3 := NewClient(
&Credential{
ID: "test-id",
Key: "test-key",
Alg: SHA256,
},
&Option{
TimeStamp: time.Now().Unix(),
Nonce: "xyz123",
Ext: "sample-ext-string",
ContentType: "text/plain",
Payload: "something to write about",
App: "some-app-id",
Dlg: "some-dlg",
},
)
url3 := "http://example.net/somewhere/over/the/rainbow"
act3, err := c3.Header("POST", url3)
if err != nil {
t.Error("got an error,", err.Error())
}
if !strings.Contains(act3, "Hawk") {
t.Error("actual not contains 'Authorization: Hawk'")
}
if !strings.Contains(act3, "id=") {
t.Error("actual not contains 'id' attribute")
}
if !strings.Contains(act3, "ts=") {
t.Error("actual not contains 'ts' attribute")
}
if !strings.Contains(act3, "nonce=") {
t.Error("actual not contains 'nonce' attribute")
}
if !strings.Contains(act3, "ext=") {
t.Error("actual not contains 'ext=' attribute")
}
if !strings.Contains(act3, "hash=") {
t.Error("actual not contains 'hash=' attribute")
}
if !strings.Contains(act3, "app=") {
t.Error("actual not contains 'app=' attribute")
}
if !strings.Contains(act3, "dlg=") {
t.Error("actual not contains 'dlg=' attribute")
}
}
func TestClient_Authenticate(t *testing.T) {
mockedURL := &url.URL{
Scheme: "http",
Host: "example.com:8080",
Path: "/resource/4",
RawQuery: "filter=a",
}
ts := int64(1453070933)
// GET
var mockedHttpServer = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Server-Authorization", `Hawk mac="eQVGuMTYgG3ePysLXDnYMSECjvhdGyZX5VPIunNUyJ8=", ext="response-specific"`)
})
s := httptest.NewServer(mockedHttpServer)
defer s.Close()
r, _ := http.Get(s.URL)
r.Request.URL = mockedURL
c := NewClient(
&Credential{
ID: "123456",
Key: "werxhqb98rpaxn39848xrunpaw3489ruxnpa98w4rxn",
Alg: SHA256,
},
&Option{
TimeStamp: ts,
Nonce: "3hOHpR",
Ext: "some-app-data",
},
)
act, _ := c.Authenticate(r)
if act != true {
t.Error("failed to authenticate server response.")
}
// POST
var mockedHttpServer1 = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/plain; charset=utf-8")
w.Header().Set("Server-Authorization", `Hawk mac="odsVGUq0rCoITaiNagW22REIpqkwP9zt5FyqqOW9Zj8=", hash="f9cDF/TDm7TkYRLnGwRMfeDzT6LixQVLvrIKhh0vgmM=", ext="response-specific"`)
fmt.Fprintf(w, "\n")
})
s1 := httptest.NewServer(mockedHttpServer1)
defer s1.Close()
r1, _ := http.PostForm(s1.URL, nil)
r1.Request.URL = mockedURL
c1 := NewClient(
&Credential{
ID: "123456",
Key: "werxhqb98rpaxn39848xrunpaw3489ruxnpa98w4rxn",
Alg: SHA256,
},
&Option{
TimeStamp: ts,
Nonce: "3hOHpR",
Ext: "some-app-data",
ContentType: "text/plain",
Payload: "some reply",
},
)
act1, _ := c1.Authenticate(r1)
if act1 != true {
t.Error("failed to authenticate server response.")
}
}
func TestClient_Authenticate_Fail(t *testing.T) {
mockedURL := &url.URL{
Scheme: "http",
Host: "example.com:8080",
Path: "/resource/4",
RawQuery: "filter=a",
}
ts := int64(1453070933)
// calculate mac with different credential.key
var mockedHttpServer2 = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/plain")
w.Header().Set("Server-Authorization", `Hawk mac="odsVGUq0rCoITaiNagW22REIpqkwP9zt5FyqqOW9Zj8=", hash="f9cDF/TDm7TkYRLnGwRMfeDzT6LixQVLvrIKhh0vgmM=", ext="response-specific"`)
fmt.Fprintf(w, "some reply\n")
})
s2 := httptest.NewServer(mockedHttpServer2)
defer s2.Close()
r2, _ := http.PostForm(s2.URL, nil)
r2.Request.URL = mockedURL
c2 := NewClient(
&Credential{
ID: "123456",
Key: "some-key",
Alg: SHA256,
},
&Option{
TimeStamp: ts,
Nonce: "3hOHpR",
Ext: "some-app-data",
ContentType: "text/plain",
Payload: "some reply",
},
)
act2, _ := c2.Authenticate(r2)
if act2 != false {
t.Error("expected authenticate failed, but actual is successful.")
}
// invalid hash value specified
var mockedHttpServer3 = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/plain")
w.Header().Set("Server-Authorization", `Hawk mac="odsVGUq0rCoITaiNagW22REIpqkwP9zt5FyqqOW9Zj8=", hash="f9cDF/TDm7TkYRLnGwRMfeDzT6LixQVLvrIKhh0vgmM=", ext="response-specific"`)
fmt.Fprintf(w, "some reply\n")
})
s3 := httptest.NewServer(mockedHttpServer3)
defer s3.Close()
r3, _ := http.PostForm(s3.URL, nil)
r3.Request.URL = mockedURL
c3 := NewClient(
&Credential{
ID: "123456",
Key: "werxhqb98rpaxn39848xrunpaw3489ruxnpa98w4rxn",
Alg: SHA256,
},
&Option{
TimeStamp: ts,
Nonce: "3hOHpR",
Ext: "some-app-data",
ContentType: "text/plain",
Payload: "invalid some reply",
},
)
act3, _ := c3.Authenticate(r3)
if act3 != false {
t.Error("expected authenticate failed, but actual is successful.")
}
}