-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_dockerprovider.py
More file actions
357 lines (316 loc) · 14 KB
/
test_dockerprovider.py
File metadata and controls
357 lines (316 loc) · 14 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
import tempfile
from pathlib import Path
import logging
import subprocess
import pytest
from abxpkg import Binary, DockerProvider, SemVer
@pytest.mark.docker_required
class TestDockerProvider:
def test_bin_dir_alias_without_explicit_install_root_keeps_default_root(
self,
test_machine,
):
test_machine.require_docker_daemon()
with tempfile.TemporaryDirectory() as temp_dir:
bin_dir = Path(temp_dir) / "custom-bin"
provider = DockerProvider.model_validate(
{
"bin_dir": bin_dir,
"postinstall_scripts": True,
"min_release_age": 0,
},
).get_provider_with_overrides(
overrides={
"shellcheck": {"install_args": ["koalaman/shellcheck:v0.10.0"]},
},
)
installed = provider.install("shellcheck")
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_abspath is not None
assert provider.install_root is not None
assert provider.install_root != bin_dir.parent
assert provider.bin_dir == bin_dir
assert installed.loaded_abspath.parent == provider.bin_dir
metadata_dir = provider.install_root / "metadata"
assert metadata_dir == provider.install_root / "metadata"
assert (metadata_dir / "shellcheck.json").is_file()
def test_install_root_alias_without_explicit_bin_dir_uses_root_bin(
self,
test_machine,
):
test_machine.require_docker_daemon()
with tempfile.TemporaryDirectory() as temp_dir:
install_root = Path(temp_dir) / "docker-root"
provider = DockerProvider.model_validate(
{
"install_root": install_root,
"postinstall_scripts": True,
"min_release_age": 0,
},
).get_provider_with_overrides(
overrides={
"shellcheck": {"install_args": ["koalaman/shellcheck:v0.10.0"]},
},
)
installed = provider.install("shellcheck")
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_abspath is not None
assert provider.install_root == install_root
assert provider.bin_dir == install_root / "bin"
assert installed.loaded_abspath.parent == provider.bin_dir
metadata_dir = install_root / "metadata"
assert metadata_dir.is_dir()
assert (metadata_dir / "shellcheck.json").is_file()
def test_install_root_and_bin_dir_aliases_install_the_shim_in_the_requested_location(
self,
test_machine,
):
test_machine.require_docker_daemon()
with tempfile.TemporaryDirectory() as temp_dir:
install_root = Path(temp_dir) / "docker-root"
bin_dir = Path(temp_dir) / "custom-bin"
provider = DockerProvider.model_validate(
{
"install_root": install_root,
"bin_dir": bin_dir,
"postinstall_scripts": True,
"min_release_age": 0,
},
).get_provider_with_overrides(
overrides={
"shellcheck": {"install_args": ["koalaman/shellcheck:v0.10.0"]},
},
)
installed = provider.install("shellcheck")
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_abspath is not None
assert provider.install_root == install_root
assert provider.bin_dir == bin_dir
assert installed.loaded_abspath.parent == provider.bin_dir
metadata_dir = install_root / "metadata"
assert metadata_dir.is_dir()
assert (metadata_dir / "shellcheck.json").is_file()
def test_explicit_docker_shim_dir_takes_precedence_over_existing_PATH_entries(
self,
test_machine,
):
test_machine.require_docker_daemon()
with tempfile.TemporaryDirectory() as temp_dir:
temp_dir_path = Path(temp_dir)
ambient_provider = DockerProvider(
bin_dir=temp_dir_path / "ambient-docker/bin",
postinstall_scripts=True,
min_release_age=0,
).get_provider_with_overrides(
overrides={
"shellcheck": {"install_args": ["koalaman/shellcheck:v0.10.0"]},
},
)
ambient_installed = ambient_provider.install("shellcheck")
assert ambient_installed is not None
docker_shim_dir = temp_dir_path / "docker/bin"
provider = DockerProvider(
PATH=str(ambient_provider.bin_dir),
bin_dir=docker_shim_dir,
postinstall_scripts=True,
min_release_age=0,
).get_provider_with_overrides(
overrides={
"shellcheck": {"install_args": ["koalaman/shellcheck:v0.10.0"]},
},
)
installed = provider.install("shellcheck")
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_abspath is not None
assert provider.install_root is not None
assert provider.install_root != docker_shim_dir.parent
assert provider.bin_dir == docker_shim_dir
assert installed.loaded_abspath.parent == provider.bin_dir
assert ambient_installed.loaded_abspath is not None
assert ambient_installed.loaded_abspath.parent == ambient_provider.bin_dir
assert installed.loaded_version == SemVer("0.10.0")
def test_provider_direct_methods_exercise_real_lifecycle(self, test_machine):
test_machine.require_docker_daemon()
with tempfile.TemporaryDirectory() as temp_dir:
provider = DockerProvider(
bin_dir=Path(temp_dir) / "docker/bin",
postinstall_scripts=True,
min_release_age=0,
).get_provider_with_overrides(
overrides={
"shellcheck": {"install_args": ["koalaman/shellcheck:v0.10.0"]},
},
)
test_machine.exercise_provider_lifecycle(provider, bin_name="shellcheck")
def test_provider_direct_min_version_revalidates_final_installed_image(
self,
test_machine,
):
test_machine.require_docker_daemon()
with tempfile.TemporaryDirectory() as temp_dir:
provider = DockerProvider(
bin_dir=Path(temp_dir) / "docker/bin",
postinstall_scripts=True,
min_release_age=0,
).get_provider_with_overrides(
overrides={
"shellcheck": {"install_args": ["koalaman/shellcheck:v0.10.0"]},
},
)
with pytest.raises(ValueError):
provider.install("shellcheck", min_version=SemVer("999.0.0"))
loaded = provider.load("shellcheck", quiet=True, no_cache=True)
test_machine.assert_shallow_binary_loaded(loaded)
assert loaded is not None
assert loaded.loaded_version == SemVer("0.10.0")
def test_latest_tag_falls_back_to_runtime_version_probe(self, test_machine):
test_machine.require_docker_daemon()
with tempfile.TemporaryDirectory() as temp_dir:
provider = DockerProvider(
bin_dir=Path(temp_dir) / "docker/bin",
postinstall_scripts=True,
min_release_age=0,
).get_provider_with_overrides(
overrides={
"shellcheck": {"install_args": ["koalaman/shellcheck:latest"]},
},
)
installed = provider.install("shellcheck")
test_machine.assert_shallow_binary_loaded(installed)
assert installed is not None
assert installed.loaded_version is not None
def test_install_repairs_snapshot_collision_by_repulling_image(
self,
monkeypatch,
):
with tempfile.TemporaryDirectory() as temp_dir:
provider = DockerProvider(
bin_dir=Path(temp_dir) / "docker/bin",
postinstall_scripts=True,
min_release_age=0,
)
image_ref = "koalaman/shellcheck:latest"
calls: list[list[str]] = []
def fake_exec(self, bin_name, cmd=(), quiet=False, **kwargs):
cmd_list = [str(part) for part in cmd]
calls.append(cmd_list)
if cmd_list == ["pull", image_ref]:
if calls.count(cmd_list) == 1:
return subprocess.CompletedProcess(
[str(bin_name), *cmd_list],
1,
"latest: Pulling from koalaman/shellcheck\n",
"unable to prepare extraction snapshot: "
'AlreadyExists: target snapshot "sha256:test": '
"already exists\n",
)
return subprocess.CompletedProcess(
[str(bin_name), *cmd_list],
0,
"Status: Downloaded newer image for koalaman/shellcheck:latest\n",
"",
)
if cmd_list == ["image", "rm", "--force", image_ref]:
return subprocess.CompletedProcess(
[str(bin_name), *cmd_list],
0,
"Deleted: sha256:test\n",
"",
)
raise AssertionError(f"unexpected docker exec: {cmd_list}")
monkeypatch.setattr(DockerProvider, "exec", fake_exec)
output = provider.default_install_handler(
"shellcheck",
install_args=[image_ref],
)
assert ["pull", image_ref] in calls
assert calls.count(["pull", image_ref]) == 2
assert ["image", "rm", "--force", image_ref] in calls
assert "already exists" in output
assert provider.install_root is not None
assert provider.bin_dir is not None
assert (provider.install_root / "metadata" / "shellcheck.json").is_file()
assert (provider.bin_dir / "shellcheck").is_file()
def test_unsupported_security_controls_warn_and_continue(
self,
test_machine,
caplog,
):
test_machine.require_docker_daemon()
with tempfile.TemporaryDirectory() as temp_dir:
with caplog.at_level(logging.WARNING, logger="abxpkg.binprovider"):
installed = (
DockerProvider(
bin_dir=Path(temp_dir) / "bad/bin",
postinstall_scripts=False,
min_release_age=1,
)
.get_provider_with_overrides(
overrides={
"shellcheck": {
"install_args": ["koalaman/shellcheck:v0.10.0"],
},
},
)
.install("shellcheck")
)
test_machine.assert_shallow_binary_loaded(installed)
assert "ignoring unsupported min_release_age=1" in caplog.text
assert "ignoring unsupported postinstall_scripts=False" in caplog.text
caplog.clear()
binary = Binary(
name="shellcheck",
binproviders=[
DockerProvider(
bin_dir=Path(temp_dir) / "ok/bin",
postinstall_scripts=False,
min_release_age=1,
),
],
postinstall_scripts=False,
min_release_age=1,
overrides={
"docker": {"install_args": ["koalaman/shellcheck:v0.10.0"]},
},
)
with caplog.at_level(logging.WARNING, logger="abxpkg.binprovider"):
installed = binary.install()
test_machine.assert_shallow_binary_loaded(installed)
assert "ignoring unsupported min_release_age=1" in caplog.text
assert "ignoring unsupported postinstall_scripts=False" in caplog.text
def test_binary_direct_methods_exercise_real_lifecycle(self, test_machine):
test_machine.require_docker_daemon()
with tempfile.TemporaryDirectory() as temp_dir:
binary = Binary(
name="shellcheck",
binproviders=[
DockerProvider(
bin_dir=Path(temp_dir) / "docker/bin",
postinstall_scripts=True,
min_release_age=0,
),
],
postinstall_scripts=True,
min_release_age=0,
overrides={
"docker": {"install_args": ["koalaman/shellcheck:v0.10.0"]},
},
)
test_machine.exercise_binary_lifecycle(binary)
def test_provider_dry_run_does_not_install_shellcheck(self, test_machine):
test_machine.require_docker_daemon()
with tempfile.TemporaryDirectory() as temp_dir:
provider = DockerProvider(
bin_dir=Path(temp_dir) / "docker/bin",
postinstall_scripts=True,
min_release_age=0,
).get_provider_with_overrides(
overrides={
"shellcheck": {"install_args": ["koalaman/shellcheck:v0.10.0"]},
},
)
test_machine.exercise_provider_dry_run(provider, bin_name="shellcheck")