-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtest_cli.py
311 lines (283 loc) · 12.2 KB
/
test_cli.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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
import os
import importlib_resources
import pytest
from click.testing import CliRunner
from genet import cli
GENET_SRC_DIR = importlib_resources.files("genet")
EXAMPLE_DATA_DIR = GENET_SRC_DIR.parent.parent / "examples" / "example_data"
EXAMPLE_NETWORK = EXAMPLE_DATA_DIR / "pt2matsim_network" / "network.xml"
EXAMPLE_SCHEDULE = EXAMPLE_DATA_DIR / "pt2matsim_network" / "schedule.xml"
EXAMPLE_VEHICLES = EXAMPLE_DATA_DIR / "pt2matsim_network" / "vehicles.xml"
PROJECTION = "epsg:27700"
@pytest.fixture(scope="function")
def invoke_runner_and_check_files(tmpdir_factory):
outdir = tmpdir_factory.mktemp("outdir")
def _invoke_runner_and_check_files(
func: str, args: list[str], expected_files: list = [], expected_files_on_fail: list = []
):
_check_output_files_do_not_exist(expected_files)
runner = CliRunner()
result = runner.invoke(getattr(cli, func), args + [f"--output_dir={outdir}"])
try:
assert result.exit_code == 0, f"Script {func} failed."
except AssertionError as e:
_check_output_files_exist(expected_files_on_fail)
raise e
_check_output_files_exist(expected_files)
def _check_output_files_do_not_exist(files: list):
for file in files:
file_path = os.path.join(outdir, file)
assert not os.path.exists(file_path), f"File {file_path} exists but is not expected."
def _check_output_files_exist(files: list):
for file in files:
file_path = os.path.join(outdir, file)
assert os.path.exists(file_path), f"File {file_path} does not exist but is expected."
return _invoke_runner_and_check_files
# Tests marked so they can be ignored when building the cml-genet conda package
# since example data isn't included in the build.
@pytest.mark.uses_example_data
class TestCLI:
def test_add_elevation_to_network(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"add_elevation_to_network",
args=[
f"--network={EXAMPLE_NETWORK}",
f"--projection={PROJECTION}",
f'--elevation={pytest.test_data_dir / "elevation" / "fitzrovia_elevation.tif"}',
"--null_value=0",
],
expected_files=[
"link_slope_dictionary.json",
"link_slopes.xml",
"network.xml",
"node_elevation_dictionary.json",
os.path.join("supporting_outputs", "link_slope.parquet"),
os.path.join("supporting_outputs", "node_elevation.parquet"),
"validation_report_for_elevation.json",
],
)
def test_auto_schedule_fixes(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"auto_schedule_fixes",
args=[
f"--network={EXAMPLE_NETWORK}",
f"--schedule={EXAMPLE_SCHEDULE}",
f"--vehicles={EXAMPLE_VEHICLES}",
f"--projection={PROJECTION}",
"--vehicle_scalings=1,10",
],
expected_files=[
"schedule.xml",
"vehicles.xml",
"1_perc_vehicles.xml",
"10_perc_vehicles.xml",
],
)
def test_generate_standard_outputs(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"generate_standard_outputs",
args=[
f"--network={EXAMPLE_NETWORK}",
f"--schedule={EXAMPLE_SCHEDULE}",
f"--vehicles={EXAMPLE_VEHICLES}",
f"--projection={PROJECTION}",
],
expected_files=[
"network_nodes.parquet",
"schedule_nodes.parquet",
"summary_report.json",
"network_links.parquet",
"schedule_links.parquet",
os.path.join("schedule", "speed", "pt_network_speeds.parquet"),
os.path.join("schedule", "speed", "pt_speeds.parquet"),
os.path.join("routing", "schedule_network_routes_geodataframe.parquet"),
],
)
def test_inspect_google_directions_requests_for_network(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"inspect_google_directions_requests_for_network",
args=[
f"--network={EXAMPLE_NETWORK}",
"--subset_conditions=primary,motorway",
f"--projection={PROJECTION}",
],
expected_files=["api_requests.json", os.path.join("subset", "api_requests.json")],
)
def test_intermodal_access_egress_network(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"intermodal_access_egress_network",
args=[
f"--network={EXAMPLE_NETWORK}",
f"--schedule={EXAMPLE_SCHEDULE}",
f"--vehicles={EXAMPLE_VEHICLES}",
f"--projection={PROJECTION}",
"--pt_modes=bus",
"--network_snap_modes=car",
"--teleport_modes=bike",
"--step_size=10",
"--distance_threshold=20",
],
expected_files=[
"vehicles.xml",
"schedule.xml",
os.path.join("supporting_outputs", "car_access_egress_links.geojson"),
os.path.join("supporting_outputs", "stops.geojson"),
],
)
def test_make_pt_network(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"make_pt_network",
args=[
f"--network={EXAMPLE_NETWORK}",
f'--gtfs={os.path.join(EXAMPLE_DATA_DIR, "example_gtfs")}',
"--gtfs_day=20190603",
f"--projection={PROJECTION}",
"--snapping_distance=40",
"--processes=2",
],
expected_files=["vehicles.xml", "schedule.xml", "network.xml", "standard_outputs.zip"],
)
def test_make_road_only_network(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"make_road_only_network",
args=[
f'--osm={os.path.join(EXAMPLE_DATA_DIR, "example.osm")}',
f'--osm_config={os.path.join(GENET_SRC_DIR, "configs", "OSM", "slim_config.yml")}',
"--connected_components=1",
f"--projection={PROJECTION}",
"--processes=2",
],
expected_files=["network.xml"],
)
def test_reproject_network(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"reproject_network",
args=[
f"--network={EXAMPLE_NETWORK}",
f"--schedule={EXAMPLE_SCHEDULE}",
f"--vehicles={EXAMPLE_VEHICLES}",
"--current_projection=epsg:27700",
"--new_projection=epsg:4326",
"--processes=2",
],
expected_files=["vehicles.xml", "schedule.xml", "network.xml"],
)
def test_scale_vehicles(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"scale_vehicles",
args=[
f"--schedule={EXAMPLE_SCHEDULE}",
f"--vehicles={EXAMPLE_VEHICLES}",
f"--projection={PROJECTION}",
"--vehicle_scalings",
"1,10",
],
expected_files=["1_perc_vehicles.xml", "10_perc_vehicles.xml"],
)
def test_separate_modes_in_network(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"separate_modes_in_network",
args=[
f"--network={EXAMPLE_NETWORK}",
f"--projection={PROJECTION}",
"--modes=bus",
"--increase_capacity",
],
expected_files=[
"validation_report.json",
"network.xml",
os.path.join("supporting_outputs", "mode_bus_after.parquet"),
os.path.join("supporting_outputs", "mode_bus_before.parquet"),
],
)
def test_simplify_network(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"simplify_network",
args=[
f"--network={EXAMPLE_NETWORK}",
f"--schedule={EXAMPLE_SCHEDULE}",
f"--vehicles={EXAMPLE_VEHICLES}",
f"--projection={PROJECTION}",
"--processes=1",
"--force_strongly_connected_graph",
"--vehicle_scalings=1,10",
],
expected_files=[
"vehicles.xml",
"1_perc_vehicles.xml",
"schedule.xml",
"10_perc_vehicles.xml",
"validation_report.json",
"network.xml",
"standard_outputs.zip",
"link_simp_map.json",
],
)
def test_squeeze_external_area(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"squeeze_external_area",
args=[
f"--network={EXAMPLE_NETWORK}",
f"--projection={PROJECTION}",
f'--study_area={os.path.join(EXAMPLE_DATA_DIR, "Fitzrovia_polygon.geojson")}',
"--freespeed=0.5",
"--capacity=0.5",
],
expected_files=[
"network.xml",
os.path.join("supporting_outputs", "external_network_links.parquet"),
os.path.join("supporting_outputs", "capacity_before.parquet"),
os.path.join("supporting_outputs", "freespeed_after.parquet"),
os.path.join("supporting_outputs", "capacity_after.parquet"),
os.path.join("supporting_outputs", "freespeed_before.parquet"),
],
)
def test_squeeze_urban_links(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"squeeze_urban_links",
args=[
f"--network={EXAMPLE_NETWORK}",
f"--projection={PROJECTION}",
f'--study_area={os.path.join(EXAMPLE_DATA_DIR, "Fitzrovia_polygon.geojson")}',
f'--urban_geometries={pytest.test_data_dir / "geojson" / "Fitzrovia_urban_polygon.geojson"}',
"--freespeed",
"0.5",
"--capacity",
"0.5",
],
expected_files=[
"network.xml",
os.path.join("supporting_outputs", "capacity_before.parquet"),
os.path.join("supporting_outputs", "freespeed_after.parquet"),
os.path.join("supporting_outputs", "urban_network_links.parquet"),
os.path.join("supporting_outputs", "capacity_after.parquet"),
os.path.join("supporting_outputs", "freespeed_before.parquet"),
],
)
def test_validate_network(self, invoke_runner_and_check_files):
invoke_runner_and_check_files(
"validate_network",
args=[
f"--network={EXAMPLE_NETWORK}",
f"--schedule={EXAMPLE_SCHEDULE}",
f"--vehicles={EXAMPLE_VEHICLES}",
f"--projection={PROJECTION}",
],
expected_files=["validation_report.json", "summary_report.json"],
)
def test_google_api_script_throws_error_without_api_key(self, invoke_runner_and_check_files):
with pytest.raises(AssertionError) as excinfo:
invoke_runner_and_check_files(
"send_google_directions_requests_for_network",
args=[
f"--network={EXAMPLE_NETWORK}",
f"--projection={PROJECTION}",
"--requests_threshold=1",
"--subset_conditions=primary,motorway",
"--traffic_model=best_guess",
"--departure_time=now",
],
expected_files_on_fail=["api_requests.json"],
)
assert excinfo.match("Script send_google_directions_requests_for_network failed.")
assert excinfo.match("Number of requests exceeded the threshold")