-
Notifications
You must be signed in to change notification settings - Fork 2
/
cookieStore_test.go
168 lines (141 loc) · 10.1 KB
/
cookieStore_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
package auth
import (
"net/http"
"net/http/httptest"
"reflect"
"strings"
"testing"
"time"
"github.com/pkg/errors"
"github.com/gorilla/securecookie"
)
var cookieKey = []byte{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, 38, 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}
func getCookieStore() *cookieStore {
return newCookieStore(cookieKey, "", false).(*cookieStore)
}
func TestNewCookieStore(t *testing.T) {
actual := newCookieStore(cookieKey, "", false).(*cookieStore)
if actual.s == nil {
t.Fatal("expected correct init", actual)
}
}
func TestGetCookie(t *testing.T) {
r, _ := http.NewRequest("GET", "www.google.com", nil)
store := getCookieStore()
renewsTimeUTC := time.Date(2001, 1, 1, 12, 0, 0, 0, time.Local)
expiresTimeUTC := time.Date(2002, 1, 1, 12, 0, 0, 0, time.Local)
value, err := securecookie.New(cookieKey, nil).Encode("myCookie", &sessionCookie{"sessionId", renewsTimeUTC, expiresTimeUTC})
r.AddCookie(&http.Cookie{Expires: time.Date(2001, 1, 1, 12, 0, 0, 0, time.Local), Name: "myCookie", Value: value})
cookie := sessionCookie{}
err = store.Get(httptest.NewRecorder(), r, "myCookie", &cookie)
if err != nil || cookie.ExpireTimeUTC != expiresTimeUTC || cookie.RenewTimeUTC != renewsTimeUTC || cookie.SessionID != "sessionId" {
t.Fatal("unexpected", err, cookie)
}
}
func TestGetCookieBogusValue(t *testing.T) {
r, _ := http.NewRequest("GET", "www.google.com", nil)
store := getCookieStore()
r.AddCookie(&http.Cookie{Expires: time.Date(2001, 1, 1, 12, 0, 0, 0, time.Local), Name: "myCookie", Value: "bogus"})
cookie := sessionCookie{}
err := store.Get(httptest.NewRecorder(), r, "myCookie", &cookie)
if err == nil {
t.Fatal("expected fail")
}
}
func TestGetCookieMissing(t *testing.T) {
r, _ := http.NewRequest("GET", "www.google.com", nil)
store := getCookieStore()
cookie := sessionCookie{}
err := store.Get(httptest.NewRecorder(), r, "myCookie", &cookie)
if err == nil {
t.Fatal("expected fail")
}
}
func TestPutCookie(t *testing.T) {
w := httptest.NewRecorder()
store := getCookieStore()
renewTimeUTC := time.Date(2001, 1, 1, 12, 0, 0, 0, time.Local)
expireTimeUTC := time.Date(2002, 1, 1, 12, 0, 0, 0, time.Local)
expectedCookieExpiration := time.Now().Add(60 * 24 * 30 * time.Minute) // add 30 days
expected := &sessionCookie{"sessionId", renewTimeUTC, expireTimeUTC}
err := store.Put(w, "myCookie", expected)
rawCookie := w.Header().Get("Set-Cookie")
name := rawCookie[0:strings.Index(rawCookie, "=")]
value := substringBetween(rawCookie, "=", "; ")
actual := sessionCookie{}
securecookie.New(cookieKey, nil).Decode("myCookie", value, &actual)
path := substringBetween(rawCookie, "Path=", ";")
expires := substringBetween(rawCookie, "Expires=", ";")
maxAge := substringBetween(rawCookie, "Max-Age=", ";")
expireTime, err := time.Parse("Mon, 02 Jan 2006 15:04:05 MST", expires)
if err != nil || name != "myCookie" || actual.SessionID != expected.SessionID ||
actual.ExpireTimeUTC != expected.ExpireTimeUTC || actual.RenewTimeUTC != expected.RenewTimeUTC ||
path != "/" || maxAge != "2592000" || expireTime.Sub(expectedCookieExpiration) > 1*time.Second {
t.Fatal("unexpected", err, name, path, expireTime, maxAge)
}
}
func TestPutCookieBogus(t *testing.T) {
store := getCookieStore()
err := store.Put(httptest.NewRecorder(), ";;;aa9083a09vdad", "11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111")
if err == nil {
t.Fatal("expected fail")
}
}
func substringBetween(source, from, to string) string {
fromIndex := strings.Index(source, from) + len(from)
toIndex := strings.Index(source[fromIndex:], to) + fromIndex
return source[fromIndex:toIndex]
}
/****************************************************************************/
type MockCookieStore struct {
CookieStorer
cookies map[string]interface{}
getErr error
putErr error
}
func newMockCookieStore(cookies map[string]interface{}, hasGetErr, hasPutErr bool) *MockCookieStore {
err := errors.New("failed")
var getErr, putErr error
if cookies == nil {
cookies = make(map[string]interface{})
}
if hasGetErr {
getErr = err
}
if hasPutErr {
putErr = err
}
return &MockCookieStore{cookies: cookies, getErr: getErr, putErr: putErr}
}
func (c *MockCookieStore) Get(w http.ResponseWriter, r *http.Request, key string, result interface{}) error {
val, ok := c.cookies[key]
if c.getErr != nil || !ok || val == nil || reflect.ValueOf(val) == reflect.Zero(reflect.TypeOf(val)) {
return c.getErr
}
resultVal := reflect.ValueOf(result).Elem()
itemVal := reflect.ValueOf(c.cookies[key]).Elem()
for i := 0; i < itemVal.NumField(); i++ {
resultVal.Field(i).Set(itemVal.Field(i))
}
return c.getErr
}
func (c *MockCookieStore) PutWithExpire(w http.ResponseWriter, key string, expire int, value interface{}) error {
c.cookies[key] = value
return c.putErr
}
func (c *MockCookieStore) Put(w http.ResponseWriter, key string, value interface{}) error {
return c.PutWithExpire(w, key, 150, value)
}
func (c *MockCookieStore) Delete(w http.ResponseWriter, key string) {
c.cookies[key] = nil
}
func rememberCookie(renewTimeUTC, expireTimeUTC time.Time) *rememberMeCookie {
return &rememberMeCookie{"selector", "dG9rZW4=", renewTimeUTC, expireTimeUTC} // dG9rZW4= is base64 encode of "token"
}
func sessionCookieGood(renewTimeUTC, expireTimeUTC time.Time) *sessionCookie {
return &sessionCookie{"nfwRDzfxxJj2_HY-_mLz6jWyWU7bF0zUlIUUVkQgbZ0=", renewTimeUTC, expireTimeUTC}
}
func sessionCookieBogus(renewTimeUTC, expireTimeUTC time.Time) *sessionCookie {
return &sessionCookie{"sessionId", renewTimeUTC, expireTimeUTC}
}
var _ CookieStorer = &MockCookieStore{}