-
-
Notifications
You must be signed in to change notification settings - Fork 239
/
cookie.go
282 lines (239 loc) · 6.33 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
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
package httpexpect
import (
"errors"
"net/http"
"time"
)
// Cookie provides methods to inspect attached http.Cookie value.
type Cookie struct {
noCopy noCopy
chain *chain
value *http.Cookie
}
// NewCookie returns a new Cookie instance.
//
// If reporter is nil, the function panics.
// If value is nil, failure is reported.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
//
// cookie.Domain().IsEqual("example.com")
// cookie.Path().IsEqual("/")
// 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)
}
// NewCookieC returns a new Cookie instance with config.
//
// Requirements for config are same as for WithConfig function.
// If value is nil, failure is reported.
//
// See NewCookie for usage example.
func NewCookieC(config Config, value *http.Cookie) *Cookie {
return newCookie(newChainWithConfig("Cookie()", config.withDefaults()), value)
}
func newCookie(parent *chain, val *http.Cookie) *Cookie {
c := &Cookie{chain: parent.clone(), value: nil}
opChain := c.chain.enter("")
defer opChain.leave()
if val == nil {
opChain.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
}
// Alias is similar to Value.Alias.
func (c *Cookie) Alias(name string) *Cookie {
opChain := c.chain.enter("Alias(%q)", name)
defer opChain.leave()
c.chain.setAlias(name)
return c
}
// Name returns a new String instance with cookie name.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
// cookie.Name().IsEqual("session")
func (c *Cookie) Name() *String {
opChain := c.chain.enter("Name()")
defer opChain.leave()
if opChain.failed() {
return newString(opChain, "")
}
return newString(opChain, c.value.Name)
}
// Value returns a new String instance with cookie value.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
// cookie.Value().IsEqual("gH6z7Y")
func (c *Cookie) Value() *String {
opChain := c.chain.enter("Value()")
defer opChain.leave()
if opChain.failed() {
return newString(opChain, "")
}
return newString(opChain, c.value.Value)
}
// Domain returns a new String instance with cookie domain.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
// cookie.Domain().IsEqual("example.com")
func (c *Cookie) Domain() *String {
opChain := c.chain.enter("Domain()")
defer opChain.leave()
if opChain.failed() {
return newString(opChain, "")
}
return newString(opChain, c.value.Domain)
}
// Path returns a new String instance with cookie path.
//
// Example:
//
// cookie := NewCookie(t, &http.Cookie{...})
// cookie.Path().IsEqual("/foo")
func (c *Cookie) Path() *String {
opChain := c.chain.enter("Path()")
defer opChain.leave()
if opChain.failed() {
return newString(opChain, "")
}
return newString(opChain, 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 {
opChain := c.chain.enter("Expires()")
defer opChain.leave()
if opChain.failed() {
return newDateTime(opChain, time.Unix(0, 0))
}
return newDateTime(opChain, c.value.Expires)
}
// ContainsMaxAge 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.ContainsMaxAge()
func (c *Cookie) ContainsMaxAge() *Cookie {
opChain := c.chain.enter("ContainsMaxAge()")
defer opChain.leave()
if opChain.failed() {
return c
}
if c.value.MaxAge == 0 {
opChain.fail(AssertionFailure{
Type: AssertValid,
Actual: &AssertionValue{c.value},
Errors: []error{
errors.New("expected: cookie has Max-Age field"),
},
})
}
return c
}
// NotContainsMaxAge 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.NotContainsMaxAge()
func (c *Cookie) NotContainsMaxAge() *Cookie {
opChain := c.chain.enter("NotContainsMaxAge()")
defer opChain.leave()
if opChain.failed() {
return c
}
if c.value.MaxAge != 0 {
opChain.fail(AssertionFailure{
Type: AssertNotValid,
Actual: &AssertionValue{c.value},
Errors: []error{
errors.New("expected: cookie does not have Max-Age field"),
},
})
}
return c
}
// Deprecated: use ContainsMaxAge instead.
func (c *Cookie) HasMaxAge() *Cookie {
return c.ContainsMaxAge()
}
// Deprecated: use NotContainsMaxAge instead.
func (c *Cookie) NotHasMaxAge() *Cookie {
return c.NotContainsMaxAge()
}
// Deprecated: use ContainsMaxAge instead.
func (c *Cookie) HaveMaxAge() *Cookie {
return c.ContainsMaxAge()
}
// Deprecated: use NotContainsMaxAge instead.
func (c *Cookie) NotHaveMaxAge() *Cookie {
return c.NotContainsMaxAge()
}
// 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.ContainsMaxAge()
// cookie.MaxAge().InRange(time.Minute, time.Minute*10)
func (c *Cookie) MaxAge() *Duration {
opChain := c.chain.enter("MaxAge()")
defer opChain.leave()
if opChain.failed() {
return newDuration(opChain, 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(opChain, nil)
case c.value.MaxAge < 0: // negative value means present and zero
age := time.Duration(0)
return newDuration(opChain, &age)
default:
age := time.Duration(c.value.MaxAge) * time.Second
return newDuration(opChain, &age)
}
}