-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest_api.py
250 lines (213 loc) · 7.27 KB
/
test_api.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
from os.path import join, dirname
import geopandas as gpd
import numpy as np
import pytest
from datetime import date
from snowexsql.api import (
PointMeasurements, LargeQueryCheckException, LayerMeasurements
)
from snowexsql.db import get_db, initialize
@pytest.fixture(scope="session")
def data_dir():
return join(dirname(__file__), 'data')
@pytest.fixture(scope="session")
def creds(data_dir):
return join(dirname(__file__), 'credentials.json')
@pytest.fixture(scope="session")
def db_url():
return 'localhost/test'
class DBConnection:
"""
Base class for connecting to the test database and overwiting the URL
so that we stay connected to our local testing DB
"""
CLZ = PointMeasurements
@pytest.fixture(scope="class")
def db(self, creds, db_url):
engine, session, metadata = get_db(
db_url, credentials=creds, return_metadata=True)
initialize(engine)
yield engine
# cleanup
session.flush()
session.rollback()
metadata.drop_all(bind=engine)
session.close()
@pytest.fixture(scope="class")
def clz(self, db, db_url):
"""
Extend the class and overwrite the database name
"""
url = db.url
class Extended(self.CLZ):
DB_NAME = f"{url.username}:{url.password}@{url.host}/{url.database}"
yield Extended
def unsorted_list_tuple_compare(l1, l2):
# turn lists into sets, but get rid of any Nones
l1 = set([l[0] for l in l1 if l[0] is not None])
l2 = set([l[0] for l in l2 if l[0] is not None])
# compare the sets
return l1 == l2
class TestPointMeasurements(DBConnection):
"""
Test the Point Measurement class
"""
CLZ = PointMeasurements
def test_all_types(self, clz):
result = clz().all_types
assert unsorted_list_tuple_compare(
result,
[]
)
def test_all_site_names(self, clz):
result = clz().all_site_names
assert unsorted_list_tuple_compare(
result, []
)
def test_all_dates(self, clz):
result = clz().all_dates
assert len(result) == 0
def test_all_observers(self, clz):
result = clz().all_observers
assert unsorted_list_tuple_compare(
result, []
)
def test_all_instruments(self, clz):
result = clz().all_instruments
assert unsorted_list_tuple_compare(
result, []
)
@pytest.mark.parametrize(
"kwargs, expected_length, mean_value", [
({
"date": date(2020, 5, 28),
"instrument": 'camera'
}, 0, np.nan),
({"instrument": "magnaprobe", "limit": 10}, 0, np.nan), # limit works
({
"date": date(2020, 5, 28),
"instrument": 'pit ruler'
}, 0, np.nan),
({
"date_less_equal": date(2019, 10, 1),
}, 0, np.nan),
({
"date_greater_equal": date(2020, 6, 7),
}, 0, np.nan),
]
)
def test_from_filter(self, clz, kwargs, expected_length, mean_value):
result = clz.from_filter(**kwargs)
assert len(result) == expected_length
if expected_length > 0:
assert pytest.approx(result["value"].mean()) == mean_value
@pytest.mark.parametrize(
"kwargs, expected_error", [
({"notakey": "value"}, ValueError),
# ({"instrument": "magnaprobe"}, LargeQueryCheckException),
({"date": [date(2020, 5, 28), date(2019, 10, 3)]}, ValueError),
]
)
def test_from_filter_fails(self, clz, kwargs, expected_error):
"""
Test failure on not-allowed key and too many returns
"""
with pytest.raises(expected_error):
clz.from_filter(**kwargs)
def test_from_area(self, clz):
shp = gpd.points_from_xy(
[743766.4794971556], [4321444.154620216], crs="epsg:26912"
).buffer(10)[0]
result = clz.from_area(
shp=shp,
date=date(2019, 10, 30)
)
assert len(result) == 0
def test_from_area_point(self, clz):
pts = gpd.points_from_xy([743766.4794971556], [4321444.154620216])
crs = "26912"
result = clz.from_area(
pt=pts[0], buffer=10, crs=crs,
date=date(2019, 10, 30)
)
assert len(result) == 0
class TestLayerMeasurements(DBConnection):
"""
Test the Layer Measurement class
"""
CLZ = LayerMeasurements
def test_all_types(self, clz):
result = clz().all_types
assert result == []
def test_all_site_names(self, clz):
result = clz().all_site_names
assert result == []
def test_all_dates(self, clz):
result = clz().all_dates
assert len(result) == 0
def test_all_observers(self, clz):
result = clz().all_observers
assert unsorted_list_tuple_compare(result, [])
def test_all_instruments(self, clz):
result = clz().all_instruments
assert unsorted_list_tuple_compare(result, [])
@pytest.mark.parametrize(
"kwargs, expected_length, mean_value", [
({
"date": date(2020, 3, 12), "type": "density",
"pit_id": "COERIB_20200312_0938"
}, 0, np.nan), # filter to 1 pit
({"instrument": "IRIS", "limit": 10}, 0, np.nan), # limit works
({
"date": date(2020, 5, 28),
"instrument": 'IRIS'
}, 0, np.nan), # nothing returned
({
"date_less_equal": date(2019, 12, 15),
"type": 'density'
}, 0, np.nan),
({
"date_greater_equal": date(2020, 5, 13),
"type": 'density'
}, 0, np.nan),
]
)
def test_from_filter(self, clz, kwargs, expected_length, mean_value):
result = clz.from_filter(**kwargs)
assert len(result) == expected_length
if expected_length > 0:
assert pytest.approx(
result["value"].astype("float").mean()
) == mean_value
@pytest.mark.parametrize(
"kwargs, expected_error", [
({"notakey": "value"}, ValueError),
# ({"date": date(2020, 3, 12)}, LargeQueryCheckException),
({"date": [date(2020, 5, 28), date(2019, 10, 3)]}, ValueError),
]
)
def test_from_filter_fails(self, clz, kwargs, expected_error):
"""
Test failure on not-allowed key and too many returns
"""
with pytest.raises(expected_error):
clz.from_filter(**kwargs)
def test_from_area(self, clz):
df = gpd.GeoDataFrame(
geometry=gpd.points_from_xy(
[743766.4794971556], [4321444.154620216], crs="epsg:26912"
).buffer(1000.0)
).set_crs("epsg:26912")
result = clz.from_area(
type="density",
shp=df.iloc[0].geometry,
)
assert len(result) == 0
def test_from_area_point(self, clz):
pts = gpd.points_from_xy([743766.4794971556], [4321444.154620216])
crs = "26912"
result = clz.from_area(
pt=pts[0], buffer=1000, crs=crs,
type="density",
)
assert len(result) == 0