-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackend_tests.py
444 lines (410 loc) · 15 KB
/
backend_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
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
435
436
437
438
439
440
441
442
443
import unittest
from backend import *
class MyTestCase(unittest.TestCase):
userToAdd = {
"name": "Backend_testAcc",
"email": "Backend_testAcc@gmail.com",
"password": "asdf",
"friends": {},
"games_table": {
'Krunker - Hardpoint': {
"game_score": 1000,
"time_played": 0
}
},
"group": None,
"in_queue": False,
"has_voted": False,
"lobby": None,
"profile_info": {
"bio": 'This user has no bio',
"discord": '',
"profile_pic": '../../images/DefaultProfilePic.jpg',
"steam_friend_code": '',
"steam_name": ''
}
}
def test_reset(self):
reset_patch()
# reset_users may be hard to test
assert get_lobbies_get() == { "lobbies_list": [] }
assert get_groups_get() == { "groups_list": [] }
assert get_discords_get() == {
"discords_list": [
{
"_id": "6081b22d21529f0c00073c5b",
"room_name": "Room 1",
"status": "open"
},
{
"_id": "6081b23a21529f0c00073c5c",
"room_name": "Room 2",
"status": "open"
},
{
"_id": "6081b23f21529f0c00073c5d",
"room_name": "Room 3",
"status": "open"
},
{
"_id": "6081b24521529f0c00073c5e",
"room_name": "Room 4",
"status": "open"
},
{
"_id": "6081b24a21529f0c00073c5f",
"room_name": "Room 5",
"status": "open"
}
]
}
assert get_games_get(None) == {
"games_list": [
{
"_id": "60240d8261cfcfb0e9a958cb",
"avg_length": 900,
"categories": [
"FPS",
"Free",
"Browser Game"
],
"game_name": "Krunker - Hardpoint",
"num_players": 4,
"num_teams": 2,
"queue": [],
"ranking_levels": [
300,
700,
1100,
1500,
1900,
2300,
2700
]
},
{
"_id": "606a301564025379af1e70ce",
"avg_length": 900,
"categories": [
"IO Game",
"Free",
"Browser Game"
],
"game_name": "Skribbl.io",
"num_players": 6,
"num_teams": 3,
"queue": [],
"ranking_levels": [
300,
700,
1100,
1500,
1900,
2300,
2700
]
}
]
}
def test_get_users_get(self):
reset_patch()
actual_users_list_1 = get_users_get("Template", None, None)
actual_users_list_2 = get_users_get(None, "Template", None)
actual_users_list_3 = get_users_get(None, None, "template@gmail.com")
# expected_users_list_1 = {
# "users_list": [
# {
# "_id": "60b9bdbc43967866c21dc9fe",
# "email": "template@gmail.com",
# "friends": {
# "60b9bdbc43967866c21dc9fe": {
# "name": "Template",
# "status": "Deleted"
# },
# "607228229a8f71adf99cbfbe": {
# "name": "max",
# "status": "Standard"
# },
# "profileID": {
# "name": "not an Id",
# "status": "Deleted"
# }
# },
# "games_table": {
# "Krunker - Hardpoint": {
# "game_score": 475,
# "time_played": 420
# },
# "Skribbl.io": {
# "game_score": 532,
# "time_played": 420
# }
# },
# "group": None,
# "has_voted": False,
# "in_queue": False,
# "lobby": None,
# "name": "Template",
# "password": "$2a$09$cMC6BmamTxj8fNAg/7d3muMDulYOaKNa0Q2C.ykVYrULzUtwn9OkW",
# "profile_info": {
# "bio": "I like playing Krunker, especially the Hardpoint game mode!",
# "discord": "template#1234",
# "profile_pic": "4",
# "steam_friend_code": "123456789",
# "steam_name": "Template"
# }
# }
# ]
# }
expected_users_list_1 = {
"users_list": [
{
"_id": "60b9bdbc43967866c21dc9fe",
"email": "template@gmail.com",
"friends": {
"6024098ac9b27e9f9995df97": {
"name": "Template",
"status": "Deleted"
},
"607228229a8f71adf99cbfbe": {
"name": "max",
"status": "Standard"
},
"60b9bdbc43967866c21dc9fe": {
"name": "Template",
"status": "Deleted"
},
"profileID": {
"name": "not an Id",
"status": "Deleted"
}
},
"games_table": {
"Krunker - Hardpoint": {
"game_score": 475,
"time_played": 420
},
"Skribbl.io": {
"game_score": 532,
"time_played": 420
}
},
"group": None,
"has_voted": False,
"in_queue": False,
"lobby": None,
"name": "Template",
"password": "$2a$09$Pob7fIUF0lBx92Lv5wxroug6316ebDdIJlscxE3OP4.2FjMuRHSU.",
"profile_info": {
"bio": "I like playing Krunker, especially the Hardpoint game mode!",
"discord": "template#1234",
"profile_pic": "4",
"steam_friend_code": "123456789",
"steam_name": "Template"
}
}
]
}
expected_users_list_2 = {
"users_list": [
{
"_id": "60b9bdbc43967866c21dc9fe",
"name": "Template",
"profile_info": {
"bio": "I like playing Krunker, especially the Hardpoint game mode!",
"discord": "template#1234",
"profile_pic": "4",
"steam_friend_code": "123456789",
"steam_name": "Template"
}
}
]
}
reset_patch()
assert actual_users_list_1 == expected_users_list_1
assert actual_users_list_2 == expected_users_list_2
assert actual_users_list_3 == expected_users_list_1
def test_get_groups_get(self):
reset_patch()
expected_groups_list = {
"groups_list": []
}
assert get_groups_get() == expected_groups_list
# def test_get_group_get(self):
# with app.app_context():
# assert get_group_get(None) != None
# assert get_group_get("60240d8261cfcfb0e9a958cb") != None
#
# def test_get_group_delete(self):
# with app.app_context():
# assert get_group_delete("60240d8261cfcfb0e9a958cb") != None
def test_get_lobbies_get(self):
expected_lobbies_list = {
"lobbies_list": []
}
assert get_lobbies_get() == expected_lobbies_list
def test_get_discords_get(self):
expected_discords_list = {
"discords_list": [
{
"_id": "6081b22d21529f0c00073c5b",
"room_name": "Room 1",
"status": "open"
},
{
"_id": "6081b23a21529f0c00073c5c",
"room_name": "Room 2",
"status": "open"
},
{
"_id": "6081b23f21529f0c00073c5d",
"room_name": "Room 3",
"status": "open"
},
{
"_id": "6081b24521529f0c00073c5e",
"room_name": "Room 4",
"status": "open"
},
{
"_id": "6081b24a21529f0c00073c5f",
"room_name": "Room 5",
"status": "open"
}
]
}
assert get_discords_get() == expected_discords_list
def test_get_next_discord_get(self):
expected = {
"room_name": "Room 1"
}
assert get_next_discord_get() != None
def test_add_to_queue_patch(self):
reset_patch()
with app.app_context():
assert add_to_queue_patch( "Krunker - Hardpoint", "60b9bdbc43967866c21dc9fe") != None
assert add_to_queue_patch("Krunker - Hardpoint", "6024098ac9b27e9f9995df90") != None
def test_add_new_game_patch(self):
with app.app_context():
assert add_new_game_patch("Krunker - Hardpoint", "60b9bdbc43967866c21dc9fe") != None
assert add_new_game_patch("Krunker - Hardpoint", "6024098ac9b27e9f9995df90") != None
def test_get_user_get(self):
with app.app_context():
assert get_user_get("60b9bdbc43967866c21dc9fe", None) != None
assert get_user_get("6024098ac9b27e9f9995df96", None) != None
def test_get_user_delete(self):
with app.app_context():
assert get_user_delete("6024098ac9b27e9f9995df96") != None
def test_get_group_get(self):
with app.app_context():
assert get_group_get(None) != None
assert get_group_get("60240d8261cfcfb0e9a958cb") != None
def test_get_group_delete(self):
with app.app_context():
assert get_group_delete("60240d8261cfcfb0e9a958aa") != None
def test_get_lobby_get(self):
with app.app_context():
assert get_lobby_get("60240d8261cfcfb0e9a958cc") != None
def test_get_lobby_delete(self):
with app.app_context():
assert get_lobby_delete("60240d8261cfcfb0e9a958cc") != None
def test_end_lobby_patch(self):
with app.app_context():
assert end_lobby_patch("60240d8261cfcfb0e9a958cc") != None
def test_get_game_get(self):
with app.app_context():
assert get_game_get(None) != None
assert get_game_get("60240d8261cfcfb0e9a958cb") != None
def test_get_game_delete(self):
with app.app_context():
assert get_game_delete("60240d8261cfcfb0e9a958ca") != None
def test_get_discord_get(self):
with app.app_context():
assert get_discord_get(None) != None
assert get_discord_get("60240d8261cfcfb0e9a958cb") != None
def test_get_discord_delete(self):
with app.app_context():
assert get_discord_get(None) != None
assert get_discord_get("60240d8261cfcfb0e9a958ca") != None
def test_get_discord_patch(self):
change = {
"status" : "open"
}
with app.app_context():
assert get_discord_patch("6081b22d21529f0c00073c5b", change) != None
def test_leave_queue_patch(self):
with app.app_context():
assert leave_queue_patch("60abefd1771783071dda65bd") != None
def test_get_users_post_test(self):
with app.app_context():
userToAdd = {
"name": "Backend_testAcc",
"email": "Backend_testAcc@gmail.com",
"password": "asdf",
"friends": {},
"games_table": {
'Krunker - Hardpoint': {
"game_score": 1000,
"time_played": 0
}
},
"group": None,
"in_queue": False,
"has_voted": False,
"lobby": None,
"profile_info": {
"bio": 'This user has no bio',
"discord": '',
"profile_pic": '../../images/DefaultProfilePic.jpg',
"steam_friend_code": '',
"steam_name": ''
}
}
assert get_users_post(userToAdd) != None
# def test_get_user_get_patch_delete_test(self):
# actual_users_list_1 = get_users_get("Backend_testAcc", None, None)
#
# #test get
# print(actual_users_list_1["users_list"])
# # print((actual_users_list_1["users_list"])[0])
# assert get_user_get(actual_users_list_1["users_list"], None) == actual_users_list_1
#
# #test patch
# bioUpdate = { "profile_info": {
# "bio": 'This user has a bio',
# "discord": '',
# "profile_pic": '../../images/DefaultProfilePic.jpg',
# "steam_friend_code": '',
# "steam_name": ''
# }
# }
# get_user_patch(actual_users_list_1["_id"], bioUpdate)
# patchedAcc = {
# "name": "Backend_testAcc",
# "email": "Backend_testAcc@gmail.com",
# "password": "asdf",
# "friends": {},
# "games_table": {
# 'Krunker - Hardpoint': {
# "game_score": 1000,
# "time_played": 0
# }
# },
# "group": None,
# "in_queue": False,
# "has_voted": False,
# "lobby": None,
# "profile_info": {
# "bio": 'This user has a bio',
# "discord": '',
# "profile_pic": '../../images/DefaultProfilePic.jpg',
# "steam_friend_code": '',
# "steam_name": ''
# }
# }
# assert get_users_get("Backend_testAcc", None, None) == patchedAcc
#
# #test delete
# assert get_user_delete(actual_users_list_1["_id"]) == None
if __name__ == '__main__':
unittest.main()