-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathflows_test.py
More file actions
371 lines (355 loc) · 14.1 KB
/
flows_test.py
File metadata and controls
371 lines (355 loc) · 14.1 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
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
from http import HTTPStatus
import deepdiff.diff
import pytest
from fastapi import HTTPException
from pytest_mock import MockerFixture
from sqlalchemy import Connection
from starlette.testclient import TestClient
from routers.openml.flows import flow_exists
from tests.conftest import Flow
@pytest.mark.parametrize(
("name", "external_version"),
[
("a", "b"),
("c", "d"),
],
)
def test_flow_exists_calls_db_correctly(
name: str,
external_version: str,
expdb_test: Connection,
mocker: MockerFixture,
) -> None:
mocked_db = mocker.patch("database.flows.get_by_name")
flow_exists(name, external_version, expdb_test)
mocked_db.assert_called_once_with(
name=name,
external_version=external_version,
expdb=mocker.ANY,
)
@pytest.mark.parametrize(
"flow_id",
[1, 2],
)
def test_flow_exists_processes_found(
flow_id: int,
mocker: MockerFixture,
expdb_test: Connection,
) -> None:
fake_flow = mocker.MagicMock(id=flow_id)
mocker.patch(
"database.flows.get_by_name",
return_value=fake_flow,
)
response = flow_exists("name", "external_version", expdb_test)
assert response == {"flow_id": fake_flow.id}
def test_flow_exists_handles_flow_not_found(mocker: MockerFixture, expdb_test: Connection) -> None:
mocker.patch("database.flows.get_by_name", return_value=None)
with pytest.raises(HTTPException) as error:
flow_exists("foo", "bar", expdb_test)
assert error.value.status_code == HTTPStatus.NOT_FOUND
assert error.value.detail == "Flow not found."
def test_flow_exists(flow: Flow, py_api: TestClient) -> None:
response = py_api.get(f"/flows/exists/{flow.name}/{flow.external_version}")
assert response.status_code == HTTPStatus.OK
assert response.json() == {"flow_id": flow.id}
def test_flow_exists_not_exists(py_api: TestClient) -> None:
response = py_api.get("/flows/exists/foo/bar")
assert response.status_code == HTTPStatus.NOT_FOUND
assert response.json()["detail"] == "Flow not found."
def test_get_flow_no_subflow(py_api: TestClient) -> None:
response = py_api.get("/flows/1")
assert response.status_code == HTTPStatus.OK
expected = {
"id": 1,
"uploader": 16,
"name": "weka.ZeroR",
"class_name": "weka.classifiers.rules.ZeroR",
"version": 1,
"external_version": "Weka_3.9.0_12024",
"description": "Weka implementation of ZeroR",
"upload_date": "2017-03-24T14:26:38",
"language": "English",
"dependencies": "Weka_3.9.0",
"parameter": [
{
"name": "-do-not-check-capabilities",
"data_type": "flag",
"default_value": None,
"description": "If set, classifier capabilities are not checked before classifier is built\n\t(use with caution).", # noqa: E501
},
{
"name": "batch-size",
"data_type": "option",
"default_value": None,
"description": "The desired batch size for batch prediction (default 100).",
},
{
"name": "num-decimal-places",
"data_type": "option",
"default_value": None,
"description": "The number of decimal places for the output of numbers in the model (default 2).", # noqa: E501
},
{
"name": "output-debug-info",
"data_type": "flag",
"default_value": None,
"description": "If set, classifier is run in debug mode and\n\tmay output additional info to the console", # noqa: E501
},
],
"subflows": [],
"tag": ["OpenmlWeka", "weka"],
}
difference = deepdiff.diff.DeepDiff(response.json(), expected, ignore_order=True)
assert not difference
def test_get_flow_with_subflow(py_api: TestClient) -> None:
response = py_api.get("/flows/3")
assert response.status_code == HTTPStatus.OK
expected = {
"id": 3,
"uploader": 16,
"name": "weka.JRip",
"class_name": "weka.classifiers.rules.JRip",
"version": 1,
"external_version": "Weka_3.9.0_10153",
"description": (
"William W. Cohen: Fast Effective Rule Induction. "
"In: Twelfth International Conference on Machine Learning, 115-123, 1995."
),
"upload_date": "2017-03-24T14:26:40",
"language": "English",
"dependencies": "Weka_3.9.0",
"parameter": [
{
"name": "-do-not-check-capabilities",
"data_type": "flag",
"default_value": None,
"description": (
"If set, classifier capabilities are not checked before classifier is built\n\t"
"(use with caution)."
),
},
{
"name": "D",
"data_type": "flag",
"default_value": None,
"description": "Set whether turn on the\n\tdebug mode (Default: false)",
},
{
"name": "E",
"data_type": "flag",
"default_value": None,
"description": (
"Whether NOT check the error rate>=0.5\n\t"
"in stopping criteria \t(default: check)"
),
},
{
"name": "F",
"data_type": "option",
"default_value": 3,
"description": (
"Set number of folds for REP\n\tOne fold is used as pruning set.\n\t(default 3)"
),
},
{
"name": "N",
"data_type": "option",
"default_value": 2.0,
"description": (
"Set the minimal weights of instances\n\twithin a split.\n\t(default 2.0)"
),
},
{
"name": "O",
"data_type": "option",
"default_value": 2,
"description": "Set the number of runs of\n\toptimizations. (Default: 2)",
},
{
"name": "P",
"data_type": "flag",
"default_value": None,
"description": "Whether NOT use pruning\n\t(default: use pruning)",
},
{
"name": "S",
"data_type": "option",
"default_value": 1,
"description": "The seed of randomization\n\t(Default: 1)",
},
{
"name": "batch-size",
"data_type": "option",
"default_value": None,
"description": "The desired batch size for batch prediction (default 100).",
},
{
"name": "num-decimal-places",
"data_type": "option",
"default_value": None,
"description": (
"The number of decimal places for the output of numbers in "
"the model (default 2)."
),
},
{
"name": "output-debug-info",
"data_type": "flag",
"default_value": None,
"description": (
"If set, classifier is run in debug mode and\n\t"
"may output additional info to the console"
),
},
],
"subflows": [
{
"identifier": None,
"flow": {
"id": 4,
"uploader": 16,
"name": "weka.J48",
"class_name": "weka.classifiers.trees.J48",
"version": 1,
"external_version": "Weka_3.9.0_11194",
"description": (
"Ross Quinlan (1993). C4.5: Programs for Machine Learning. "
"Morgan Kaufmann Publishers, San Mateo, CA."
),
"upload_date": "2017-03-24T14:26:40",
"language": "English",
"dependencies": "Weka_3.9.0",
"parameter": [
{
"name": "-do-not-check-capabilities",
"data_type": "flag",
"default_value": None,
"description": (
"If set, classifier capabilities are not checked"
" before classifier is built\n\t(use with caution)."
),
},
{
"name": "-doNotMakeSplitPointActualValue",
"data_type": "flag",
"default_value": None,
"description": "Do not make split point actual value.",
},
{
"name": "A",
"data_type": "flag",
"default_value": None,
"description": "Laplace smoothing for predicted probabilities.",
},
{
"name": "B",
"data_type": "flag",
"default_value": None,
"description": "Use binary splits only.",
},
{
"name": "C",
"data_type": "option",
"default_value": 0.25,
"description": (
"Set confidence threshold for pruning.\n\t(default 0.25)"
),
},
{
"name": "J",
"data_type": "flag",
"default_value": None,
"description": (
"Do not use MDL correction for info gain on numeric attributes."
),
},
{
"name": "L",
"data_type": "flag",
"default_value": None,
"description": "Do not clean up after the tree has been built.",
},
{
"name": "M",
"data_type": "option",
"default_value": 2,
"description": (
"Set minimum number of instances per leaf.\n\t(default 2)"
),
},
{
"name": "N",
"data_type": "option",
"default_value": None,
"description": (
"Set number of folds for reduced error\n\t"
"pruning. One fold is used as pruning set.\n\t(default 3)"
),
},
{
"name": "O",
"data_type": "flag",
"default_value": None,
"description": "Do not collapse tree.",
},
{
"name": "Q",
"data_type": "option",
"default_value": None,
"description": "Seed for random data shuffling (default 1).",
},
{
"name": "R",
"data_type": "flag",
"default_value": None,
"description": "Use reduced error pruning.",
},
{
"name": "S",
"data_type": "flag",
"default_value": None,
"description": "Do not perform subtree raising.",
},
{
"name": "U",
"data_type": "flag",
"default_value": None,
"description": "Use unpruned tree.",
},
{
"name": "batch-size",
"data_type": "option",
"default_value": None,
"description": (
"The desired batch size for batch prediction (default 100)."
),
},
{
"name": "num-decimal-places",
"data_type": "option",
"default_value": None,
"description": (
"The number of decimal places for the output of numbers"
" in the model (default 2)."
),
},
{
"name": "output-debug-info",
"data_type": "flag",
"default_value": None,
"description": (
"If set, classifier is run in debug mode and\n\t"
"may output additional info to the console"
),
},
],
"tag": ["OpenmlWeka", "weka"],
"subflows": [],
},
}
],
"tag": ["OpenmlWeka", "weka"],
}
difference = deepdiff.diff.DeepDiff(response.json(), expected, ignore_order=True)
assert not difference