-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmigrate_test.go
More file actions
552 lines (455 loc) · 14 KB
/
migrate_test.go
File metadata and controls
552 lines (455 loc) · 14 KB
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
// Copyright 2025 Bobby Powers. All rights reserved.
// Use of this source code is governed by the MIT
// license that can be found in the LICENSE file.
package seshcookie
import (
"encoding/hex"
"encoding/json"
"fmt"
"io"
"net/http"
"net/http/httptest"
"os"
"strings"
"testing"
"time"
"github.com/bpowers/seshcookie/v3/internal/pb"
)
type jsVector struct {
Description string `json:"description"`
Key string `json:"key"`
DerivedKeyHex string `json:"derived_key_hex"`
SessionJSON string `json:"session_json"`
CookieValue string `json:"cookie_value"`
}
type jsVectors struct {
Vectors []jsVector `json:"vectors"`
}
func loadVectors(t *testing.T) []jsVector {
t.Helper()
data, err := os.ReadFile("testdata/js_vectors.json")
if err != nil {
t.Fatalf("read test vectors: %v", err)
}
var vecs jsVectors
if err := json.Unmarshal(data, &vecs); err != nil {
t.Fatalf("unmarshal test vectors: %v", err)
}
return vecs.Vectors
}
func TestDeriveJSKey(t *testing.T) {
vectors := loadVectors(t)
for _, v := range vectors {
t.Run(v.Description, func(t *testing.T) {
got := deriveJSKey(v.Key)
gotHex := hex.EncodeToString(got)
if gotHex != v.DerivedKeyHex {
t.Errorf("deriveJSKey(%q) = %s, want %s", v.Key, gotHex, v.DerivedKeyHex)
}
})
}
}
func TestDecodeJSCookie(t *testing.T) {
vectors := loadVectors(t)
for _, v := range vectors {
t.Run(v.Description, func(t *testing.T) {
encKey := deriveJSKey(v.Key)
plaintext, err := decodeJSCookie(v.CookieValue, encKey)
if err != nil {
t.Fatalf("decodeJSCookie: %v", err)
}
if string(plaintext) != v.SessionJSON {
t.Errorf("plaintext = %q, want %q", string(plaintext), v.SessionJSON)
}
})
}
}
func TestDecodeJSCookieMalformed(t *testing.T) {
validKey := deriveJSKey("test-secret-key")
t.Run("wrong part count - too few", func(t *testing.T) {
_, err := decodeJSCookie("abc-def", validKey)
if err == nil {
t.Error("expected error for 2-part cookie")
}
})
t.Run("wrong part count - too many", func(t *testing.T) {
_, err := decodeJSCookie("a-b-c-d", validKey)
if err == nil {
t.Error("expected error for 4-part cookie")
}
})
t.Run("bad base64 nonce", func(t *testing.T) {
_, err := decodeJSCookie("!!!-AAAA-AAAA", validKey)
if err == nil {
t.Error("expected error for bad base64 nonce")
}
})
t.Run("bad base64 ciphertext", func(t *testing.T) {
_, err := decodeJSCookie("AAAAAAAAAAAAAAAA-!!!-AAAA", validKey)
if err == nil {
t.Error("expected error for bad base64 ciphertext")
}
})
t.Run("bad base64 tag", func(t *testing.T) {
_, err := decodeJSCookie("AAAAAAAAAAAAAAAA-AAAA-!!!", validKey)
if err == nil {
t.Error("expected error for bad base64 tag")
}
})
t.Run("wrong key", func(t *testing.T) {
vectors := loadVectors(t)
wrongKey := deriveJSKey("wrong-key")
_, err := decodeJSCookie(vectors[0].CookieValue, wrongKey)
if err == nil {
t.Error("expected error decrypting with wrong key")
}
})
t.Run("tampered ciphertext", func(t *testing.T) {
vectors := loadVectors(t)
parts := strings.Split(vectors[0].CookieValue, "-")
// flip a byte in the ciphertext
ct := []byte(parts[1])
ct[0] ^= 0xff
parts[1] = string(ct)
tampered := strings.Join(parts, "-")
_, err := decodeJSCookie(tampered, validKey)
if err == nil {
t.Error("expected error for tampered ciphertext")
}
})
t.Run("tampered tag", func(t *testing.T) {
vectors := loadVectors(t)
parts := strings.Split(vectors[0].CookieValue, "-")
// flip a byte in the tag
tag := []byte(parts[2])
tag[0] ^= 0xff
parts[2] = string(tag)
tampered := strings.Join(parts, "-")
_, err := decodeJSCookie(tampered, validKey)
if err == nil {
t.Error("expected error for tampered tag")
}
})
}
func TestMigrationEndToEnd(t *testing.T) {
vectors := loadVectors(t)
vec := vectors[0] // simple session: {count: 42, user: "alice"}
goKey := createKeyString()
jsKey := vec.Key
config := &Config{
CookieName: testCookieName,
HTTPOnly: true,
Secure: false,
MaxAge: 24 * time.Hour,
}
convert := func(jsonData []byte) (*pb.TestSession, error) {
var raw map[string]any
if err := json.Unmarshal(jsonData, &raw); err != nil {
return nil, err
}
session := &pb.TestSession{}
if v, ok := raw["count"].(float64); ok {
session.Count = int32(v)
}
if v, ok := raw["user"].(string); ok {
session.User = v
}
return session, nil
}
mw, err := NewMiddleware[*pb.TestSession](goKey, config,
WithMigration[*pb.TestSession](jsKey, convert))
if err != nil {
t.Fatalf("NewMiddleware: %v", err)
}
// Handler that reads and reports the session
readHandler := http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
session, err := GetSession[*pb.TestSession](req.Context())
if err != nil {
http.Error(rw, err.Error(), 500)
return
}
rw.WriteHeader(200)
fmt.Fprintf(rw, "count=%d user=%s", session.Count, session.User)
})
handler := mw(readHandler)
// First request: send JS cookie
req := httptest.NewRequest("GET", "/", nil)
req.AddCookie(&http.Cookie{Name: testCookieName, Value: vec.CookieValue})
w := httptest.NewRecorder()
handler.ServeHTTP(w, req)
resp := w.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != 200 {
t.Fatalf("status = %d, want 200", resp.StatusCode)
}
if string(body) != "count=42 user=alice" {
t.Fatalf("body = %q, want %q", string(body), "count=42 user=alice")
}
// Should have a Set-Cookie with sc1_ prefix (Go format)
cookies := resp.Cookies()
if len(cookies) != 1 {
t.Fatalf("expected 1 cookie, got %d", len(cookies))
}
goCookie := cookies[0]
if !strings.HasPrefix(goCookie.Value, versionPrefix) {
t.Fatalf("cookie value %q does not have sc1_ prefix", goCookie.Value)
}
// Second request: send Go cookie back
req = httptest.NewRequest("GET", "/", nil)
req.AddCookie(goCookie)
w = httptest.NewRecorder()
handler.ServeHTTP(w, req)
resp = w.Result()
body, _ = io.ReadAll(resp.Body)
if resp.StatusCode != 200 {
t.Fatalf("status = %d, want 200", resp.StatusCode)
}
if string(body) != "count=42 user=alice" {
t.Fatalf("body = %q after re-read, want %q", string(body), "count=42 user=alice")
}
// Session unchanged, no new cookie should be set
if len(resp.Cookies()) != 0 {
t.Fatalf("expected no cookie on unchanged re-read, got %d", len(resp.Cookies()))
}
}
func TestMigrationWithDifferentKeys(t *testing.T) {
vectors := loadVectors(t)
vec := vectors[1] // single string field with "another-key-here"
// Go key is different from JS key
goKey := createKeyString()
jsKey := vec.Key
config := &Config{
CookieName: testCookieName,
HTTPOnly: true,
Secure: false,
MaxAge: 24 * time.Hour,
}
convert := func(jsonData []byte) (*pb.TestSession, error) {
var raw map[string]any
if err := json.Unmarshal(jsonData, &raw); err != nil {
return nil, err
}
session := &pb.TestSession{}
if v, ok := raw["name"].(string); ok {
session.User = v
}
return session, nil
}
mw, err := NewMiddleware[*pb.TestSession](goKey, config,
WithMigration[*pb.TestSession](jsKey, convert))
if err != nil {
t.Fatalf("NewMiddleware: %v", err)
}
handler := mw(http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
session, err := GetSession[*pb.TestSession](req.Context())
if err != nil {
http.Error(rw, err.Error(), 500)
return
}
rw.WriteHeader(200)
fmt.Fprintf(rw, "user=%s", session.User)
}))
req := httptest.NewRequest("GET", "/", nil)
req.AddCookie(&http.Cookie{Name: testCookieName, Value: vec.CookieValue})
w := httptest.NewRecorder()
handler.ServeHTTP(w, req)
resp := w.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != 200 {
t.Fatalf("status = %d, want 200", resp.StatusCode)
}
if string(body) != "user=bob" {
t.Fatalf("body = %q, want %q", string(body), "user=bob")
}
cookies := resp.Cookies()
if len(cookies) != 1 {
t.Fatalf("expected 1 cookie, got %d", len(cookies))
}
if !strings.HasPrefix(cookies[0].Value, versionPrefix) {
t.Fatalf("cookie %q missing sc1_ prefix", cookies[0].Value)
}
}
func TestMigrationConvertError(t *testing.T) {
vectors := loadVectors(t)
vec := vectors[0]
goKey := createKeyString()
config := &Config{
CookieName: testCookieName,
HTTPOnly: true,
Secure: false,
MaxAge: 24 * time.Hour,
}
convert := func(jsonData []byte) (*pb.TestSession, error) {
return nil, fmt.Errorf("conversion failed")
}
mw, err := NewMiddleware[*pb.TestSession](goKey, config,
WithMigration[*pb.TestSession](vec.Key, convert))
if err != nil {
t.Fatalf("NewMiddleware: %v", err)
}
handler := mw(http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
session, err := GetSession[*pb.TestSession](req.Context())
if err != nil {
http.Error(rw, err.Error(), 500)
return
}
rw.WriteHeader(200)
fmt.Fprintf(rw, "count=%d", session.Count)
}))
req := httptest.NewRequest("GET", "/", nil)
req.AddCookie(&http.Cookie{Name: testCookieName, Value: vec.CookieValue})
w := httptest.NewRecorder()
handler.ServeHTTP(w, req)
resp := w.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != 200 {
t.Fatalf("status = %d, want 200", resp.StatusCode)
}
// Should get empty session since convert failed
if string(body) != "count=0" {
t.Fatalf("body = %q, want %q (empty session)", string(body), "count=0")
}
}
func TestMigrationGarbageInput(t *testing.T) {
goKey := createKeyString()
config := &Config{
CookieName: testCookieName,
HTTPOnly: true,
Secure: false,
MaxAge: 24 * time.Hour,
}
convert := func(jsonData []byte) (*pb.TestSession, error) {
return &pb.TestSession{Count: 1}, nil
}
mw, err := NewMiddleware[*pb.TestSession](goKey, config,
WithMigration[*pb.TestSession]("some-js-key", convert))
if err != nil {
t.Fatalf("NewMiddleware: %v", err)
}
handler := mw(http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
session, err := GetSession[*pb.TestSession](req.Context())
if err != nil {
http.Error(rw, err.Error(), 500)
return
}
rw.WriteHeader(200)
fmt.Fprintf(rw, "count=%d", session.Count)
}))
// Cookie that looks like JS format (3 hyphen-separated parts) but is garbage
req := httptest.NewRequest("GET", "/", nil)
req.AddCookie(&http.Cookie{Name: testCookieName, Value: "AAAA-BBBB-CCCC"})
w := httptest.NewRecorder()
handler.ServeHTTP(w, req)
resp := w.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != 200 {
t.Fatalf("status = %d, want 200", resp.StatusCode)
}
// Should get empty session since decryption fails on garbage
if string(body) != "count=0" {
t.Fatalf("body = %q, want %q (empty session for garbage input)", string(body), "count=0")
}
}
// TestMigrationWithLegacyGoCookie verifies that when migration is enabled,
// a legacy Go cookie (no sc1_ prefix, not JS format) is still decodable.
func TestMigrationWithLegacyGoCookie(t *testing.T) {
goKey := createKeyString()
config := &Config{
CookieName: testCookieName,
HTTPOnly: true,
Secure: false,
MaxAge: 24 * time.Hour,
}
convert := func(jsonData []byte) (*pb.TestSession, error) {
return nil, fmt.Errorf("should not be called for Go cookies")
}
// First, create a Go cookie (with sc1_ prefix) using a handler without migration
mwNoMigrate, err := NewMiddleware[*pb.TestSession](goKey, config)
if err != nil {
t.Fatalf("NewMiddleware: %v", err)
}
setHandler := http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
session, _ := GetSession[*pb.TestSession](req.Context())
session.Count = 77
session.User = "legacy-with-migration"
SetSession(req.Context(), session)
rw.WriteHeader(200)
})
req := httptest.NewRequest("GET", "/", nil)
w := httptest.NewRecorder()
mwNoMigrate(setHandler).ServeHTTP(w, req)
cookies := w.Result().Cookies()
if len(cookies) != 1 {
t.Fatalf("expected 1 cookie, got %d", len(cookies))
}
// Strip sc1_ prefix to simulate a legacy Go cookie
legacyCookie := &http.Cookie{
Name: testCookieName,
Value: strings.TrimPrefix(cookies[0].Value, versionPrefix),
}
// Now create a handler WITH migration enabled and send the legacy Go cookie
mwWithMigrate, err := NewMiddleware[*pb.TestSession](goKey, config,
WithMigration[*pb.TestSession]("some-js-key", convert))
if err != nil {
t.Fatalf("NewMiddleware: %v", err)
}
readHandler := http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
session, err := GetSession[*pb.TestSession](req.Context())
if err != nil {
http.Error(rw, err.Error(), 500)
return
}
rw.WriteHeader(200)
fmt.Fprintf(rw, "count=%d user=%s", session.Count, session.User)
})
req = httptest.NewRequest("GET", "/", nil)
req.AddCookie(legacyCookie)
w = httptest.NewRecorder()
mwWithMigrate(readHandler).ServeHTTP(w, req)
resp := w.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != 200 {
t.Fatalf("status = %d, want 200", resp.StatusCode)
}
if string(body) != "count=77 user=legacy-with-migration" {
t.Fatalf("body = %q, want %q", string(body), "count=77 user=legacy-with-migration")
}
}
func TestNoMigrationIgnoresJSCookies(t *testing.T) {
vectors := loadVectors(t)
vec := vectors[0]
goKey := createKeyString()
config := &Config{
CookieName: testCookieName,
HTTPOnly: true,
Secure: false,
MaxAge: 24 * time.Hour,
}
// No WithMigration option
mw, err := NewMiddleware[*pb.TestSession](goKey, config)
if err != nil {
t.Fatalf("NewMiddleware: %v", err)
}
handler := mw(http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
session, err := GetSession[*pb.TestSession](req.Context())
if err != nil {
http.Error(rw, err.Error(), 500)
return
}
rw.WriteHeader(200)
fmt.Fprintf(rw, "count=%d", session.Count)
}))
req := httptest.NewRequest("GET", "/", nil)
req.AddCookie(&http.Cookie{Name: testCookieName, Value: vec.CookieValue})
w := httptest.NewRecorder()
handler.ServeHTTP(w, req)
resp := w.Result()
body, _ := io.ReadAll(resp.Body)
if resp.StatusCode != 200 {
t.Fatalf("status = %d, want 200", resp.StatusCode)
}
// Should get empty session since no migration configured
if string(body) != "count=0" {
t.Fatalf("body = %q, want %q (empty session)", string(body), "count=0")
}
}