-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.py
executable file
·436 lines (325 loc) · 16.5 KB
/
test.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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
#!/usr/bin/env python
'''
Unit test module for servers
'''
import os
import json
import time
import boto
import boto.sqs
import requests
import unittest
import subprocess
import config
import db
class TestModule(unittest.TestCase):
# Test cases for backend
def test_backend_empty(self):
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./backend.py', 'TEAM_LOADBALANCE_OUT_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Try getting messages from backend
r = requests.get('http://localhost:8081')
self.assertEqual(r.status_code, 204)
self.assertEqual(r.text, '')
# Terminate backend
p.terminate()
def test_backend_not_empty(self):
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./backend.py', 'TEAM_LOADBALANCE_OUT_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
conn = boto.sqs.connect_to_region('us-west-2')
queue_out = conn.get_queue('TEAM_LOADBALANCE_OUT_TEST')
sample_dict = {'HTTP_response':{"errors": [{"not_found": {"id": "4"}}]}, 'HTTP_status':404}
sample_json = json.dumps(sample_dict)
sample_msg = boto.sqs.message.Message()
sample_msg.set_body(sample_json)
queue_out.write(sample_msg)
time.sleep(1)
sample_dict_1 = {'HTTP_response':{"errors": [{"not_found": {"id": "5"}}]}, 'HTTP_status':403}
sample_json_1 = json.dumps(sample_dict_1)
sample_msg_1 = boto.sqs.message.Message()
sample_msg_1.set_body(sample_json_1)
queue_out.write(sample_msg_1)
time.sleep(1)
# Try getting messages from backend
r = requests.get('http://localhost:8081')
self.assertEqual(r.status_code, 404)
self.assertEqual(r.text, json.dumps(sample_dict['HTTP_response']))
r = requests.get('http://localhost:8081')
self.assertEqual(r.status_code, 403)
self.assertEqual(r.text, json.dumps(sample_dict_1['HTTP_response']))
r = requests.get('http://localhost:8081')
self.assertEqual(r.status_code, 204)
self.assertEqual(r.text, '')
# Terminate backend
p.terminate()
# Test case for db
# def test_db_single_instance(self):
# # Start a db instance
# queue_in_name = 'TEAM_LOADBALANCE_IN_TEST'
# queue_out_name = 'TEAM_LOADBALANCE_OUT_TEST'
# aws_region = 'us-west-2'
# conn = boto.sqs.connect_to_region(aws_region)
# assert conn is not None
# queue_in = conn.create_queue(queue_in_name)
# queue_out = conn.create_queue(queue_out_name)
# FNULL = open(os.devnull, 'w')
# p = subprocess.Popen(['./db.py', 'cloudsmall1.cs.surrey.sfu.ca', 'DB1', 'DB1', '', '7777', 'localhost', queue_in_name, queue_out_name, '10', '10'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
# time.sleep(2)
# def dict_to_msg(d):
# msg = boto.sqs.message.Message()
# msg.set_body(json.dumps(d))
# return msg
# queue_in.write(dict_to_msg({"path": "create", "query": {"id": "1", "name": "Mac", "activities": ["hello", "haha"]}}))
# time.sleep(1)
# queue_in.write(dict_to_msg({"path": "create", "query": {"id": "1", "name": "Mac", "activities": ["hello", "haha"]}}))
# time.sleep(1)
# queue_in.write(dict_to_msg({"path": "create", "query": {"id": "1", "name": "Mac", "activities": ["hello", "haha", "hi"]}}))
# time.sleep(1)
# queue_in.write(dict_to_msg({"path": "retrieve", "query": {"id": "1"}}))
# time.sleep(1)
# queue_in.write(dict_to_msg({"path": "add_activities", "query": {"id": "1", "activities": ["hello", "hi"]}}))
# time.sleep(1)
# queue_in.write(dict_to_msg({"path": "retrieve", "query": {"id": "1"}}))
# time.sleep(1)
# queue_in.write(dict_to_msg({"path": "delete", "query": {"id": "1"}}))
# time.sleep(1)
# queue_in.write(dict_to_msg({"path": "retrieve", "query": {"id": "1"}}))
# time.sleep(1)
# msg = queue_out.read(visibility_timeout=20)
# self.assertEqual(msg.get_body(), json.dumps({'data':{'type':'person','id':'1','links':{'self':'http://localhost:8080/retrieve?id=1'}}}))
# self.assertEqual(queue_out.count(), 7)
# msg.delete()
# time.sleep(1)
# msg = queue_out.read(visibility_timeout=20)
# self.assertEqual(msg.get_body(), json.dumps({'data':{'type':'person','id':'1','links':{'self':'http://localhost:8080/retrieve?id=1'}}}))
# self.assertEqual(queue_out.count(), 6)
# msg.delete()
# time.sleep(1)
# msg = queue_out.read(visibility_timeout=20)
# self.assertEqual(msg.get_body(), json.dumps({"errors":[{"id_exists":{"status":"400","title":"id already exists","detail":{"name":"Mac","activities":["hello","haha"]}}}]}))
# self.assertEqual(queue_out.count(), 5)
# msg.delete()
# time.sleep(1)
# msg = queue_out.read(visibility_timeout=20)
# self.assertEqual(msg.get_body(), json.dumps({'data':{'type':'person','id':"1",'name':"Mac",'activities':list(set(["hello","haha"]))}}))
# self.assertEqual(queue_out.count(), 4)
# msg.delete()
# time.sleep(1)
# msg = queue_out.read(visibility_timeout=20)
# self.assertEqual(msg.get_body(), json.dumps({'data':{'type':'person','id':"1",'added:':["hi"]}}))
# self.assertEqual(queue_out.count(), 3)
# msg.delete()
# time.sleep(1)
# msg = queue_out.read(visibility_timeout=20)
# self.assertEqual(msg.get_body(), json.dumps({'data':{'type':'person','id':"1",'name':"Mac",'activities':list(set(["hello","haha","hi"]))}}))
# self.assertEqual(queue_out.count(), 2)
# msg.delete()
# time.sleep(1)
# msg = queue_out.read(visibility_timeout=20)
# self.assertEqual(msg.get_body(), json.dumps({'data':{'type':'person','id':"1",'name':"Mac"}}))
# self.assertEqual(queue_out.count(), 1)
# msg.delete()
# time.sleep(1)
# msg = queue_out.read(visibility_timeout=20)
# self.assertEqual(msg.get_body(), json.dumps({'errors':[{'not_found':{'id':'1'}}]}))
# self.assertEqual(queue_out.count(), 0)
# msg.delete()
# time.sleep(1)
# p.terminate()
# conn.delete_queue(queue_in_name)
# conn.delete_queue(queue_out_name)
## def test_frontend_retrieve(self):
## FNULL = open(os.devnull, 'w')
## p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
##
## time.sleep(1)
##
## # Try getting items
## r = requests.get('http://localhost:8080/retrieve?id=34390&name=dsaa')
## self.assertEqual(r.status_code, 204)
## self.assertEqual(r.text, '')
##
## # Terminate frontend
## p.terminate()
def test_frontend_create_querynotmatch_noactivities(self): #without activites
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Try creating items
r = requests.get('http://localhost:8080/create?id=34390&name=dsaa')
self.assertEqual(r.status_code, 400)
# Terminate frontend
p.terminate()
def test_frontend_create_query_match_activities(self): #with activites
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Try creating items
r = requests.get('http://localhost:8080/create?id=34390&name=dsaa&activities=a,b,c')
self.assertEqual(r.status_code, 202)
self.assertEqual(r.text, '{"data": {"msg": "Accepted", "type": "Notification"}}')
# Terminate frontend
p.terminate()
def test_frontend_create_query_empty_activities(self): #with empty activities
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Try creating items
r = requests.get('http://localhost:8080/create?id=2347&name=bob&activities=')
self.assertEqual(r.status_code, 202)
self.assertEqual(r.text, '{"data": {"msg": "Accepted", "type": "Notification"}}')
# Terminate frontend
p.terminate()
def test_frontend_delete_query_notmatch_id(self): #with wrong ID
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Try creating items
r = requests.get('http://localhost:8080/delete?id=adsadasdas')
self.assertEqual(r.status_code, 400)
# Terminate frontend
p.terminate()
def test_frontend_delete_query_match_id(self): #with correct ID
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Try creating items
r = requests.get('http://localhost:8080/delete?id=121')
self.assertEqual(r.status_code, 202)
self.assertEqual(r.text, '{"data": {"msg": "Accepted", "type": "Notification"}}')
# Terminate frontend
p.terminate()
def test_frontend_delete_query_notmatch_id_name(self): #with wrong ID and name
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Try creating items
r = requests.get('http://localhost:8080/delete?id=adsadasdas&name+**&*&*')
self.assertEqual(r.status_code, 400)
# Terminate frontend
p.terminate()
def test_frontend_delete_query_match_id_name(self): #with correct ID and name
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Deleting an item
r = requests.get('http://localhost:8080/delete?id=121&name=johnOliver')
self.assertEqual(r.status_code, 202)
self.assertEqual(r.text, '{"data": {"msg": "Accepted", "type": "Notification"}}')
# Terminate frontend
p.terminate()
def test_frontend_delete_query_empty_id(self): #with empty id and no name
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Deleting an item
r = requests.get('http://localhost:8080/delete?id=')
self.assertEqual(r.status_code, 400)
# Terminate frontend
p.terminate()
def test_frontend_delete_query_empty_id_with_name(self): #with empty id and valid name
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Deleting an item
r = requests.get('http://localhost:8080/delete?id=&name=peter')
self.assertEqual(r.status_code, 400)
# Terminate frontend
p.terminate()
def test_frontend_retrieve_query_notmatch_id(self): #with wrong ID
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Try creating items
r = requests.get('http://localhost:8080/retrieve?id=adsadasdas')
self.assertEqual(r.status_code, 400)
# Terminate frontend
p.terminate()
def test_frontend_retrieve_query_match_id(self): #with correct ID
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Try creating items
r = requests.get('http://localhost:8080/retrieve?id=121')
self.assertEqual(r.status_code, 202)
self.assertEqual(r.text, '{"data": {"msg": "Accepted", "type": "Notification"}}')
# Terminate frontend
p.terminate()
def test_frontend_retrieve_query_notmatch_id_name(self): #with wrong ID and name
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Try creating items
r = requests.get('http://localhost:8080/retrieve?id=adsadasdas&name+**&*&*')
self.assertEqual(r.status_code, 400)
# Terminate frontend
p.terminate()
def test_frontend_retrieve_query_match_id_name(self): #with correct ID and name
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Deleting an item
r = requests.get('http://localhost:8080/retrieve?id=121&name=DjWangM')
self.assertEqual(r.status_code, 202)
self.assertEqual(r.text, '{"data": {"msg": "Accepted", "type": "Notification"}}')
# Terminate frontend
p.terminate()
def test_frontend_retrieve_query_empty_id(self): #with empty ID and no name
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Deleting an item
r = requests.get('http://localhost:8080/retrieve?id=')
self.assertEqual(r.status_code, 400)
# Terminate frontend
p.terminate()
def test_frontend_retrieve_query_empty_id_with_name(self): #with empty ID and valid name
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Deleting an item
r = requests.get('http://localhost:8080/retrieve?id=&name=bob')
self.assertEqual(r.status_code, 400)
# Terminate frontend
p.terminate()
def test_frontend_add_activities_query_match_id(self): #with correct ID and activites
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Deleting an item
r = requests.get('http://localhost:8080/add_activities?id=1&activities=a,b,c')
self.assertEqual(r.status_code, 202)
self.assertEqual(r.text, '{"data": {"msg": "Accepted", "type": "Notification"}}')
# Terminate frontend
p.terminate()
def test_frontend_add_activities_query_no_id(self): #with no ID
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Deleting an item
r = requests.get('http://localhost:8080/add_activities?activities=a,b,c')
self.assertEqual(r.status_code, 400)
# Terminate frontend
p.terminate()
def test_frontend_add_activities_query_no_activities(self): #with no activities
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Deleting an item
r = requests.get('http://localhost:8080/add_activities?id=1')
self.assertEqual(r.status_code, 400)
# Terminate frontend
p.terminate()
def test_frontend_add_activities_query_wrong_id(self): #with a bad id
FNULL = open(os.devnull, 'w')
p = subprocess.Popen(['./frontend.py', 'TEAM_LOADBALANCE_IN_TEST'], env=os.environ.copy(), stdout=FNULL, stderr=subprocess.STDOUT)
time.sleep(1)
# Deleting an item
r = requests.get('http://localhost:8080/add_activities?id=1a&activities=a,b,c')
self.assertEqual(r.status_code, 400)
# Terminate frontend
p.terminate()
if __name__ == '__main__':
unittest.main()