-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_app.py
269 lines (205 loc) · 9.32 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
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
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']
}
class AgencyTestCase(unittest.TestCase):
def setUp(self):
self.app = create_app()
self.client = self.app.test_client
self.database_path = "postgres://postgres:george2016@localhost:5432/project_test"
setup_db(self.app, self.database_path)
db_drop_and_create_all()
with self.app.app_context():
self.db = SQLAlchemy()
self.db.init_app(self.app)
self.db.create_all()
def tearDown(self):
pass
def test_create_new_actor(self):
json_create_actor = {
'name' : 'George',
'age' : 21
}
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'])
def test_error_401_new_actor(self):
json_create_actor = {
'name' : 'George',
'age' : 21
}
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):
json_create_actor_without_name = {
'age' : 23
}
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'], 'Unprocessable entity')
def test_get_all_actors(self):
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'])
def test_error_401_get_all_actors(self):
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):
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'] , 'Not found')
def test_edit_actor(self):
json_edit_actor_with_new_age = {
'age' : 19
}
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'])
def test_error_400_edit_actor(self):
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'] , 'Bad request')
def test_error_404_edit_actor(self):
json_edit_actor_with_new_age = {
'age' : 19
}
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'] , 'Not found')
def test_error_401_delete_actor(self):
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):
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):
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'])
def test_error_404_delete_actor(self):
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'] , 'Not found')
def test_create_new_movie(self):
json_create_movie = {
'title' : 'Yourself',
'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'])
def test_error_422_create_new_movie(self):
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'], 'Unprocessable entity')
def test_get_all_movies(self):
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'])
def test_error_401_get_all_movies(self):
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):
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'] , 'Not found')
def test_edit_movie(self):
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'])
def test_error_400_edit_movie(self):
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'] , 'Bad request')
def test_error_404_edit_movie(self):
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'] , 'Not found')
def test_error_401_delete_movie(self):
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):
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):
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'])
def test_error_404_delete_movie(self):
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'] , 'Not found')
if __name__ == "__main__":
unittest.main()