forked from ExpDev07/coronavirus-tracker-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_location.py
More file actions
59 lines (49 loc) · 1.95 KB
/
test_location.py
File metadata and controls
59 lines (49 loc) · 1.95 KB
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
import pytest
from datetime import datetime
from unittest import mock
from app import location, coordinates, timeline
def mocked_timeline(*args, **kwargs):
class TestTimeline:
def __init__(self, latest):
self.latest = latest
return TestTimeline(args[0])
@pytest.mark.parametrize("test_id, country, country_code, province, latitude, longitude, confirmed_latest, deaths_latest, recovered_latest", [
(0, "Thailand", "TH", "", 15, 100, 1000, 1111, 22222),
(1, "Deutschland", "DE", "", 15, 100, 1000, 1111, 22222),
(2, "Cruise Ship", "XX", "", 15, 100, 1000, 1111, 22222)
])
@mock.patch('app.timeline.Timeline', side_effect=mocked_timeline)
def test_location_class(mocked_timeline, test_id, country, country_code, province, latitude, longitude, confirmed_latest, deaths_latest, recovered_latest):
# id, country, province, coordinates, confirmed, deaths, recovered
coords = coordinates.Coordinates(latitude=latitude, longitude=longitude)
# Timelines
confirmed = timeline.Timeline(confirmed_latest)
deaths = timeline.Timeline(deaths_latest)
recovered = timeline.Timeline(recovered_latest)
# Date now.
now = datetime.utcnow().isoformat() + 'Z'
# Location.
location_obj = location.TimelinedLocation(test_id, country, province, coords, now, {
'confirmed': confirmed,
'deaths' : deaths,
'recovered': recovered,
})
assert location_obj.country_code == country_code
#validate serialize
check_dict = {
'id': test_id,
'country': country,
'country_code': country_code,
'province': province,
'last_updated': now,
'coordinates': {
'latitude': latitude,
'longitude': longitude
},
'latest': {
'confirmed': confirmed_latest,
'deaths': deaths_latest,
'recovered': recovered_latest
}
}
assert location_obj.serialize() == check_dict