-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.test.js
67 lines (58 loc) · 1.93 KB
/
app.test.js
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
/**
* @jest-environment node
*/
import request from "supertest";
import { app, db } from "./app.js";
import { test__signupAndLogin } from "@stanlemon/server-with-auth";
async function signupAndLogin() {
const { token } = await test__signupAndLogin(
app,
"test" + Math.random(),
"p@$$w0rd!",
{ name: "Test User", email: "[email protected]" }
);
return token;
}
describe("/app", () => {
afterEach(() => {
// Prevent data from bleeding over after each test
db.data.items = [];
});
it("lists items", async () => {
const token = await signupAndLogin();
const response = await request(app)
.get("/api/items")
.set("Accept", "application/json")
.set("Authorization", "Bearer " + token);
expect(response.status).toEqual(200);
expect(response.headers["content-type"]).toMatch(/json/);
expect(response.body).toEqual([]);
});
it("add item", async () => {
const token = await signupAndLogin();
const response = await request(app)
.post("/api/items")
.set("Accept", "application/json")
.send({ item: "hello world" })
.set("Authorization", "Bearer " + token);
expect(response.status).toEqual(200);
expect(response.headers["content-type"]).toMatch(/json/);
expect(response.body).toMatchObject([{ item: "hello world" }]);
});
it("delete item", async () => {
const token = await signupAndLogin();
const response1 = await request(app)
.post("/api/items")
.set("Accept", "application/json")
.set("Authorization", "Bearer " + token)
.send({ item: "hello world" });
const items = response1.body;
const response2 = await request(app)
.delete(`/api/items/${items[0].id}`)
.set("Accept", "application/json")
.set("Authorization", "Bearer " + token);
expect(response2.status).toEqual(200);
expect(response2.headers["content-type"]).toMatch(/json/);
expect(response2.body).toMatchObject([]);
});
});