forked from VPAbraham/palette-picker-BE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.test.js
261 lines (200 loc) · 9.49 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
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
259
260
261
import "@babel/polyfill";
import request from 'supertest'
import app from './app'
const environment = process.env.NODE_ENV || 'development'
const configuration = require('./knexfile')[environment]
const database = require('knex')(configuration)
describe('Server', () => {
beforeEach(async () => {
await database.seed.run();
});
describe('init', () => {
it('should return a 200 status', async () => {
const res = await request(app).get('/');
expect(res.status).toBe(200);
});
});
//! GET endpoints
describe('GET /api/v1/projects', () => {
it('should return a 200 and all of the projects', async () => {
const expectedProjects = await database('projects').select();
const response = await request(app).get('/api/v1/projects');
const projects = response.body;
expect(response.status).toBe(200);
expect(projects.length).toEqual(expectedProjects.length);
});
});
describe('GET /api/v1/palettes', () => {
it('should return a 200 and all of the palettes', async () => {
const expectedPalettes = await database('palettes').select();
const response = await request(app).get('/api/v1/palettes');
const palettes = response.body;
expect(response.status).toBe(200);
expect(palettes.length).toEqual(expectedPalettes.length);
});
});
describe('GET /api/v1/projects/:id', () => {
it('should return a 200 and the specified project if it exists', async () => {
const expectedProject = await database('projects').first();
const { id } = expectedProject;
const response = await request(app).get(`/api/v1/projects/${id}`);
const result = response.body[0]
expect(response.status).toBe(200);
expect(result.length).toEqual(expectedProject.length);
});
it('should return a 404 and the message "404: Specified project does not exist"', async () => {
const invalidId = -1;
const response = await request(app).get(`/api/v1/projects/${invalidId}`);
expect(response.status).toBe(404);
expect(response.body.error).toBe('404: Specified project does not exist');
})
});
describe('GET /api/v1/palettes/:id', () => {
it('should return a 200 and a single palette if the palette exists', async () => {
const expectedPalette = await database('palettes').first();
const { id } = expectedPalette;
const response = await request(app).get(`/api/v1/palettes/${id}`);
const result = response.body[0];
expect(response.status).toBe(200);
expect(result.length).toEqual(expectedPalette.length);
});
it('should return a 404 and the message "404: Specified palette does not exist"', async () => {
const invalidID = -1;
const response = await request(app).get(`/api/v1/palettes/${invalidID}`)
expect(response.status).toBe(404);
expect(response.body.error).toEqual('404: Specified palette does not exist');
});
});
//! POST endpoints
describe('POST /api/v1/projects', () => {
it('should return a 201 and add a new project to the database', async () => {
const newProject = { name: 'Fuzzy Things'}
const response = await request(app).post('/api/v1/projects').send(newProject);
const projects = await database('projects').where('id', response.body[0]);
const project = projects[0];
expect(response.status).toBe(201);
expect(project.name).toBe('Fuzzy Things')
});
it('should return a 422 and the message "Unexpected format, missing requiredParameter"', async () => {
const invalidProject = {};
const response = await request(app).post('/api/v1/projects').send(invalidProject);
expect(response.status).toBe(422);
expect(response.body.error).toBe('Unexpected format, missing name');
});
});
describe('POST /api/v1/palettes', () => {
it('should return a 201 and add a new palette to the database', async () => {
const newPalette = { name: "Unicorn", color1: "#FFFFFF", color2: "#FFFFFF", color3: "#FFFFFF", color4: "#FFFFFF", color5: "#FFFFFF" }
const response = await request(app).post('/api/v1/palettes').send(newPalette);
const palettes = await database('palettes').where('id', response.body[0]);
const palette = palettes[0];
expect(response.status).toBe(201);
expect(palette.name).toBe(palette.name)
});
it('should return a 422 and the message "Unexpected format, missing requiredParameter"', async () => {
const invalidPalette = {};
const response = await request(app).post('/api/v1/palettes').send(invalidPalette);
expect(response.status).toBe(422);
expect(response.body.error).toBe('Unexpected format, missing name');
});
});
//! PUT/PATCH endpoints
describe('PATCH /api/v1/palettes/:id', () => {
it('should return a 200 and edit a property in a palette', async () => {
const expectedPalette = await database('palettes').first();
const { id } = expectedPalette;
const desiredPatch = { color1: "#000000" };
const response = await request(app).patch(`/api/v1/palettes/${id}`).send(desiredPatch);
const palettes = await database('palettes').where('id', id);
const palette = palettes[0];
expect(response.status).toBe(200);
expect(palette.color1).toEqual(desiredPatch.color1)
});
it('should return a 404 and the message "404: Specified palette does not exist', async () => {
const invalidID = -1;
const response = await request(app).get(`/api/v1/palettes/${invalidID}`)
expect(response.status).toBe(404);
expect(response.body.error).toEqual('404: Specified palette does not exist');
});
});
describe('PATCH /api/v1/projects/:id', () => {
it('should return a 200 and edit a property on a project', async () => {
const expectedProject = await database('projects').first();
const { id } = expectedProject;
const desiredPatch = { name: "Ralphie" };
const response = await request(app).patch(`/api/v1/projects/${id}`).send(desiredPatch);
const projects = await database('projects').where('id', id);
const project = projects[0];
expect(response.status).toBe(200);
expect(project.name).toEqual(desiredPatch.name)
})
it('should return a 404 and the message "Project with an id of -1 does not exist."', async () => {
const invalidId = -1;
const response = await request(app).patch(`/api/v1/projects/${invalidId}`)
expect(response.status).toBe(404);
expect(response.body).toEqual('Project with an id of -1 does not exist.')
})
})
//! DELETE endpoints
describe('DELETE /api/v1/projects/:id', () => {
it('should return a 202 and remove an existing project from the database', async () => {
const currentProjects = await database('projects').select();
const expectedProjects = currentProjects.length -1;
const expectedProject = await database('projects').first();
const { id } = expectedProject;
const response = await request(app).delete(`/api/v1/projects/${id}`);
const result = response.body[0]
expect(expectedProjects).toEqual(currentProjects.length - 1);
});
it('should return a 404 and the message "404: Specified project does not exist', async () => {
const invalidId = -1;
const response = await request(app).delete(`/api/v1.projects/${invalidId}`);
expect(response.status).toBe(404);
});
});
describe('DELETE /api/v1/palettes/:id', () => {
it('should return a 202 and remove an existing palette from the database', async () => {
const currentPalettes = await database('palettes').select();
const expectedPalettes = currentPalettes.length - 1;
const expectedPalette = await database('palettes').first();
const { id } = expectedPalette;
const response = await request(app).delete(`/api/v1/palettes/${id}`);
const result = response.body[0];
expect(response.status).toBe(202);
expect(expectedPalettes).toEqual(currentPalettes.length - 1);
});
it('should return a 404 and the message "404: Specified palette does not exist"', async () => {
const invalidID = -1;
const response = await request(app).get(`/api/v1/palettes/${invalidID}`)
expect(response.status).toBe(404);
expect(response.body.error).toEqual('404: Specified palette does not exist');
});
});
//! QUERY endpoint
describe('GET /api/v1/projectsbyname/?', () => {
it('should return a 200 status and the projects that match the query name', async () => {
const keyName = 'name'
const valueName = 'Neature'
const expectedProjects = await database('projects').select();
const response = await request(app).get(`/api/v1/projectsbyname/?${keyName}=${valueName}`);
const queryString = response.body;
const findProjects = expectedProjects.filter((project) => {
return project.name === queryString.name
})
expect(response.status).toBe(200);
expect(findProjects.name).toEqual(queryString.name);
});
it('should return a 404 and the message "Project with the name of ?? not found."', async () => {
const keyName = 'name'
const valueName = 'turtles'
const expectedProjects = await database('projects').select();
const response = await request(app).get(`/api/v1/projectsbyname/?${keyName}=${valueName}`);
const queryString = response.body;
const findProjects = expectedProjects.filter((project) => {
return project.name === queryString.name
})
expect(response.status).toBe(404);
expect(findProjects.length).toBe(0);
});
});
});