-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.py
374 lines (326 loc) · 14.6 KB
/
tests.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
371
372
373
374
import os
import unittest
import json
from datetime import datetime
from dotenv import load_dotenv
from flask_sqlalchemy import SQLAlchemy
from flaskr import create_app
from models import Actor, Movie, setup_db
class AgencyTestCase(unittest.TestCase):
"""This class represents the agency api test case"""
def setUp(self):
# load variables from .env file
load_dotenv(dotenv_path="./.env")
# load a token for every different role
self.producer_token = "Bearer " + os.environ.get("producer_token")
self.director_token = "Bearer " + os.environ.get("director_token")
self.assistant_token = "Bearer " + os.environ.get("assistant_token")
"""Define test variables and initialize app."""
self.database_path = os.environ.get("TEST_DATABASE_URL")
self.app = create_app()
self.client = self.app.test_client
setup_db(self.app, self.database_path)
# 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()
# insert an actor and a movie into the db
actor = {
'name': "test_user",
'age': 5,
'gender': 'male'
}
self.client().post('/actors/add', data=json.dumps(actor), headers={'Content-Type': 'application/json',
'Authorization': self.producer_token})
movie = {
'title': "test_movie",
'release_date': str(datetime.now())
}
self.client().post('/movies/add', data=json.dumps(movie),
headers={'Content-Type': 'application/json', 'Authorization': self.producer_token})
def tearDown(self):
pass
# actors endpoints success
def test_get_actors(self):
res = self.client().get('/actors', headers={'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertGreater(len(data['actors']), 0)
def test_get_actor(self):
actors = Actor.query.all()
actor_id = actors[0].id
res = self.client().get('/actors/' + str(actor_id), headers={'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertEqual(data['actor']['id'], actor_id)
def test_actor_create(self):
actor = {
'name': "test_user",
'age': 5,
'gender': 'male'
}
res = self.client().post('/actors/add', data=json.dumps(actor), headers={'Content-Type': 'application/json',
'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
print(actor)
self.assertEqual(data['actor']["age"], 5)
def test_actor_edit(self):
actor = {
'name': "test_user",
'age': 5,
'gender': 'male'
}
res = self.client().post('/actors/add', data=json.dumps(actor),
headers={'Content-Type': 'application/json', 'Authorization': self.producer_token})
json.loads(res.data)
edit_data = {
"age": 4
}
actors = Actor.query.all()
actor_id = actors[-1].id
res = self.client().patch('actors/edit/' + str(actor_id), data=json.dumps(edit_data),
headers={'Content-Type': 'application/json', 'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertEqual(data['actor']['age'], 4)
self.assertEqual(data['actor']['name'], "test_user")
def test_actor_delete(self):
actors = Actor.query.all()
actor_id = actors[-1].id
res = self.client().delete('/actors/' + str(actor_id), headers={'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertEqual(data['id'], actor_id)
# movies endpoints success
def test_get_movies(self):
res = self.client().get('/movies', headers={'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertGreater(len(data['movies']), 0)
def test_get_movie(self):
movies = Movie.query.all()
movie_id = movies[0].id
res = self.client().get('/movies/' + str(movie_id), headers={'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertEqual(data['movie']['id'], movie_id)
def test_movie_create(self):
movie = {
'title': "test_movie",
'release_date': str(datetime.now())
}
res = self.client().post('/movies/add', data=json.dumps(movie),
headers={'Content-Type': 'application/json', 'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertEqual(data['movie']['title'], "test_movie")
def test_movie_edit(self):
edit_data = {
"title": "new_title"
}
movies = Movie.query.all()
movie_id = movies[-1].id
time = movies[-1].release_date
res = self.client().patch('movies/edit/' + str(movie_id), data=json.dumps(edit_data),
headers={'Content-Type': 'application/json', 'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertEqual(data['movie']['title'], "new_title")
self.assertEqual(data['movie']['release_date'], str(time))
def test_movie_delete(self):
movies = Movie.query.all()
movie_id = movies[-1].id
res = self.client().delete('/movies/' + str(movie_id), headers={'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertEqual(data['id'], movie_id)
# actors error behaviour
def test_wrong_get_actors(self):
res = self.client().post('/actors', headers={'Authorization': self.producer_token})
json.loads(res.data)
self.assertEqual(res.status_code, 405)
def test_wrong_get_actor(self):
res = self.client().post('/actors/1000000000000', headers={'Authorization': self.producer_token})
json.loads(res.data)
self.assertEqual(res.status_code, 405)
def test_wrong_delete_actor(self):
res = self.client().delete('/actors/10000000000000', headers={'Authorization': self.producer_token})
json.loads(res.data)
self.assertEqual(res.status_code, 400)
def test_wrong_create_actor(self):
actor = {
'name': "test_user",
'age': "not a number",
'gender': 'male'
}
res = self.client().post('/actors/add', data=json.dumps(actor), headers={'Content-Type': 'application/json',
'Authorization': self.producer_token})
json.loads(res.data)
self.assertEqual(res.status_code, 400)
def test_wrong_edit_actor(self):
edit_data = {
"age": "not a number"
}
actors = Actor.query.all()
actor_id = actors[-1].id
res = self.client().patch('actors/edit/' + str(actor_id), data=json.dumps(edit_data),
headers={'Content-Type': 'application/json', 'Authorization': self.producer_token})
json.loads(res.data)
self.assertEqual(res.status_code, 400)
# movies error behaviour
def test_wrong_get_movies(self):
res = self.client().post('/movies', headers={'Authorization': self.producer_token})
json.loads(res.data)
self.assertEqual(res.status_code, 405)
def test_wrong_get_movie(self):
res = self.client().post('/movies/100000000000000', headers={'Authorization': self.producer_token})
json.loads(res.data)
self.assertEqual(res.status_code, 405)
def test_wrong_delete_movie(self):
res = self.client().delete('/movies/100000000', headers={'Authorization': self.producer_token})
json.loads(res.data)
self.assertEqual(res.status_code, 400)
def test_wrong_create_movie(self):
movie = {
'title': "test_movie",
'release_date': "not a date"
}
res = self.client().post('/movies/add', data=json.dumps(movie),
headers={'Content-Type': 'application/json', 'Authorization': self.producer_token})
json.loads(res.data)
self.assertEqual(res.status_code, 400)
def test_wrong_edit_movie(self):
movie = {
'title': "test_movie",
'release_date': str(datetime.now())
}
self.client().post('/movies/add', data=json.dumps(movie),
headers={'Content-Type': 'application/json', 'Authorization': self.producer_token})
edit_data = {
"release_date": "not a date"
}
movies = Movie.query.all()
movie_id = movies[-1].id
res = self.client().patch('movies/edit/' + str(movie_id), data=json.dumps(edit_data),
headers={'Content-Type': 'application/json', 'Authorization': self.producer_token})
json.loads(res.data)
self.assertEqual(res.status_code, 400)
# testing RBAC permissions
def test_assistant_right_permission(self):
# can view actors
res = self.client().get('/actors', headers={'Authorization': self.assistant_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertGreater(len(data['actors']), 0)
# can view movies
res = self.client().get('/movies', headers={'Authorization': self.assistant_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
self.assertGreater(len(data['movies']), 0)
def test_assistant_wrong_permission(self):
# can not create new actor
actor = {
'name': "not allowed",
'age': 5,
'gender': 'male'
}
res = self.client().post('/actors/add', data=json.dumps(actor), headers={'Content-Type': 'application/json','Authorization': self.assistant_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 401)
# can not create new movie
movie = {
'title': "not allowed",
'release_date': str(datetime.now())
}
res = self.client().post('/movies/add', data=json.dumps(movie),
headers={'Content-Type': 'application/json', 'Authorization': self.assistant_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 401)
def test_director_right_permission(self):
# can add and delete an actor
# add
actor = {
'name': "allowed",
'age': 5,
'gender': 'male'
}
res = self.client().post('/actors/add', data=json.dumps(actor),
headers={'Content-Type': 'application/json', 'Authorization': self.director_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
# delete
actors = Actor.query.all()
actor_id = actors[-1].id
res = self.client().delete('/actors/' + str(actor_id), headers={'Authorization': self.director_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
# can edit a movie
edit_data = {
"title": "new__title"
}
movies = Movie.query.all()
movie_id = movies[-1].id
time = movies[-1].release_date
res = self.client().patch('movies/edit/' + str(movie_id), data=json.dumps(edit_data),
headers={'Content-Type': 'application/json', 'Authorization': self.director_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
def test_director_wrong_permission(self):
# can not add or delete movies
# add
movie = {
'title': "test__movie",
'release_date': str(datetime.now())
}
res = self.client().post('/movies/add', data=json.dumps(movie),
headers={'Content-Type': 'application/json', 'Authorization': self.director_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 401)
# delete
movies = Movie.query.all()
movie_id = movies[-1].id
res = self.client().delete('/movies/' + str(movie_id), headers={'Authorization': self.director_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 401)
def test_producer_actors_permission(self):
# can do everything
# can add and delete an actor
# add
actor = {
'name': "allowed",
'age': 5,
'gender': 'male'
}
res = self.client().post('/actors/add', data=json.dumps(actor),
headers={'Content-Type': 'application/json', 'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
# delete
actors = Actor.query.all()
actor_id = actors[-1].id
res = self.client().delete('/actors/' + str(actor_id), headers={'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
def test_producer_movies_permission(self):
# can do everything
# can add or delete movies
# add
movie = {
'title': "test__movie",
'release_date': str(datetime.now())
}
res = self.client().post('/movies/add', data=json.dumps(movie),
headers={'Content-Type': 'application/json', 'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
# delete
movies = Movie.query.all()
movie_id = movies[-1].id
res = self.client().delete('/movies/' + str(movie_id), headers={'Authorization': self.producer_token})
data = json.loads(res.data)
self.assertEqual(res.status_code, 200)
if __name__ == "__main__":
unittest.main()