-
Notifications
You must be signed in to change notification settings - Fork 0
/
mockdbhelper.py
58 lines (44 loc) · 1.96 KB
/
mockdbhelper.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
import datetime
MOCK_USERS = [{"email": "[email protected]", "salt": "8Fb23mMNHD5Zb8pr2qWA3PE9bH0=", "hashed":
"1736f83698df3f8153c1fbd6ce2840f8aace4f200771a46672635374073cc876cf0aa6a31f780e576578f791b5555b50df46303f0c3a7f2d21f91aa1429ac22e"}]
MOCK_TABLES = [{"_id": "1", "number": "1", "owner": "[email protected]","url": "mockurl"}]
MOCK_REQUESTS = [{"_id": "1", "table_number": "1","table_id": "1", "time": datetime.datetime.now()}]
class MockDBHelper:
def get_user(self, email):
user = [x for x in MOCK_USERS if x.get("email") == email]
if user:
return user[0]
return None
def add_user(self, email, salt, hashed):
MOCK_USERS.append({"email": email, "salt": salt, "hashed":hashed})
print MOCK_USERS
def add_table(self, number, owner):
MOCK_TABLES.append({"_id": number, "number": number, "owner": owner})
return number
def update_table(self, _id, url):
for table in MOCK_TABLES:
if table.get("_id") == _id:
table["url"] = url
break
def get_tables(self, owner_id):
return MOCK_TABLES
def get_table(self, table_id):
for table in MOCK_TABLES:
if table.get("_id") == table_id:
return table
def delete_table(self, table_id):
for i, table in enumerate(MOCK_TABLES):
if table.get("_id") == table_id:
del MOCK_TABLES[i]
break
def add_request(self, table_id, time):
table = self.get_table(table_id)
MOCK_REQUESTS.append({"_id": table_id, "owner": table[ "owner"], "table_number": table["number"], "table_id": table_id, "time": time})
return True
def get_requests(self, owner_id):
return MOCK_REQUESTS
def delete_request(self, request_id):
for i, request in enumerate(MOCK_REQUESTS):
if request.get("_id") == request_id:
del MOCK_REQUESTS[i]
break