-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathtest.js
71 lines (63 loc) · 2.04 KB
/
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
68
69
70
71
"use strict";
const {test} = require("node:test");
const fastify = require("./server");
test("should test all API endpoint", async (t) => {
let book = {};
const app = await fastify();
t.after(() => app.close());
// only to test error path
await t.test("POST / should success create item", async (t) => {
const response = await app.inject({
method: "POST",
url: "/",
payload: {
title: "Hello, World!",
},
});
const json = response.json();
t.assert.deepStrictEqual(response.statusCode, 200);
t.assert.deepStrictEqual(json[0].title, "Hello, World!");
// assign created to use as compare value
book = json[0];
});
await t.test("GET / should success return items", async (t) => {
const response = await app.inject({
method: "GET",
url: "/",
});
const json = response.json();
t.assert.deepStrictEqual(response.statusCode, 200);
t.assert.deepStrictEqual(json.length > 0, true);
t.assert.deepStrictEqual(json[0].title, "Hello, World!");
});
await t.test("GET /:id should success return item", async (t) => {
const response = await app.inject({
method: "GET",
url: `/${book.id}`,
});
const json = response.json();
t.assert.deepStrictEqual(response.statusCode, 200);
t.assert.deepStrictEqual(json[0].title, "Hello, World!");
});
await t.test("UPDATE /:id should success return item", async (t) => {
const response = await app.inject({
method: "PATCH",
url: `/${book.id}`,
payload: {
title: "Hello again, World!",
},
});
const json = response.json();
t.assert.deepStrictEqual(response.statusCode, 200);
t.assert.deepStrictEqual(json[0].title, "Hello again, World!");
});
await t.test("DELETE /:id should success delete item", async (t) => {
const response = await app.inject({
method: "DELETE",
url: `/${book.id}`,
});
const json = response.json();
t.assert.deepStrictEqual(response.statusCode, 200);
t.assert.deepStrictEqual(json.rowCount, 1);
});
});