-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
department.test.js
67 lines (56 loc) · 2.26 KB
/
department.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
const MongoClient = require("mongodb").MongoClient;
const Departmental = require("./department")
describe("Department Info Management", () => {
let client;
beforeAll(async () => {
client = await MongoClient.connect(
"mongodb+srv://m001-student:[email protected]/Sandbox?retryWrites=true&w=majority",
//"my-mongodb+srv-connection-string",
{ useNewUrlParser: true },
);
Departmental.injectDB(client);
})
afterAll(async () => {
await client.close();
})
test("Create department Successfully", async () => {
const res = await Departmental.createdepartment("test","testing","A24");
expect (res.code).toBe("test");
expect (res.department).toBe("testing");
expect (res.floor).toBe("A24");
})
test("Create department Failed", async () => {
const res = await Departmental.createdepartment("test","testing","A24");
expect (res).toBe(null);
})
test("Insert id to department Successfully", async () => {
const res = await Departmental.updatedepartmentid("test", "000000-00-0000");
expect (res.code).toBe("test");
expect (res.department).toBe("testing");
expect (res.floor).toBe("A24");
expect (res.visitors[0]).toBe("000000-00-0000");
})
test("Insert id to department Failed", async () => {
const res = await Departmental.updatedepartmentid("none", "000000-00-0000");
expect (res).toBe(null);
})
test("Remove id from department Successfully", async () => {
const res = await Departmental.deletedepartmentid("test", "000000-00-0000");
expect (res.code).toBe("test");
expect (res.department).toBe("testing");
expect (res.floor).toBe("A24");
expect (res.visitors.length).toBe(0);
})
test("Remove id from department Failed", async () => {
const res = await Departmental.deletedepartmentid("none", "000000-00-0000");
expect (res).toBe(null);
})
test("Delete department Successfully", async () => {
const res = await Departmental.deletedepartment("test");
expect (res).toBe(true);
})
test("Delete department Failed", async () => {
const res = await Departmental.deletedepartment("test");
expect (res).toBe(null);
})
});