-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
126 lines (109 loc) · 3.67 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
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
const supertest = require("supertest");
const chai = require("chai");
var expect = chai.expect;
const API_URL = "http://localhost:8080";
const server = supertest.agent(API_URL);
if (process.env.NODE_ENV && process.env.NODE_ENV.startsWith("prod")) {
// Err hello this is production!
throw new Error("Don't run the test suite on production!");
}
describe("productions", () => {
// Reset the database for testing.
server.get("/reset").expect(200);
it ("gets all of the active productions",
function (done) {
server.get("/productions")
.expect(200)
.end( function (err, res) {
expect(res.body).to.be.an('array').that.is.not.empty;
for (const production of res.body) {
for (const prop of ["id", "title", "subtitle", "year", "description", "location", "shows"]) {
expect(production).to.have.property(prop);
}
}
done();
});
});
it ("gets all the shows for an active production",
function (done) {
server.get("/productions/1/shows")
.expect(200)
.end( function (err, res) {
for (const show of res.body) {
for (const prop of ["id", "time", "totalSeats", "reservedSeats"]) {
expect(show).to.have.property(prop);
}
}
done();
});
});
it ("get request for an non-existent production id",
function (done) {
server.get("/productions/999999/shows")
.expect(404, done);
});
it ("returns a bad request for an invalid production id integer (negative)",
function (done) {
server.get("/productions/-999999/shows")
.expect(400, done);
});
it ("returns a bad request for an invalid production id integer (floating point)",
function (done) {
server.get("/productions/9999.99/shows")
.expect(400, done);
});
it ("returns a bad request for an invalid production id integer (string)",
function (done) {
server.get("/productions/undefined/shows")
.expect(400, done);
});
it ("returns a bad request for an invalid production id integer (string with integer)",
function (done) {
server.get("/productions/undefined123/shows")
.expect(400)
.end( function (err, res) {
expect(res.status).to.equal(400);
done();
});
});
});
describe("shows", () => {
// Reset the database for testing.
server.get("/reset").expect(200);
it ("gets the seat count for a valid show",
function (done) {
server.get("/shows/1")
.expect(200)
.end( function (err, res) {
for (const prop of ["id", "time", "production", "totalSeats", "reservedSeats"]) {
expect(res.body).to.have.property(prop);
}
done();
});
});
it ("get request for a non-existent show",
function (done) {
server.get("/shows/99999")
.expect(404, done);
});
it ("get bad request for an invalid show (negative)",
function (done) {
server.get("/shows/-99999")
.expect(400, done);
});
it ("get bad request for an invalid show (floating point)",
function (done) {
server.get("/shows/2134.324")
.expect(400, done);
});
it ("get bad request for an invalid show (string)",
function (done) {
server.get("/shows/undefined")
.expect(400, done);
});
it ("get bad request for an invalid show (string with number)",
function (done) {
server.get("/shows/1234undefined")
.expect(400, done);
});
});