-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_update_location.py
58 lines (47 loc) · 2 KB
/
test_update_location.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
import json
from flask.testing import FlaskClient
from enternot_app import Firebase
def test_notification_toggle(client: FlaskClient, firebase: Firebase):
# mock the _get_pi_location method:
pi_pos = (14.320049, 48.338040)
firebase._get_pi_location = lambda: pi_pos
pos = dict(longitude=14.323905, latitude=48.334953)
data = json.dumps({"location": pos})
# test with distance of ~450m, expect notifications off
response = client.post("/location",
data=data,
content_type='application/json')
assert response.status_code == 200
assert firebase.notifications is False
# test with distance of ~22km, expect notifications on
pos = dict(longitude=14.323218, latitude=48.135432)
data = json.dumps({"location": pos})
response = client.post("/location",
data=data,
content_type='application/json')
assert response.status_code == 200
assert firebase.notifications is True
def test_notification_toggle_bad_requests(client: FlaskClient):
# no body
response = client.post("/location")
assert response.status_code == 400
# invalid json
response = client.post("/location",
data='{"inv',
content_type='application/json')
assert response.status_code == 400
# wrong json key
response = client.post("/location",
data='{"wrongkey": "true"}',
content_type='application/json')
assert response.status_code == 400
# wrong value
response = client.post("/location",
data='{"notifications": "asdf"}',
content_type='application/json')
assert response.status_code == 400
# wrong value
response = client.post("/location",
data='{"notifications": [123, 456]}',
content_type='application/json')
assert response.status_code == 400