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
40 lines (32 loc) · 1.56 KB
/
test_location.py
File metadata and controls
40 lines (32 loc) · 1.56 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
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, country_population, province, latitude, longitude, confirmed_latest, deaths_latest, recovered_latest", [
(0, "Thailand", "TH", 1000, "", 15, 100, 1000, 1111, 22222),
(1, "Deutschland", "DE", 1000, "", 15, 100, 1000, 1111, 22222),
(2, "Cruise Ship", "XX", 1000, "", 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, country_population, 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
assert not location_obj.serialize() == None