-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
app.test.ts
258 lines (224 loc) · 6.88 KB
/
app.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
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
//
// mdn-bcd-collector: unittest/app/app.test.ts
// Unittest for the main app backend
//
// © Gooborg Studios, Google LLC
// See the LICENSE file for copyright details
//
import chai, {assert, expect} from "chai";
import chaiHttp from "chai-http";
chai.use(chaiHttp);
import fs from "fs-extra";
import {app, version} from "./app.js";
const agent = chai.request.agent(app);
const tests = Object.entries(
await fs.readJson(new URL("./tests.json", import.meta.url)),
);
describe("/api/results", () => {
it("missing `Content-Type` header", async () => {
const res = await agent
.post("/api/results")
.set("Content-Type", "text/plain")
.send("string");
assert.equal(res.status, 400);
});
it("missing `for` param", async () => {
const res = await agent.post("/api/results").send({});
assert.equal(res.status, 400);
});
it("list results before", async () => {
const res = await agent.get("/api/results");
assert.equal(res.status, 200);
assert.deepEqual(res.body, {
__version: version,
extensions: [],
results: {},
userAgent: "",
});
});
const testURL = `http://localhost:8080/tests/api`;
const testURL2 = `https://host.test/tests/css`;
const testResults = [
{
exposure: "Worker",
name: "api.Blob",
result: false,
},
];
const modifiedResults = [
{
exposure: "Worker",
name: "api.Blob",
result: true,
},
];
it("submit valid results", async () => {
const res = await agent
.post("/api/results")
.query({for: testURL})
.send(testResults);
assert.equal(res.status, 201);
assert.equal(res.text, "");
});
it("list results after valid", async () => {
const res = await agent.get("/api/results");
assert.equal(res.status, 200);
assert.deepEqual(res.body, {
__version: version,
extensions: [],
results: {[testURL]: testResults},
userAgent: "",
});
});
it("submit modified results", async () => {
const res = await agent
.post("/api/results")
.query({for: testURL})
.send(modifiedResults);
assert.equal(res.status, 201);
});
it("list results after duplicate", async () => {
const res = await agent.get("/api/results");
assert.equal(res.status, 200);
assert.deepEqual(res.body, {
__version: version,
extensions: [],
results: {[testURL]: modifiedResults},
userAgent: "",
});
});
it("submit valid results for new URL", async () => {
const res = await agent
.post("/api/results")
.query({for: testURL2})
.send(testResults);
assert.equal(res.status, 201);
assert.deepEqual(res.text, "");
});
it("list results after new valid", async () => {
const res = await agent.get("/api/results");
assert.equal(res.status, 200);
assert.deepEqual(res.body, {
__version: version,
extensions: [],
results: {[testURL]: modifiedResults, [testURL2]: testResults},
userAgent: "",
});
});
it("submit invalid results", async () => {
const res = await agent
.post("/api/results")
.query({for: testURL})
.send("my bad results");
assert.equal(res.status, 400);
});
});
describe("/api/get", () => {
it("get all tests, no post vars", async () => {
const res = await agent.post("/api/get").send({});
expect(res).to.redirectTo(/\/tests\/$/);
});
it("get all tests, with post vars", async () => {
const res = await agent
.post("/api/get")
.send({testSelection: "", limitExposure: ""});
expect(res).to.redirectTo(/\/tests\/$/);
});
it("get all tests, limit exposure", async () => {
const res = await agent
.post("/api/get")
.send({testSelection: "", limitExposure: "Window"});
expect(res).to.redirectTo(/\/tests\/\?exposure=Window$/);
});
it('get "api"', async () => {
const res = await agent
.post("/api/get")
.send({testSelection: "api", limitExposure: ""});
expect(res).to.redirectTo(/\/tests\/api$/);
});
it('get "api", limit exposure', async () => {
const res = await agent
.post("/api/get")
.send({testSelection: "api", limitExposure: "Window"});
expect(res).to.redirectTo(/\/tests\/api\?exposure=Window$/);
});
it("get specific test", async () => {
const res = await agent
.post("/api/get")
.send({testSelection: "api.AbortController.signal", limitExposure: ""});
expect(res).to.redirectTo(/\/tests\/api\/AbortController\/signal$/);
});
it("get specific test, limit exposure", async () => {
const res = await agent.post("/api/get").send({
testSelection: "api.AbortController.signal",
limitExposure: "Window",
});
expect(res).to.redirectTo(
/\/tests\/api\/AbortController\/signal\?exposure=Window$/,
);
});
it("get specific test, hide results", async () => {
const res = await agent.post("/api/get").send({
testSelection: "api.AbortController.signal",
limitExposure: "",
selenium: true,
});
expect(res).to.redirectTo(
/\/tests\/api\/AbortController\/signal\?selenium=true$/,
);
});
it("get specific test, limit exposure and hide results", async () => {
const res = await agent.post("/api/get").send({
testSelection: "api.AbortController.signal",
limitExposure: "Window",
selenium: true,
});
expect(res).to.redirectTo(
/\/tests\/api\/AbortController\/signal\?selenium=true&exposure=Window$/,
);
});
});
describe("test assets", () => {
it("/eventstream", async () => {
const res = await agent.get(`/eventstream`);
assert.equal(res.status, 200);
assert.equal(
// XXX TypeScript incorrectly states the interface doesn't have "headers"
(res as any).headers["content-type"],
"text/event-stream; charset=utf-8",
);
});
});
describe("rendered pages", () => {
it("/", async () => {
const res = await agent.get(`/`);
assert.equal(res.status, 200);
assert.include(res.text, "mdn-bcd-collector");
});
it("404", async () => {
const res = await agent.get("/fakepage");
assert.equal(res.status, 404);
});
});
describe("/tests/", () => {
it("get a test", async () => {
// XXX Test page content and ensure we're loading the right tests
const res = await agent.get(`/tests/${tests[2][0].replace(/\./g, "/")}`);
assert.equal(res.status, 200);
});
it("get all tests", async () => {
// XXX Test page content and ensure we're loading the right tests
const res = await agent.get("/tests/");
assert.equal(res.status, 200);
});
it("get all tests, ignore CSS", async () => {
// XXX Test page content and ensure we're loading the right tests
const res = await agent.get("/tests/?ignore=css");
assert.equal(res.status, 200);
});
it("get a non-existent test", async () => {
const res = await agent.get(`/tests/dummy/test`);
assert.equal(res.status, 404);
});
});
after(() => agent.close());