-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.ts
218 lines (198 loc) · 6.49 KB
/
test.ts
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
/*!
* Based on https://github.com/jshttp/fresh/blob/master/test/fresh.js
* Copyright(c) 2012 TJ Holowaychuk
* Copyright(c) 2016-2017 Douglas Christopher Wilson
* Copyright(c) 2020 Douglas Christian Norrman
* MIT Licensed
*/
import { assert } from "https://deno.land/[email protected]/testing/asserts.ts";
import fresh from "./mod.ts";
const { test } = Deno;
test("non-conditional GET: should be stale", () => {
const reqHeaders = new Headers({});
const resHeaders = new Headers({});
assert(!fresh(reqHeaders, resHeaders));
});
//'when requested with If-None-Match'
//'when ETags match'
test("should be fresh", () => {
const reqHeaders = new Headers({ "If-None-Match": '"foo"' });
const resHeaders = new Headers({ "ETag": '"foo"' });
assert(fresh(reqHeaders, resHeaders));
});
// 'when ETags mismatch'
test("should be stale", () => {
const reqHeaders = new Headers({ "If-None-Match": '"foo"' });
const resHeaders = new Headers({ "ETag": '"bar"' });
assert(!fresh(reqHeaders, resHeaders));
});
// 'when at least one matches'
test("should be fresh", () => {
const reqHeaders = new Headers({ "If-None-Match": ' "bar" , "foo"' });
const resHeaders = new Headers({ "ETag": '"foo"' });
assert(fresh(reqHeaders, resHeaders));
});
// 'when ETag is missing'
test("should be stale", () => {
const reqHeaders = new Headers({ "If-None-Match": '"foo"' });
const resHeaders = new Headers({});
assert(!fresh(reqHeaders, resHeaders));
});
// 'when ETag is weak'
test("should be fresh on exact match", () => {
const reqHeaders = new Headers({ "If-None-Match": 'W/"foo"' });
const resHeaders = new Headers({ "ETag": 'W/"foo"' });
assert(fresh(reqHeaders, resHeaders));
});
test("should be fresh on strong match", () => {
const reqHeaders = new Headers({ "If-None-Match": 'W/"foo"' });
const resHeaders = new Headers({ "ETag": '"foo"' });
assert(fresh(reqHeaders, resHeaders));
});
// 'when ETag is strong'
test("should be fresh on exact match", () => {
const reqHeaders = new Headers({ "If-None-Match": '"foo"' });
const resHeaders = new Headers({ "ETag": '"foo"' });
assert(fresh(reqHeaders, resHeaders));
});
test("should be fresh on weak match", () => {
const reqHeaders = new Headers({ "If-None-Match": '"foo"' });
const resHeaders = new Headers({ "ETag": 'W/"foo"' });
assert(fresh(reqHeaders, resHeaders));
});
// 'when * is given'
test("should be fresh", () => {
const reqHeaders = new Headers({ "If-None-Match": "*" });
const resHeaders = new Headers({ "ETag": '"foo"' });
assert(fresh(reqHeaders, resHeaders));
});
test("should get ignored if not only value", () => {
const reqHeaders = new Headers({ "If-None-Match": '*, "bar"' });
const resHeaders = new Headers({ "ETag": '"foo"' });
assert(!fresh(reqHeaders, resHeaders));
});
// 'when requested with If-Modified-Since'
// 'when modified since the date'
test("should be stale", () => {
const reqHeaders = new Headers(
{ "If-Modified-Since": "Sat, 01 Jan 2000 00:00:00 GMT" },
);
const resHeaders = new Headers(
{ "Last-Modified": "Sat, 01 Jan 2000 01:00:00 GMT" },
);
assert(!fresh(reqHeaders, resHeaders));
});
// 'when unmodified since the date'
test("should be fresh", () => {
const reqHeaders = new Headers(
{ "If-Modified-Since": "Sat, 01 Jan 2000 01:00:00 GMT" },
);
const resHeaders = new Headers(
{ "Last-Modified": "Sat, 01 Jan 2000 00:00:00 GMT" },
);
assert(fresh(reqHeaders, resHeaders));
});
// 'when Last-Modified is missing'
test("should be stale", () => {
const reqHeaders = new Headers(
{ "If-Modified-Since": "Sat, 01 Jan 2000 00:00:00 GMT" },
);
const resHeaders = new Headers({});
assert(!fresh(reqHeaders, resHeaders));
});
//'with invalid If-Modified-Since date'
test("should be stale", () => {
const reqHeaders = new Headers({ "If-Modified-Since": "foo" });
const resHeaders = new Headers(
{ "Last-Modified": "Sat, 01 Jan 2000 00:00:00 GMT" },
);
assert(!fresh(reqHeaders, resHeaders));
});
//'with invalid Last-Modified date'
test("should be stale", () => {
const reqHeaders = new Headers(
{ "If-Modified-Since": "Sat, 01 Jan 2000 00:00:00 GMT" },
);
const resHeaders = new Headers({ "Last-Modified": "foo" });
assert(!fresh(reqHeaders, resHeaders));
});
// 'when requested with If-Modified-Since and If-None-Match'
// 'when both match'
test("should be fresh", () => {
const reqHeaders = new Headers(
{
"If-None-Match": '"foo"',
"If-Modified-Since": "Sat, 01 Jan 2000 01:00:00 GMT",
},
);
const resHeaders = new Headers(
{ "ETag": '"foo"', "Last-Modified": "Sat, 01 Jan 2000 00:00:00 GMT" },
);
assert(fresh(reqHeaders, resHeaders));
});
// 'when only ETag matches'
test("should be stale", () => {
const reqHeaders = new Headers(
{
"If-None-Match": '"foo"',
"If-Modified-Since": "Sat, 01 Jan 2000 00:00:00 GMT",
},
);
const resHeaders = new Headers(
{ "ETag": '"foo"', "Last-Modified": "Sat, 01 Jan 2000 01:00:00 GMT" },
);
assert(!fresh(reqHeaders, resHeaders));
});
// 'when only Last-Modified matches'
test("should be stale", () => {
const reqHeaders = new Headers(
{
"If-None-Match": '"foo"',
"If-Modified-Since": "Sat, 01 Jan 2000 01:00:00 GMT",
},
);
const resHeaders = new Headers(
{ "ETag": '"bar"', "Last-Modified": "Sat, 01 Jan 2000 00:00:00 GMT" },
);
assert(!fresh(reqHeaders, resHeaders));
});
// 'when none match'
test("should be stale", () => {
const reqHeaders = new Headers(
{
"If-None-Match": '"foo"',
"If-Modified-Since": "Sat, 01 Jan 2000 00:00:00 GMT",
},
);
const resHeaders = new Headers(
{ "ETag": '"bar"', "Last-Modified": "Sat, 01 Jan 2000 01:00:00 GMT" },
);
assert(!fresh(reqHeaders, resHeaders));
});
// 'when requested with Cache-Control: no-cache'
test("should be stale", () => {
const reqHeaders = new Headers({ "Cache-Control": " no-cache" });
const resHeaders = new Headers({});
assert(!fresh(reqHeaders, resHeaders));
});
//'when ETags match'
test("should be stale", () => {
const reqHeaders = new Headers(
{ "Cache-Control": " no-cache", "If-None-Match": '"foo"' },
);
const resHeaders = new Headers({ "ETag": '"foo"' });
assert(!fresh(reqHeaders, resHeaders));
});
//'when unmodified since the date', () => {
test("should be stale", () => {
const reqHeaders = new Headers(
{
"Cache-Control": " no-cache",
"If-Modified-Since": "Sat, 01 Jan 2000 01:00:00 GMT",
},
);
const resHeaders = new Headers(
{ "Last-Modified": "Sat, 01 Jan 2000 00:00:00 GMT" },
);
assert(!fresh(reqHeaders, resHeaders));
});