forked from gavv/httpexpect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookie.go
238 lines (202 loc) · 5.09 KB
/
cookie.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
package httpexpect
import (
"errors"
"net/http"
"time"
)
// Cookie provides methods to inspect attached http.Cookie value.
type Cookie struct {
chain *chain
value *http.Cookie
}
// NewCookie returns a new Cookie instance.
//
// reporter and value should not be nil.
//
// Example:
//
// cookie := NewCookie(reporter, &http.Cookie{...})
// cookie.Domain().Equal("example.com")
// cookie.Path().Equal("/")
// cookie.Expires().InRange(time.Now(), time.Now().Add(time.Hour * 24))
func NewCookie(reporter Reporter, value *http.Cookie) *Cookie {
return newCookie(newChainWithDefaults("Cookie()", reporter), value)
}
func newCookie(parent *chain, val *http.Cookie) *Cookie {
c := &Cookie{parent.clone(), nil}
if val == nil {
c.chain.fail(AssertionFailure{
Type: AssertNotNil,
Actual: &AssertionValue{val},
Errors: []error{
errors.New("expected: non-nil cookie"),
},
})
} else {
c.value = val
}
return c
}
// Raw returns underlying http.Cookie value attached to Cookie.
// This is the value originally passed to NewCookie.
//
// Example:
//
// cookie := NewCookie(t, c)
// assert.Equal(t, c, cookie.Raw())
func (c *Cookie) Raw() *http.Cookie {
return c.value
}
// Name returns a new String instance with cookie name.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
// cookie.Name().Equal("session")
func (c *Cookie) Name() *String {
c.chain.enter("Name()")
defer c.chain.leave()
if c.chain.failed() {
return newString(c.chain, "")
}
return newString(c.chain, c.value.Name)
}
// Value returns a new String instance with cookie value.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
// cookie.Value().Equal("gH6z7Y")
func (c *Cookie) Value() *String {
c.chain.enter("Value()")
defer c.chain.leave()
if c.chain.failed() {
return newString(c.chain, "")
}
return newString(c.chain, c.value.Value)
}
// Domain returns a new String instance with cookie domain.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
// cookie.Domain().Equal("example.com")
func (c *Cookie) Domain() *String {
c.chain.enter("Domain()")
defer c.chain.leave()
if c.chain.failed() {
return newString(c.chain, "")
}
return newString(c.chain, c.value.Domain)
}
// Path returns a new String instance with cookie path.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
// cookie.Path().Equal("/foo")
func (c *Cookie) Path() *String {
c.chain.enter("Path()")
defer c.chain.leave()
if c.chain.failed() {
return newString(c.chain, "")
}
return newString(c.chain, c.value.Path)
}
// Expires returns a new DateTime instance with cookie expiration date.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
// cookie.Expires().InRange(time.Now(), time.Now().Add(time.Hour * 24))
func (c *Cookie) Expires() *DateTime {
c.chain.enter("Expires()")
defer c.chain.leave()
if c.chain.failed() {
return newDateTime(c.chain, time.Unix(0, 0))
}
return newDateTime(c.chain, c.value.Expires)
}
// HaveMaxAge succeeds if cookie has Max-Age field.
//
// In particular, if Max-Age is present and is zero (which means delete
// cookie now), method succeeds.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
// cookie.HaveMaxAge()
func (c *Cookie) HaveMaxAge() *Cookie {
c.chain.enter("HaveMaxAge()")
defer c.chain.leave()
if c.chain.failed() {
return c
}
if c.value.MaxAge == 0 {
c.chain.fail(AssertionFailure{
Type: AssertValid,
Actual: &AssertionValue{c.value},
Errors: []error{
errors.New("expected: cookie has Max-Age field"),
},
})
}
return c
}
// NotHaveMaxAge succeeds if cookie does not have Max-Age field.
//
// In particular, if Max-Age is present and is zero (which means delete
// cookie now), method fails.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
// cookie.NotHaveMaxAge()
func (c *Cookie) NotHaveMaxAge() *Cookie {
c.chain.enter("NotHaveMaxAge()")
defer c.chain.leave()
if c.chain.failed() {
return c
}
if c.value.MaxAge != 0 {
c.chain.fail(AssertionFailure{
Type: AssertNotValid,
Actual: &AssertionValue{c.value},
Errors: []error{
errors.New("expected: cookie does not have Max-Age field"),
},
})
}
return c
}
// MaxAge returns a new Duration instance with cookie Max-Age field.
//
// If Max-Age is not present, method fails.
//
// If Max-Age is present and is zero (which means delete cookie now),
// methods succeeds and the returned Duration is equal to zero.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
// cookie.HaveMaxAge()
// cookie.MaxAge().InRange(time.Minute, time.Minute*10)
func (c *Cookie) MaxAge() *Duration {
c.chain.enter("MaxAge()")
defer c.chain.leave()
if c.chain.failed() {
return newDuration(c.chain, nil)
}
switch {
case c.value.MaxAge == 0: // zero value means not present
// TODO: after removing Duration.IsSet, add failure here (breaking change)
_ = (*Duration).IsSet
return newDuration(c.chain, nil)
case c.value.MaxAge < 0: // negative value means present and zero
age := time.Duration(0)
return newDuration(c.chain, &age)
default:
age := time.Duration(c.value.MaxAge) * time.Second
return newDuration(c.chain, &age)
}
}