-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
cookie_test.go
298 lines (218 loc) · 7.17 KB
/
cookie_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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
package cookie
import (
"encoding/base64"
"net/http"
"net/http/httptest"
"testing"
)
var unsignedManager = NewManager()
var signedManager = NewManager(WithSigningKey([]byte("super-secret-key")))
func TestManager_Get(t *testing.T) {
r, _ := http.NewRequest(http.MethodGet, "/", nil)
cookieName := "myCookie"
cookieValue := "myValue"
r.AddCookie(&http.Cookie{Name: cookieName, Value: cookieValue})
value, err := unsignedManager.Get(r, cookieName)
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
if value != cookieValue {
t.Errorf("Expected value '%s', but got '%s'", cookieValue, value)
}
}
func TestManager_GetError(t *testing.T) {
r, _ := http.NewRequest(http.MethodGet, "/", nil)
cookieName := "myCookie"
_, err := unsignedManager.Get(r, cookieName)
if err == nil {
t.Error("Expected error, but got nil")
}
}
func TestManager_GetSigned(t *testing.T) {
r, _ := http.NewRequest(http.MethodGet, "/", nil)
cookieName := "myCookie"
expectedValue := "myValue"
cookieValue := signCookieValue(expectedValue, signedManager.signingKey)
r.AddCookie(&http.Cookie{Name: cookieName, Value: cookieValue})
value, err := signedManager.GetSigned(r, cookieName)
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
if value != expectedValue {
t.Errorf("Expected value '%s', but got '%s'", expectedValue, value)
}
}
func TestManager_GetSignedError(t *testing.T) {
r, _ := http.NewRequest(http.MethodGet, "/", nil)
cookieName := "myCookie"
_, err := signedManager.GetSigned(r, cookieName)
if err == nil {
t.Error("Expected error, but got nil")
}
}
func TestManager_GetSignedInvalidFormat(t *testing.T) {
r, _ := http.NewRequest(http.MethodGet, "/", nil)
cookieName := "myCookie"
cookieValue := "invalidFormat"
r.AddCookie(&http.Cookie{Name: cookieName, Value: cookieValue})
_, err := signedManager.GetSigned(r, cookieName)
if err == nil {
t.Error("Expected error, but got nil")
}
if err != ErrInvalidSignedCookieFormat {
t.Errorf("Expected error '%v', but got '%v'", ErrInvalidSignedCookieFormat, err)
}
}
func TestManager_GetSignedInvalidSignature(t *testing.T) {
r, _ := http.NewRequest(http.MethodGet, "/", nil)
cookieName := "myCookie"
expectedValue := "myValue"
data := base64.URLEncoding.EncodeToString([]byte(expectedValue))
signature := base64.URLEncoding.EncodeToString(sign([]byte("invalidData"), signedManager.signingKey))
cookieValue := data + "|" + signature
r.AddCookie(&http.Cookie{Name: cookieName, Value: cookieValue})
_, err := signedManager.GetSigned(r, cookieName)
if err == nil {
t.Error("Expected error, but got nil")
}
if err != ErrInvalidCookieSignature {
t.Errorf("Expected error '%v', but got '%v'", ErrInvalidCookieSignature, err)
}
}
func TestManager_GetSigned_Base64DataDecodeError(t *testing.T) {
r, _ := http.NewRequest(http.MethodGet, "/", nil)
cookieName := "myCookie"
cookieValue := "invalidBase64|invalidBase64"
r.AddCookie(&http.Cookie{Name: cookieName, Value: cookieValue})
_, err := signedManager.GetSigned(r, cookieName)
if err == nil {
t.Error("Expected error, but got nil")
}
expectedError := "illegal base64 data at input byte 12"
if err.Error() != expectedError {
t.Errorf("Expected error '%s', but got '%v'", expectedError, err)
}
}
func TestManager_GetSigned_Base64SignatureDecodeError(t *testing.T) {
r, _ := http.NewRequest(http.MethodGet, "/", nil)
cookieName := "myCookie"
cookieValue := "ZXhhbXBsZQ==|invalidBase64"
r.AddCookie(&http.Cookie{Name: cookieName, Value: cookieValue})
_, err := signedManager.GetSigned(r, cookieName)
if err == nil {
t.Error("Expected error, but got nil")
}
expectedError := "illegal base64 data at input byte 12"
if err.Error() != expectedError {
t.Errorf("Expected error '%s', but got '%v'", expectedError, err)
}
}
func TestManager_Set(t *testing.T) {
w := httptest.NewRecorder()
cookieName := "myCookie"
cookieValue := "myValue"
err := unsignedManager.Set(w, cookieName, cookieValue)
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
cookies := w.Result().Cookies()
if len(cookies) != 1 {
t.Errorf("Expected 1 cookie, but got %d", len(cookies))
}
cookie := cookies[0]
if cookie.Name != cookieName {
t.Errorf("Expected cookie name '%s', but got '%s'", cookieName, cookie.Name)
}
if cookie.Value != cookieValue {
t.Errorf("Expected cookie value '%s', but got '%s'", cookieValue, cookie.Value)
}
}
func TestManager_Set_Signed(t *testing.T) {
w := httptest.NewRecorder()
cookieName := "myCookie"
expectedValue := "myValue"
err := signedManager.Set(w, cookieName, expectedValue, Options{Signed: true})
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
cookies := w.Result().Cookies()
if len(cookies) != 1 {
t.Errorf("Expected 1 cookie, but got %d", len(cookies))
}
cookie := cookies[0]
if cookie.Name != cookieName {
t.Errorf("Expected cookie name '%s', but got '%s'", cookieName, cookie.Name)
}
expectedCookieValue := signCookieValue(expectedValue, signedManager.signingKey)
if cookie.Value != expectedCookieValue {
t.Errorf("Expected cookie value '%s', but got '%s'", expectedCookieValue, cookie.Value)
}
}
func TestManager_SetSigned(t *testing.T) {
w := httptest.NewRecorder()
cookieName := "myCookie"
expectedValue := "myValue"
err := signedManager.SetSigned(w, cookieName, expectedValue, Options{})
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
cookies := w.Result().Cookies()
if len(cookies) != 1 {
t.Errorf("Expected 1 cookie, but got %d", len(cookies))
}
cookie := cookies[0]
if cookie.Name != cookieName {
t.Errorf("Expected cookie name '%s', but got '%s'", cookieName, cookie.Name)
}
expectedCookieValue := signCookieValue(expectedValue, signedManager.signingKey)
if cookie.Value != expectedCookieValue {
t.Errorf("Expected cookie value '%s', but got '%s'", expectedCookieValue, cookie.Value)
}
}
func TestManager_Remove(t *testing.T) {
w := httptest.NewRecorder()
cookieName := "myCookie"
err := unsignedManager.Remove(w, cookieName)
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
cookies := w.Result().Cookies()
if len(cookies) != 1 {
t.Errorf("Expected 1 cookie, but got %d", len(cookies))
}
cookie := cookies[0]
if cookie.Name != cookieName {
t.Errorf("Expected cookie name '%s', but got '%s'", cookieName, cookie.Name)
}
if cookie.Value != "" {
t.Errorf("Expected empty cookie value, but got '%s'", cookie.Value)
}
if cookie.Expires.Unix() != 0 {
t.Errorf("Expected cookie to be expired, but it expires at %v", cookie.Expires)
}
if cookie.MaxAge != -1 {
t.Errorf("Expected cookie to be expired, but it has MaxAge %d", cookie.MaxAge)
}
}
func TestManager_RemoveWithOptions(t *testing.T) {
w := httptest.NewRecorder()
cookieName := "myCookie"
path := "/path"
err := unsignedManager.Remove(w, cookieName, Options{
Path: path,
})
if err != nil {
t.Errorf("Unexpected error: %v", err)
}
cookies := w.Result().Cookies()
if len(cookies) != 1 {
t.Errorf("Expected 1 cookie, but got %d", len(cookies))
}
cookie := cookies[0]
if cookie.Name != cookieName {
t.Errorf("Expected cookie name '%s', but got '%s'", cookieName, cookie.Name)
}
if cookie.Path != path {
t.Errorf("Expected cookie path '%s', but got '%s'", path, cookie.Path)
}
}