-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_app.py
370 lines (287 loc) · 13.7 KB
/
test_app.py
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
import os
import unittest
import json
from flask_sqlalchemy import SQLAlchemy
from app import create_app
from models import setup_db, db_drop_and_create_all, Actor, Movie, Performance, db_drop_and_create_all
from config import bearer_tokens
from sqlalchemy import desc
from datetime import date
# Create dict with Authorization key and Bearer token as values.
# Later used by test classes as Header
casting_assistant_auth_header = {
'Authorization': bearer_tokens['casting_assistant']
}
casting_director_auth_header = {
'Authorization': bearer_tokens['casting_director']
}
executive_producer_auth_header = {
'Authorization': bearer_tokens['executive_producer']
}
#----------------------------------------------------------------------------#
# RBAC Tests I: Missing Authorization | Missing Authentificaton
# Casting Assistant:
# - test_error_401_get_all_movies (Authorization)
# Casting Director:
# - test_error_401_delete_actor (Authorization)
# - test_error_403_delete_actor (Authentificaton)
# Executive Producer:
# - test_error_401_delete_movie (Authorization)
# - test_error_403_delete_movie (Authentificaton)
# RBAC Tests II: Missing Authentificaton (i.e. missing permissions)
#----------------------------------------------------------------------------#
#----------------------------------------------------------------------------#
# Setup of Unittest
#----------------------------------------------------------------------------#
class AgencyTestCase(unittest.TestCase):
"""This class represents the agency test case"""
def setUp(self):
"""Define test variables and initialize app."""
self.app = create_app()
self.client = self.app.test_client
setup_db(self.app)
db_drop_and_create_all()
# binds the app to the current context
with self.app.app_context():
self.db = SQLAlchemy()
self.db.init_app(self.app)
# create all tables
self.db.create_all()
def tearDown(self):
"""Executed after reach test"""
pass
# Test driven development (TDD): Create testcases first, then add endpoints to pass tests
#----------------------------------------------------------------------------#
# Tests for /actors POST
#----------------------------------------------------------------------------#
def test_create_new_actor(self):
"""Test POST new actor."""
json_create_actor = {
'name' : 'Crisso',
'age' : 25
}
res = self.client().post('/actors', json = json_create_actor, headers = casting_director_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertTrue(data['success'])
self.assertEqual(data['created'], 2)
def test_error_401_new_actor(self):
"""Test POST new actor w/o Authorization."""
json_create_actor = {
'name' : 'Crisso',
'age' : 25
}
res = self.client().post('/actors', json = json_create_actor)
data = json.loads(res.data)
self.assertEqual(res.status_code, 401)
self.assertFalse(data['success'])
self.assertEqual(data['message'], 'Authorization header is expected.')
def test_error_422_create_new_actor(self):
"""Test Error POST new actor."""
json_create_actor_without_name = {
'age' : 25
}
res = self.client().post('/actors', json = json_create_actor_without_name, headers = casting_director_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 422)
self.assertFalse(data['success'])
self.assertEqual(data['message'], 'no name provided.')
#----------------------------------------------------------------------------#
# Tests for /actors GET
#----------------------------------------------------------------------------#
def test_get_all_actors(self):
"""Test GET all actors."""
res = self.client().get('/actors?page=1', headers = casting_assistant_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertTrue(data['success'])
self.assertTrue(len(data['actors']) > 0)
def test_error_401_get_all_actors(self):
"""Test GET all actors w/o Authorization."""
res = self.client().get('/actors?page=1')
data = json.loads(res.data)
self.assertEqual(res.status_code, 401)
self.assertFalse(data['success'])
self.assertEqual(data['message'], 'Authorization header is expected.')
def test_error_404_get_actors(self):
"""Test Error GET all actors."""
res = self.client().get('/actors?page=1125125125', headers = casting_assistant_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 404)
self.assertFalse(data['success'])
self.assertEqual(data['message'] , 'no actors found in database.')
#----------------------------------------------------------------------------#
# Tests for /actors PATCH
#----------------------------------------------------------------------------#
def test_edit_actor(self):
"""Test PATCH existing actors"""
json_edit_actor_with_new_age = {
'age' : 30
}
res = self.client().patch('/actors/1', json = json_edit_actor_with_new_age, headers = casting_director_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertTrue(data['success'])
self.assertTrue(len(data['actor']) > 0)
self.assertEqual(data['updated'], 1)
def test_error_400_edit_actor(self):
"""Test PATCH with non json body"""
res = self.client().patch('/actors/123412', headers = casting_director_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 400)
self.assertFalse(data['success'])
self.assertEqual(data['message'] , 'request does not contain a valid JSON body.')
def test_error_404_edit_actor(self):
"""Test PATCH with non valid id"""
json_edit_actor_with_new_age = {
'age' : 30
}
res = self.client().patch('/actors/123412', json = json_edit_actor_with_new_age, headers = casting_director_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 404)
self.assertFalse(data['success'])
self.assertEqual(data['message'] , 'Actor with id 123412 not found in database.')
#----------------------------------------------------------------------------#
# Tests for /actors DELETE
#----------------------------------------------------------------------------#
def test_error_401_delete_actor(self):
"""Test DELETE existing actor w/o Authorization"""
res = self.client().delete('/actors/1')
data = json.loads(res.data)
self.assertEqual(res.status_code, 401)
self.assertFalse(data['success'])
self.assertEqual(data['message'], 'Authorization header is expected.')
def test_error_403_delete_actor(self):
"""Test DELETE existing actor with missing permissions"""
res = self.client().delete('/actors/1', headers = casting_assistant_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 403)
self.assertFalse(data['success'])
self.assertEqual(data['message'], 'Permission not found.')
def test_delete_actor(self):
"""Test DELETE existing actor"""
res = self.client().delete('/actors/1', headers = casting_director_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertTrue(data['success'])
self.assertEqual(data['deleted'], '1')
def test_error_404_delete_actor(self):
"""Test DELETE non existing actor"""
res = self.client().delete('/actors/15125', headers = casting_director_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 404)
self.assertFalse(data['success'])
self.assertEqual(data['message'] , 'Actor with id 15125 not found in database.')
#----------------------------------------------------------------------------#
# Tests for /movies POST
#----------------------------------------------------------------------------#
def test_create_new_movie(self):
"""Test POST new movie."""
json_create_movie = {
'title' : 'Crisso Movie',
'release_date' : date.today()
}
res = self.client().post('/movies', json = json_create_movie, headers = executive_producer_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertTrue(data['success'])
self.assertEqual(data['created'], 2)
def test_error_422_create_new_movie(self):
"""Test Error POST new movie."""
json_create_movie_without_name = {
'release_date' : date.today()
}
res = self.client().post('/movies', json = json_create_movie_without_name, headers = executive_producer_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 422)
self.assertFalse(data['success'])
self.assertEqual(data['message'], 'no title provided.')
#----------------------------------------------------------------------------#
# Tests for /movies GET
#----------------------------------------------------------------------------#
def test_get_all_movies(self):
"""Test GET all movies."""
res = self.client().get('/movies?page=1', headers = casting_assistant_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertTrue(data['success'])
self.assertTrue(len(data['movies']) > 0)
def test_error_401_get_all_movies(self):
"""Test GET all movies w/o Authorization."""
res = self.client().get('/movies?page=1')
data = json.loads(res.data)
self.assertEqual(res.status_code, 401)
self.assertFalse(data['success'])
self.assertEqual(data['message'], 'Authorization header is expected.')
def test_error_404_get_movies(self):
"""Test Error GET all movies."""
res = self.client().get('/movies?page=1125125125', headers = casting_assistant_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 404)
self.assertFalse(data['success'])
self.assertEqual(data['message'] , 'no movies found in database.')
#----------------------------------------------------------------------------#
# Tests for /movies PATCH
#----------------------------------------------------------------------------#
def test_edit_movie(self):
"""Test PATCH existing movies"""
json_edit_movie = {
'release_date' : date.today()
}
res = self.client().patch('/movies/1', json = json_edit_movie, headers = executive_producer_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertTrue(data['success'])
self.assertTrue(len(data['movie']) > 0)
def test_error_400_edit_movie(self):
"""Test PATCH with non valid id json body"""
res = self.client().patch('/movies/1', headers = executive_producer_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 400)
self.assertFalse(data['success'])
self.assertEqual(data['message'] , 'request does not contain a valid JSON body.')
def test_error_404_edit_movie(self):
"""Test PATCH with non valid id"""
json_edit_movie = {
'release_date' : date.today()
}
res = self.client().patch('/movies/123412', json = json_edit_movie, headers = executive_producer_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 404)
self.assertFalse(data['success'])
self.assertEqual(data['message'] , 'Movie with id 123412 not found in database.')
#----------------------------------------------------------------------------#
# Tests for /movies DELETE
#----------------------------------------------------------------------------#
def test_error_401_delete_movie(self):
"""Test DELETE existing movie w/o Authorization"""
res = self.client().delete('/movies/1')
data = json.loads(res.data)
self.assertEqual(res.status_code, 401)
self.assertFalse(data['success'])
self.assertEqual(data['message'], 'Authorization header is expected.')
def test_error_403_delete_movie(self):
"""Test DELETE existing movie with wrong permissions"""
res = self.client().delete('/movies/1', headers = casting_assistant_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 403)
self.assertFalse(data['success'])
self.assertEqual(data['message'], 'Permission not found.')
def test_delete_movie(self):
"""Test DELETE existing movie"""
res = self.client().delete('/movies/1', headers = executive_producer_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertTrue(data['success'])
self.assertEqual(data['deleted'], '1')
def test_error_404_delete_movie(self):
"""Test DELETE non existing movie"""
res = self.client().delete('/movies/151251', headers = executive_producer_auth_header)
data = json.loads(res.data)
self.assertEqual(res.status_code, 404)
self.assertFalse(data['success'])
self.assertEqual(data['message'] , 'Movie with id 151251 not found in database.')
# Make the tests conveniently executable.
# From app directory, run 'python test_app.py' to start tests
if __name__ == "__main__":
unittest.main()