-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest_test.ts
175 lines (151 loc) · 4.12 KB
/
request_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
import { equalsRequest, isRequest } from "./request.ts";
import {
assert,
assertFalse,
assertRejects,
describe,
it,
} from "./_dev_deps.ts";
const url = "http://a";
describe("equalsRequest", () => {
it("should return true if the requests are same properties", () => {
const table: [Request, Request][] = [
[new Request(url), new Request(url)],
[
new Request(url, { method: "POST" }),
new Request(url, { method: "POST" }),
],
[
new Request(url, { headers: { a: "b" } }),
new Request(url, { headers: { a: "b" } }),
],
[
new Request(url, { body: "", method: "POST" }),
new Request(url, { body: "", method: "POST" }),
],
[
new Request(url, { body: "", method: "POST" }),
new Request(url, { body: "a", method: "POST" }),
],
];
table.forEach(([left, right]) => {
assert(equalsRequest(left, right));
});
});
it("should return false if the requests are not same properties", () => {
const init = new Request(url, { body: "", method: "POST" });
init.headers.delete("content-type");
assertFalse(init.headers.has("content-type"));
const table: [Request, Request][] = [
[
new Request(url, { redirect: "follow" }),
new Request(url, { redirect: "error" }),
],
[
new Request(url, { method: "GET" }),
new Request(url, { method: "POST" }),
],
[
new Request(url, { headers: { a: "b" } }),
new Request(url, { headers: { c: "d" } }),
],
[
new Request(url, { body: "", method: "POST" }),
new Request(url),
],
[
new Request(url, { body: "", method: "POST" }),
new Request(url, { method: "POST" }),
],
[
new Request(url, { redirect: "error" }),
new Request(url, { redirect: "follow" }),
],
[new Request("http://a"), new Request("https://a")],
[
init,
new Request(url, { method: "POST" }),
],
];
table.forEach(([left, right]) => {
assertFalse(equalsRequest(left, right));
});
});
it("should return true if the requests equal strictly", async () => {
const table: [Request, Request][] = [
[new Request(url), new Request(url)],
[
new Request(url, { method: "POST" }),
new Request(url, { method: "POST" }),
],
[
new Request(url, { headers: { a: "b" } }),
new Request(url, { headers: { a: "b" } }),
],
[
new Request(url, { body: "", method: "POST" }),
new Request(url, { body: "", method: "POST" }),
],
];
await Promise.all(table.map(async ([left, right]) => {
assert(await equalsRequest(left, right, true));
}));
});
it("should return false if the requests does not equal strictly", async () => {
const table: [Request, Request][] = [
[
new Request(url, { body: "", method: "POST" }),
new Request(url, { body: "a", method: "POST" }),
],
];
await Promise.all(table.map(async ([left, right]) => {
assertFalse(await equalsRequest(left, right, true));
}));
});
it(
"should throw error if the request has been read",
async () => {
const read = new Request(url, { body: "", method: "POST" });
const read2 = new Request(url, { body: "", method: "POST" });
await read.text();
await read2.text();
assert(read.bodyUsed);
assert(read2.bodyUsed);
assertRejects(async () =>
await equalsRequest(
read,
read2,
true,
)
);
},
);
});
describe("isRequest", () => {
it("should return true", () => {
const table: unknown[] = [
new Request(url),
new Request(url, { method: "POST" }),
];
table.forEach((value) => {
assert(isRequest(value));
});
});
it("should return false", () => {
const table: unknown[] = [
{},
null,
undefined,
0,
NaN,
new Response(),
"",
false,
true,
[],
];
table.forEach((value) => {
assertFalse(isRequest(value));
});
});
});