-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathtest_thirdparty.py
More file actions
426 lines (373 loc) · 16.6 KB
/
test_thirdparty.py
File metadata and controls
426 lines (373 loc) · 16.6 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
421
422
423
424
425
426
from unittest.mock import Mock
from unittest.mock import patch
from bci_build.container_attributes import Arch
from bci_build.os_version import OsVersion
from bci_build.package import DevelopmentContainer
from bci_build.package.thirdparty import ThirdPartyRepo
from bci_build.package.thirdparty import ThirdPartyRepoMixin
from bci_build.templates import DOCKERFILE_TEMPLATE
from tests.test_repomdparser import fake_repo_get
class DummyThirdPartyImage(ThirdPartyRepoMixin, DevelopmentContainer):
pass
DOCKERFILE_RENDERED_SINGLE = """# SPDX-License-Identifier: MIT
# Copyright
#!UseOBSRepositories
#!ExclusiveArch: x86_64 aarch64
#!BuildTag: bci/dummy-third-party-image:1-%RELEASE%
#!BuildTag: bci/dummy-third-party-image:1
#!BuildTag: bci/dummy-third-party-image:latest
#!BuildName: bci-dummy-third-party-image-1
#!BuildVersion: 15.7.1
FROM registry.suse.com/bci/bci-base:15.7
RUN \\
zypper -n install --no-recommends wget
RUN mkdir -p /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-1-1.0.2.aarch64.rpm sha256:value
COPY dummy-pkg-1-1.0.2.aarch64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-1-1.0.2.x86_64.rpm sha256:value
COPY dummy-pkg-1-1.0.2.x86_64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-3-1.0.2.aarch64.rpm sha256:value
COPY dummy-pkg-3-1.0.2.aarch64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-3-1.0.2.x86_64.rpm sha256:value
COPY dummy-pkg-3-1.0.2.x86_64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-2-1.0.2.aarch64.rpm sha256:value
COPY dummy-pkg-2-1.0.2.aarch64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-2-1.0.2.x86_64.rpm sha256:value
COPY dummy-pkg-2-1.0.2.x86_64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-5-1.0.2.aarch64.rpm sha256:value
COPY dummy-pkg-5-1.0.2.aarch64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-5-1.0.2.x86_64.rpm sha256:value
COPY dummy-pkg-5-1.0.2.x86_64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-4-1.0.2.aarch64.rpm sha256:value
COPY dummy-pkg-4-1.0.2.aarch64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-4-1.0.2.x86_64.rpm sha256:value
COPY dummy-pkg-4-1.0.2.x86_64.rpm /tmp/
COPY third-party.gpg.key /tmp/dummy-third-party-image.gpg.key
RUN rpm --import /tmp/dummy-third-party-image.gpg.key
RUN if [ "$(uname -m)" = "x86_64" ]; then \\
zypper -n install \\
/tmp/dummy-pkg-1-1.0.2.x86_64.rpm \\
/tmp/dummy-pkg-3-1.0.2.x86_64.rpm \\
/tmp/dummy-pkg-2-1.0.2.x86_64.rpm \\
/tmp/dummy-pkg-5-1.0.2.x86_64.rpm \\
/tmp/dummy-pkg-4-1.0.2.x86_64.rpm; \\
fi
RUN if [ "$(uname -m)" = "aarch64" ]; then \\
zypper -n install \\
/tmp/dummy-pkg-1-1.0.2.aarch64.rpm \\
/tmp/dummy-pkg-3-1.0.2.aarch64.rpm \\
/tmp/dummy-pkg-2-1.0.2.aarch64.rpm \\
/tmp/dummy-pkg-5-1.0.2.aarch64.rpm \\
/tmp/dummy-pkg-4-1.0.2.aarch64.rpm; \\
fi
COPY third-party.repo /etc/zypp/repos.d/dummy-third-party-image.repo
RUN rm -rf /tmp/*
# cleanup logs and temporary files
RUN zypper -n clean -a; \\
# LOGCLEAN #
# set the day of last password change to empty
RUN sed -i 's/^\\([^:]*:[^:]*:\\)[^:]*\\(:.*\\)$/\\1\\2/' /etc/shadow
# Define labels according to https://en.opensuse.org/Building_derived_containers
# labelprefix=com.suse.bci.dummy-third-party-image
LABEL org.opencontainers.image.authors="https://github.com/SUSE/bci/discussions"
LABEL org.opencontainers.image.title="SLE BCI Dummy Third Party Image"
LABEL org.opencontainers.image.description="Dummy Third Party Image container based on the SUSE Linux Enterprise Base Container Image."
LABEL org.opencontainers.image.version="1"
LABEL org.opencontainers.image.url="https://www.suse.com/products/base-container-images/"
LABEL org.opencontainers.image.created="%BUILDTIME%"
LABEL org.opencontainers.image.vendor="SUSE LLC"
LABEL org.opencontainers.image.source="%SOURCEURL%"
LABEL org.opencontainers.image.ref.name="1-%RELEASE%"
LABEL org.opensuse.reference="registry.suse.com/bci/dummy-third-party-image:1-%RELEASE%"
LABEL org.openbuildservice.disturl="%DISTURL%"
LABEL com.suse.supportlevel="techpreview"
LABEL com.suse.eula="sle-bci"
LABEL com.suse.lifecycle-url="https://www.suse.com/lifecycle#suse-linux-enterprise-server-15"
LABEL com.suse.release-stage="released"
# endlabelprefix
LABEL org.opencontainers.image.base.name="%BASE_REFNAME%"
LABEL org.opencontainers.image.base.digest="%BASE_DIGEST%"
LABEL io.artifacthub.package.readme-url="%SOURCEURL_WITH(README.md)%"
"""
DOCKERFILE_RENDERED_MULTI = """# SPDX-License-Identifier: MIT
# Copyright
#!UseOBSRepositories
#!ExclusiveArch: x86_64 aarch64
#!BuildTag: bci/dummy-third-party-image:1-%RELEASE%
#!BuildTag: bci/dummy-third-party-image:1
#!BuildTag: bci/dummy-third-party-image:latest
#!BuildName: bci-dummy-third-party-image-1
#!BuildVersion: 15.7.1
FROM registry.suse.com/bci/bci-base:15.7
RUN \\
zypper -n install --no-recommends wget
RUN mkdir -p /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-1-1.0.2.aarch64.rpm sha256:value
COPY dummy-pkg-1-1.0.2.aarch64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-1-1.0.2.x86_64.rpm sha256:value
COPY dummy-pkg-1-1.0.2.x86_64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-3-1.0.2.aarch64.rpm sha256:value
COPY dummy-pkg-3-1.0.2.aarch64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-3-1.0.2.x86_64.rpm sha256:value
COPY dummy-pkg-3-1.0.2.x86_64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-2-1.0.2.aarch64.rpm sha256:value
COPY dummy-pkg-2-1.0.2.aarch64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-2-1.0.2.x86_64.rpm sha256:value
COPY dummy-pkg-2-1.0.2.x86_64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-5-1.0.2.aarch64.rpm sha256:value
COPY dummy-pkg-5-1.0.2.aarch64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-5-1.0.2.x86_64.rpm sha256:value
COPY dummy-pkg-5-1.0.2.x86_64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-4-1.0.2.aarch64.rpm sha256:value
COPY dummy-pkg-4-1.0.2.aarch64.rpm /tmp/
#!RemoteAssetUrl: https://packages.example.com/sles/15.7/Packages/dummy-pkg-4-1.0.2.x86_64.rpm sha256:value
COPY dummy-pkg-4-1.0.2.x86_64.rpm /tmp/
COPY third-party.gpg.key /tmp/dummy-third-party-image.gpg.key
RUN rpm --import /tmp/dummy-third-party-image.gpg.key
COPY third-party-2.gpg.key /tmp/dummy-third-party-image-2.gpg.key
RUN rpm --import /tmp/dummy-third-party-image-2.gpg.key
RUN if [ "$(uname -m)" = "x86_64" ]; then \\
zypper -n install \\
/tmp/dummy-pkg-1-1.0.2.x86_64.rpm \\
/tmp/dummy-pkg-3-1.0.2.x86_64.rpm \\
/tmp/dummy-pkg-2-1.0.2.x86_64.rpm \\
/tmp/dummy-pkg-5-1.0.2.x86_64.rpm \\
/tmp/dummy-pkg-4-1.0.2.x86_64.rpm; \\
fi
RUN if [ "$(uname -m)" = "aarch64" ]; then \\
zypper -n install \\
/tmp/dummy-pkg-1-1.0.2.aarch64.rpm \\
/tmp/dummy-pkg-3-1.0.2.aarch64.rpm \\
/tmp/dummy-pkg-2-1.0.2.aarch64.rpm \\
/tmp/dummy-pkg-5-1.0.2.aarch64.rpm \\
/tmp/dummy-pkg-4-1.0.2.aarch64.rpm; \\
fi
COPY third-party.repo /etc/zypp/repos.d/dummy-third-party-image.repo
COPY third-party-2.repo /etc/zypp/repos.d/dummy-third-party-image-2.repo
RUN rm -rf /tmp/*
# cleanup logs and temporary files
RUN zypper -n clean -a; \\
# LOGCLEAN #
# set the day of last password change to empty
RUN sed -i 's/^\\([^:]*:[^:]*:\\)[^:]*\\(:.*\\)$/\\1\\2/' /etc/shadow
# Define labels according to https://en.opensuse.org/Building_derived_containers
# labelprefix=com.suse.bci.dummy-third-party-image
LABEL org.opencontainers.image.authors="https://github.com/SUSE/bci/discussions"
LABEL org.opencontainers.image.title="SLE BCI Dummy Third Party Image"
LABEL org.opencontainers.image.description="Dummy Third Party Image container based on the SUSE Linux Enterprise Base Container Image."
LABEL org.opencontainers.image.version="1"
LABEL org.opencontainers.image.url="https://www.suse.com/products/base-container-images/"
LABEL org.opencontainers.image.created="%BUILDTIME%"
LABEL org.opencontainers.image.vendor="SUSE LLC"
LABEL org.opencontainers.image.source="%SOURCEURL%"
LABEL org.opencontainers.image.ref.name="1-%RELEASE%"
LABEL org.opensuse.reference="registry.suse.com/bci/dummy-third-party-image:1-%RELEASE%"
LABEL org.openbuildservice.disturl="%DISTURL%"
LABEL com.suse.supportlevel="techpreview"
LABEL com.suse.eula="sle-bci"
LABEL com.suse.lifecycle-url="https://www.suse.com/lifecycle#suse-linux-enterprise-server-15"
LABEL com.suse.release-stage="released"
# endlabelprefix
LABEL org.opencontainers.image.base.name="%BASE_REFNAME%"
LABEL org.opencontainers.image.base.digest="%BASE_DIGEST%"
LABEL io.artifacthub.package.readme-url="%SOURCEURL_WITH(README.md)%"
"""
SLE_REPO_RENDERED = """[dummy-third-party-image]
name=dummy-third-party-image
baseurl=https://packages.example.com/sles/15.7/
enabled=1
gpgcheck=1
gpgkey=https://packages.example.com/keys/repo.asc
"""
OPENSUSE_REPO_RENDERED = """[dummy-third-party-image-2]
name=dummy-third-party-image-2
baseurl=https://packages.example.org/opensuse/15.7/
enabled=1
gpgcheck=1
gpgkey=https://packages.example.org/keys/repo.asc
"""
def test_single_third_party_repo_template():
image = DummyThirdPartyImage(
tag_version="1",
version="1",
os_version=OsVersion.SP7,
name="dummy-third-party-image",
pretty_name="Dummy Third Party Image",
is_latest=True,
package_name="dummy-third-party-image",
exclusive_arch=[Arch.X86_64, Arch.AARCH64],
package_list=["wget"],
third_party_repos=[
ThirdPartyRepo(
name="third-party",
url="https://packages.example.com/sles/15.7/",
key="GPGKEY",
key_url="https://packages.example.com/keys/repo.asc",
repo_name="dummy-third-party-image",
repo_filename="dummy-third-party-image.repo",
key_filename="dummy-third-party-image.gpg.key",
),
],
third_party_package_list=[
"dummy-pkg-1",
"dummy-pkg-3",
"dummy-pkg-2",
"dummy-pkg-5",
"dummy-pkg-4",
],
)
with patch("bci_build.repomdparser.requests.get", side_effect=fake_repo_get):
image.prepare_template()
rendered = DOCKERFILE_TEMPLATE.render(
image=image,
INFOHEADER="# Copyright",
DOCKERFILE_RUN="RUN",
LOG_CLEAN="# LOGCLEAN #",
BUILD_FLAVOR=image.build_flavor,
)
assert rendered == DOCKERFILE_RENDERED_SINGLE
assert image.extra_files.get("third-party.gpg.key") == "GPGKEY"
assert image.extra_files.get("third-party.repo") == SLE_REPO_RENDERED
def test_multiple_third_party_repo_template():
image = DummyThirdPartyImage(
tag_version="1",
version="1",
os_version=OsVersion.SP7,
name="dummy-third-party-image",
pretty_name="Dummy Third Party Image",
is_latest=True,
package_name="dummy-third-party-image",
exclusive_arch=[Arch.X86_64, Arch.AARCH64],
package_list=["wget"],
third_party_repos=[
ThirdPartyRepo(
name="third-party",
url="https://packages.example.com/sles/15.7/",
key="GPGKEY",
key_url="https://packages.example.com/keys/repo.asc",
repo_name="dummy-third-party-image",
repo_filename="dummy-third-party-image.repo",
key_filename="dummy-third-party-image.gpg.key",
),
ThirdPartyRepo(
name="third-party-2",
url="https://packages.example.org/opensuse/15.7/",
key="GPGKEY",
key_url="https://packages.example.org/keys/repo.asc",
repo_name="dummy-third-party-image-2",
repo_filename="dummy-third-party-image-2.repo",
key_filename="dummy-third-party-image-2.gpg.key",
),
],
third_party_package_list=[
"dummy-pkg-1",
"dummy-pkg-3",
"dummy-pkg-2",
"dummy-pkg-5",
"dummy-pkg-4",
],
)
with patch("bci_build.repomdparser.requests.get", side_effect=fake_repo_get):
image.prepare_template()
rendered = DOCKERFILE_TEMPLATE.render(
image=image,
INFOHEADER="# Copyright",
DOCKERFILE_RUN="RUN",
LOG_CLEAN="# LOGCLEAN #",
BUILD_FLAVOR=image.build_flavor,
)
assert rendered == DOCKERFILE_RENDERED_MULTI
assert image.extra_files.get("third-party.gpg.key") == "GPGKEY"
assert image.extra_files.get("third-party.repo") == SLE_REPO_RENDERED
assert image.extra_files.get("third-party-2.gpg.key") == "GPGKEY"
assert image.extra_files.get("third-party-2.repo") == OPENSUSE_REPO_RENDERED
def test_third_party_repo():
"""Test that we can set third_party_repos attribute on initialization and query it."""
image = DummyThirdPartyImage(
tag_version="1",
version="1",
os_version=OsVersion.SP7,
name="dummy-third-party-image",
pretty_name="Dummy Third Party Image",
is_latest=True,
package_name="dummy-third-party-image",
exclusive_arch=[Arch.X86_64, Arch.AARCH64],
package_list=["wget"],
third_party_repos=[
ThirdPartyRepo(
name="third-party",
url="https://packages.example.com/sles/15.7/",
key="GPGKEY",
key_url="https://packages.example.com/keys/repo.asc",
repo_name="dummy-third-party-image",
repo_filename="dummy-third-party-image.repo",
key_filename="dummy-third-party-image.gpg.key",
),
],
third_party_package_list=[
"dummy-pkg-1",
"dummy-pkg-3",
"dummy-pkg-2",
"dummy-pkg-5",
"dummy-pkg-4",
],
)
repo = image.third_party_repos[0]
assert repo.name == "third-party"
assert repo.url == "https://packages.example.com/sles/15.7/"
assert repo.key == "GPGKEY"
assert repo.key_url == "https://packages.example.com/keys/repo.asc"
assert repo.arch is None
assert repo.repo_name == "dummy-third-party-image"
assert repo.repo_filename == "dummy-third-party-image.repo"
assert repo.key_filename == "dummy-third-party-image.gpg.key"
def test_third_party_repo_with_prepare():
"""Test that the GPG key is fetched from configured url."""
expected_key_url = "https://packages.example.com/keys/repo.asc"
def mock_request_get(url, *args, **kwargs):
if url != expected_key_url:
return fake_repo_get(url)
resp = Mock()
resp.raise_for_status.return_value = None
resp.text = "NICE-GPG-KEY"
resp.status_code = 200
return resp
with patch(
"bci_build.package.thirdparty.requests.get",
side_effect=mock_request_get,
):
image = DummyThirdPartyImage(
tag_version="1",
version="1",
os_version=OsVersion.SP7,
name="dummy-third-party-image",
pretty_name="Dummy Third Party Image",
is_latest=True,
package_name="dummy-third-party-image",
exclusive_arch=[Arch.X86_64, Arch.AARCH64],
package_list=["wget"],
third_party_repos=[
ThirdPartyRepo(
name="third-party",
url="https://packages.example.com/sles/15.7/",
key_url=expected_key_url,
),
],
third_party_package_list=[
"dummy-pkg-1",
"dummy-pkg-3",
"dummy-pkg-2",
"dummy-pkg-5",
"dummy-pkg-4",
],
)
image.prepare_template()
repo = image.third_party_repos[0]
assert repo.name == "third-party"
assert repo.url == "https://packages.example.com/sles/15.7/"
assert repo.key == "NICE-GPG-KEY"
assert repo.key_url == expected_key_url
assert repo.arch is None
assert repo.repo_name == "third-party"
assert repo.repo_filename == "third-party.repo"
assert repo.key_filename == "third-party.gpg.key"