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
60 lines (49 loc) · 1.57 KB
/
test_location.py
File metadata and controls
60 lines (49 loc) · 1.57 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
60
from datetime import datetime
from unittest import mock
import pytest
from app import coordinates, location, models
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.models.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 = models.Timeline(confirmed_latest)
deaths = models.Timeline(deaths_latest)
recovered = models.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 location_obj.serialize() is not None