-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathconftest.py
More file actions
420 lines (301 loc) · 9.61 KB
/
conftest.py
File metadata and controls
420 lines (301 loc) · 9.61 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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
import configparser
import contextlib
import os
from typing import ContextManager, List, TextIO
import pytest
from openapi3 import OpenAPI
from openapi3.paths import Operation, Parameter
from yaml import safe_load
from linodecli.baked import OpenAPIOperation
from linodecli.cli import CLI
MOCK_CONFIG = """
[DEFAULT]
default-user = testuser
[testuser]
region = us-southeast
image = linode/ubuntu21.10
token = notafaketoken
type = g6-nanode-1
"""
LOADED_FILES = {}
# Use an absolute path for fixtures so tests work regardless of the current
# working directory (VSCode test runner may change cwd when running a single
# test file).
FIXTURES_PATH = os.path.normpath(
os.path.join(os.path.dirname(__file__), "..", "fixtures")
)
@contextlib.contextmanager
def open_fixture(filename: str) -> ContextManager[TextIO]:
"""
Gets the reader for a given fixture.
:returns: A context manager yielding the fixture's reader.
"""
f = open(os.path.join(FIXTURES_PATH, filename), "r")
try:
yield f
finally:
f.close()
def _get_parsed_yaml(filename):
"""
Returns a python dict that is a parsed yaml file from the tests/fixtures
directory.
:param filename: The filename to load. Must exist in tests/fixtures and
include extension.
:type filename: str
"""
if filename not in LOADED_FILES:
with open_fixture(filename) as f:
raw = f.read()
parsed = safe_load(raw)
LOADED_FILES[filename] = parsed
return LOADED_FILES[filename]
def _get_parsed_spec(filename):
"""
Returns an OpenAPI object loaded from a file in the tests/fixtures directory
:param filename: The filename to load. Must exist in tests/fixtures and
include extension.
:type filename: str
"""
if "spec:" + filename not in LOADED_FILES:
parsed = _get_parsed_yaml(filename)
spec = OpenAPI(parsed)
LOADED_FILES["spec:" + filename] = spec
return LOADED_FILES["spec:" + filename]
@pytest.fixture
def mock_cli(
version="0.0.0",
url="http://localhost",
defaults=True,
):
result = CLI(version, url, skip_config=True)
result.defaults = defaults
result.suppress_warnings = True
# Let's override the config with a custom one
conf = configparser.ConfigParser()
conf.read_string(MOCK_CONFIG)
result.config.config = conf
result.config._configured = True
# very evil pattern :)
# We need this to suppress warnings for operations that don't
# have access to the cli.suppress_warnings attribute.
# e.g. operation defaults
# sys.argv.append("--suppress-warnings")
return result
def make_test_operation(
command,
operation: Operation,
method,
params: Parameter,
):
return OpenAPIOperation(
command=command,
operation=operation,
method=method,
params=params,
)
@pytest.fixture
def list_operation():
"""
Creates the following CLI operation:
linode-cli foo bar --filterable_result [value]
GET http://localhost/v4/foo/bar
{}
X-Filter: {"filterable_result": "value"}
"""
spec = _get_parsed_spec("api_request_test_foobar_get.yaml")
dict_values = list(spec.paths.values())
# Get parameters for OpenAPIOperation() from yaml fixture
path = dict_values[0]
command = path.extensions.get("linode-cli-command", "default")
operation = getattr(path, "get")
method = "get"
list_operation = make_test_operation(
command, operation, method, path.parameters
)
return list_operation
@pytest.fixture
def create_operation():
"""
Creates the following CLI operation:
linode-cli foo bar --generic_arg [generic_arg] test_param
POST http://localhost/v4/foo/bar
{
"generic_arg": "[generic_arg]",
"test_param": test_param
}
"""
spec = _get_parsed_spec("api_request_test_foobar_post.yaml")
dict_values = list(spec.paths.values())
# Get parameters for OpenAPIOperation() from yaml fixture
path = dict_values[0]
command = path.extensions.get("linode-cli-command", "default")
operation = getattr(path, "post")
method = "post"
create_operation = make_test_operation(
command, operation, method, path.parameters
)
return create_operation
@pytest.fixture
def update_operation():
"""
Creates the following CLI operation:
linode-cli foo bar-update --generic_arg [generic_arg] test_param
PUT http://localhost/v4/foo/bar/{fooId}
{
"generic_arg": "[generic_arg]",
"test_param": test_param
}
"""
spec = _get_parsed_spec("api_request_test_foobar_put.yaml")
dict_values = list(spec.paths.values())
# Get parameters for OpenAPIOperation() from yaml fixture
path = dict_values[0]
command = path.extensions.get("linode-cli-command", "default")
operation = getattr(path, "put")
method = "put"
create_operation = make_test_operation(
command, operation, method, path.parameters
)
return create_operation
@pytest.fixture
def list_operation_for_output_tests():
"""
Creates the following CLI operation:
GET http://localhost/v4/foo/bar
{}
X-Filter: {"cool": "value"}
"""
spec = _get_parsed_spec("output_test_get.yaml")
dict_values = list(spec.paths.values())
# Get parameters for OpenAPIOperation() from yaml fixture
path = dict_values[0]
command = path.extensions.get("linode-cli-command", "default")
operation = getattr(path, "get")
method = "get"
cool_operation = make_test_operation(
command, operation, method, path.parameters
)
return cool_operation
@pytest.fixture
def list_operation_for_overrides_test():
"""
Creates the following CLI operation:
GET http://localhost/v4/foo/bar
{}
X-Filter: {"cool": "value"}
"""
spec = _get_parsed_spec("overrides_test_get.yaml")
dict_values = list(spec.paths.values())
# Get parameters for OpenAPIOperation() from yaml fixture
path = dict_values[0]
command = path.extensions.get("linode-cli-command", "default")
operation = getattr(path, "get")
method = "get"
cool_operation = make_test_operation(
command, operation, method, path.parameters
)
return cool_operation
@pytest.fixture
def list_operation_for_response_test():
"""
Creates the following CLI operation:
GET http://localhost/v4/foo/bar
{}
X-Filter: {"cool": "value"}
"""
spec = _get_parsed_spec("response_test_get.yaml")
dict_values = list(spec.paths.values())
# Get parameters for OpenAPIOperation() from yaml fixture
path = dict_values[0]
command = path.extensions.get("linode-cli-command", "default")
operation = getattr(path, "get")
method = "get"
cool_operation = make_test_operation(
command, operation, method, path.parameters
)
return cool_operation
@pytest.fixture
def get_operation_for_subtable_test():
"""
Creates the following CLI operation:
GET http://localhost/v4/foo/bar
Returns {
"table": [
{
"foo": "",
"bar": 0
}
],
"foo": {
"single_nested": {
"foo": "",
"bar": ""
},
"table": [
{
"foobar": ["127.0.0.1"]
}
]
},
"foobar": ""
}
"""
spec = _get_parsed_spec("subtable_test_get.yaml")
dict_values = list(spec.paths.values())
# Get parameters for OpenAPIOperation() from yaml fixture
path = dict_values[0]
command = path.extensions.get("linode-cli-command", "default")
operation = getattr(path, "get")
method = "get"
return make_test_operation(command, operation, method, path.parameters)
@pytest.fixture
def post_operation_with_one_ofs() -> OpenAPIOperation:
"""
Creates a new OpenAPI operation that makes heavy use of oneOfs and anyOfs.
"""
spec = _get_parsed_spec("operation_with_one_ofs.yaml")
# Get parameters for OpenAPIOperation() from yaml fixture
path = list(spec.paths.values())[0]
return make_test_operation(
path.extensions.get("linode-cli-command", "default"),
getattr(path, "post"),
"post",
path.parameters,
)
@pytest.fixture
def get_openapi_for_api_components_tests() -> OpenAPI:
"""
Creates a set of OpenAPI operations with various apiVersion and
`server` configurations.
"""
return _get_parsed_spec("api_url_components_test.yaml")
@pytest.fixture
def get_openapi_for_docs_url_tests() -> OpenAPI:
"""
Creates a set of OpenAPI operations with a GET endpoint using the
legacy-style docs URL and a POST endpoint using the new-style docs URL.
"""
return _get_parsed_spec("docs_url_test.yaml")
@pytest.fixture
def mocked_config():
"""
mock config representing cli.config
"""
class Config:
config = configparser.ConfigParser()
def write_config(self): # pylint: disable=missing-function-docstring
pass
return Config()
def assert_contains_ordered_substrings(target: str, entries: List[str]):
"""
Asserts whether the given string contains the given entries in order,
ignoring any irrelevant characters in-between.
:param target: The string to search.
:param entries: The ordered list of entries to search for.
"""
start_index = 0
for entry in entries:
find_index = target[start_index:].find(entry)
assert find_index >= 0
# Search for the next entry after the end of this entry
start_index = find_index + len(entry)