forked from canonical/cloud-init
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_ds_identify.py
More file actions
2890 lines (2753 loc) · 103 KB
/
Copy pathtest_ds_identify.py
File metadata and controls
2890 lines (2753 loc) · 103 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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is part of cloud-init. See LICENSE file for license information.
import copy
import os
from collections import namedtuple
from logging import getLogger
from pathlib import Path
from tempfile import mkdtemp
from textwrap import dedent
from uuid import uuid4
import pytest
import yaml
from cloudinit import atomic_helper, subp, util
from cloudinit.sources import DataSourceIBMCloud as ds_ibm
from cloudinit.sources import DataSourceOracle as ds_oracle
from cloudinit.sources import DataSourceSmartOS as ds_smartos
from tests.helpers import cloud_init_project_dir
from tests.unittests.helpers import (
dir2dict,
populate_dir,
populate_dir_with_ts,
)
LOG = getLogger(__name__)
UNAME_MYSYS = "Linux #83-Ubuntu SMP Wed Jan 18 14:10:15 UTC 2017 x86_64"
UNAME_PPC64EL = (
"Linux #106-Ubuntu SMP mon Jun 26 17:53:54 UTC 2017 "
"ppc64le ppc64le ppc64le"
)
UNAME_FREEBSD = (
"FreeBSD FreeBSD 14.0-RELEASE-p3 releng/14.0-n265398-20fae1e1699"
"GENERIC-MMCCAM amd64"
)
UNAME_OPENBSD = "OpenBSD GENERIC.MP#1397 amd64"
UNAME_WSL = (
"Linux 5.15.133.1-microsoft-standard-WSL2 #1 SMP Thu Oct 5 21:02:42 "
"UTC 2023 x86_64"
)
BLKID_EFI_ROOT = """
DEVNAME=/dev/sda1
UUID=8B36-5390
TYPE=vfat
PARTUUID=30d7c715-a6ae-46ee-b050-afc6467fc452
DEVNAME=/dev/sda2
UUID=19ac97d5-6973-4193-9a09-2e6bbfa38262
TYPE=ext4
PARTUUID=30c65c77-e07d-4039-b2fb-88b1fb5fa1fc
"""
# this is a Ubuntu 18.04 disk.img output (dual uefi and bios bootable)
BLKID_UEFI_UBUNTU = [
{"DEVNAME": "vda1", "TYPE": "ext4", "PARTUUID": uuid4(), "UUID": uuid4()},
{"DEVNAME": "vda14", "PARTUUID": uuid4()},
{
"DEVNAME": "vda15",
"TYPE": "vfat",
"LABEL": "UEFI",
"PARTUUID": uuid4(),
"UUID": "5F55-129B",
},
]
DEFAULT_CLOUD_CONFIG = """\
# The top level settings are used as module
# and base configuration.
# A set of users which may be applied and/or used by various modules
# when a 'default' entry is found it will reference the 'default_user'
# from the distro configuration specified below
users:
- default
# If this is set, 'root' will not be able to ssh in and they
# will get a message to login instead as the default $user
disable_root: true
# This will cause the set+update hostname module to not operate (if true)
preserve_hostname: false
# If you use datasource_list array, keep array items in a single line.
# If you use multi line array, ds-identify script won't read array items.
# Example datasource config
# datasource:
# Ec2:
# metadata_urls: [ 'blah.com' ]
# timeout: 5 # (defaults to 50 seconds)
# max_wait: 10 # (defaults to 120 seconds)
# The modules that run in the 'init' stage
cloud_init_modules:
- migrator
- seed_random
- bootcmd
- write-files
- growpart
- resizefs
- disk_setup
- mounts
- set_hostname
- update_hostname
- update_etc_hosts
- ca-certs
- rsyslog
- users-groups
- ssh
# The modules that run in the 'config' stage
cloud_config_modules:
- wireguard
- snap
- ubuntu_autoinstall
- ssh-import-id
- keyboard
- locale
- set-passwords
- grub-dpkg
- apt-pipelining
- apt-configure
- ubuntu-advantage
- ntp
- timezone
- disable-ec2-metadata
- runcmd
- byobu
# The modules that run in the 'final' stage
cloud_final_modules:
- package-update-upgrade-install
- fan
- landscape
- lxd
- ubuntu-drivers
- write-files-deferred
- puppet
- chef
- ansible
- mcollective
- salt-minion
- reset_rmc
- rightscale_userdata
- scripts-vendor
- scripts-per-once
- scripts-per-boot
- scripts-per-instance
- scripts-user
- ssh-authkey-fingerprints
- keys-to-console
- install-hotplug
- phone-home
- final-message
- power-state-change
# System and/or distro specific settings
# (not accessible to handlers/transforms)
system_info:
# This will affect which distro class gets used
distro: ubuntu
# Default user name + that default users groups (if added/used)
default_user:
name: ubuntu
lock_passwd: True
gecos: Ubuntu
groups: [adm, audio, cdrom, floppy, lxd, netdev, plugdev, sudo, video]
sudo: ["ALL=(ALL) NOPASSWD:ALL"]
shell: /bin/bash
network:
renderers: ['netplan', 'eni', 'sysconfig']
activators: ['netplan', 'eni', 'network-manager', 'networkd']
# Automatically discover the best ntp_client
ntp_client: auto
# Other config here will be given to the distro class and/or path classes
paths:
cloud_dir: /var/lib/cloud/
templates_dir: /etc/cloud/templates/
package_mirrors:
- arches: [i386, amd64]
failsafe:
primary: http://archive.ubuntu.com/ubuntu
security: http://security.ubuntu.com/ubuntu
search:
primary:
- http://%(ec2_region)s.ec2.archive.ubuntu.com/ubuntu/
- http://%(availability_zone)s.clouds.archive.ubuntu.com/ubuntu/
- http://%(region)s.clouds.archive.ubuntu.com/ubuntu/
security: []
- arches: [arm64, armel, armhf]
failsafe:
primary: http://ports.ubuntu.com/ubuntu-ports
security: http://ports.ubuntu.com/ubuntu-ports
search:
primary:
- http://%(ec2_region)s.ec2.ports.ubuntu.com/ubuntu-ports/
- http://%(availability_zone)s.clouds.ports.ubuntu.com/ubuntu-ports/
- http://%(region)s.clouds.ports.ubuntu.com/ubuntu-ports/
security: []
- arches: [default]
failsafe:
primary: http://ports.ubuntu.com/ubuntu-ports
security: http://ports.ubuntu.com/ubuntu-ports
ssh_svcname: ssh
"""
POLICY_FOUND_ONLY = "search,found=all,maybe=none,notfound=disabled"
POLICY_FOUND_OR_MAYBE = "search,found=all,maybe=none,notfound=disabled"
DI_DEFAULT_POLICY = "search,found=all,maybe=none,notfound=disabled"
DI_DEFAULT_POLICY_NO_DMI = "search,found=all,maybe=none,notfound=disabled"
DI_EC2_STRICT_ID_DEFAULT = "true"
OVF_MATCH_STRING = "http://schemas.dmtf.org/ovf/environment/1"
SHELL_MOCK_TMPL = """\
%(name)s() {
local out='%(out)s' err='%(err)s' r='%(ret)s' RET='%(RET)s'
[ "$out" = "_unset" ] || echo "$out"
[ "$err" = "_unset" ] || echo "$err" 2>&1
[ "$RET" = "_unset" ] || _RET="$RET"
return $r
}
"""
RC_FOUND = 0
RC_NOT_FOUND = 1
DS_NONE = "None"
P_BOARD_NAME = "sys/class/dmi/id/board_name"
P_CHASSIS_ASSET_TAG = "sys/class/dmi/id/chassis_asset_tag"
P_PRODUCT_NAME = "sys/class/dmi/id/product_name"
P_PRODUCT_SERIAL = "sys/class/dmi/id/product_serial"
P_PRODUCT_UUID = "sys/class/dmi/id/product_uuid"
P_SYS_VENDOR = "sys/class/dmi/id/sys_vendor"
P_SEED_DIR = "var/lib/cloud/seed"
P_DSID_CFG = "etc/cloud/ds-identify.cfg"
IBM_CONFIG_UUID = "9796-932E"
MOCK_VIRT_IS_CONTAINER_OTHER = {
"name": "detect_virt",
"RET": "container-other",
"ret": 0,
}
IS_CONTAINER_OTHER_ENV = {"SYSTEMD_VIRTUALIZATION": "vm:kvm"}
MOCK_NOT_LXD_DATASOURCE = {"name": "dscheck_LXD", "ret": 1}
MOCK_VIRT_IS_KVM = {"name": "detect_virt", "RET": "kvm", "ret": 0}
KVM_ENV = {"SYSTEMD_VIRTUALIZATION": "vm:kvm"}
# qemu support for LXD is only for host systems > 5.10 kernel as lxd
# passed `hv_passthrough` which causes systemd < v.251 to misinterpret CPU
# as "qemu" instead of "kvm"
MOCK_VIRT_IS_KVM_QEMU = {"name": "detect_virt", "RET": "qemu", "ret": 0}
IS_KVM_QEMU_ENV = {"SYSTEMD_VIRTUALIZATION": "vm:qemu"}
MOCK_VIRT_IS_VMWARE = {"name": "detect_virt", "RET": "vmware", "ret": 0}
MOCK_VIRT_IS_NOT_VMWARE = {
"name": "detect_virt",
"RET": "not-vmware",
"ret": 0,
}
IS_VMWARE_ENV = {"SYSTEMD_VIRTUALIZATION": "vm:vmware"}
# currenty' SmartOS hypervisor "bhyve" is unknown by systemd-detect-virt.
MOCK_VIRT_IS_VM_OTHER = {"name": "detect_virt", "RET": "vm-other", "ret": 0}
IS_VM_OTHER = {"SYSTEMD_VIRTUALIZATION": "vm:vm-other"}
MOCK_VIRT_IS_XEN = {"name": "detect_virt", "RET": "xen", "ret": 0}
IS_XEN_ENV = {"SYSTEMD_VIRTUALIZATION": "vm:xen"}
MOCK_VIRT_IS_WSL = {"name": "detect_virt", "RET": "wsl", "ret": 0}
MOCK_UNAME_IS_PPC64 = {"name": "uname", "out": UNAME_PPC64EL, "ret": 0}
MOCK_UNAME_IS_FREEBSD = {"name": "uname", "out": UNAME_FREEBSD, "ret": 0}
MOCK_UNAME_IS_OPENBSD = {"name": "uname", "out": UNAME_OPENBSD, "ret": 0}
MOCK_UNAME_IS_WSL = {"name": "uname", "out": UNAME_WSL, "ret": 0}
MOCK_WSL_INSTANCE_DATA = {
"name": "Noble-MLKit",
"distro": "ubuntu",
"version": "24.04",
"os_release": dedent(
"""\
PRETTY_NAME="Ubuntu Noble Numbat (development branch)"
NAME="Ubuntu"
VERSION_ID="24.04"
VERSION="24.04 (Noble Numbat)"
VERSION_CODENAME=noble
ID=ubuntu
ID_LIKE=debian
UBUNTU_CODENAME=noble
LOGO=ubuntu-logo
"""
),
"os_release_no_version_id": dedent(
"""\
PRETTY_NAME="Debian GNU/Linux trixie/sid"
NAME="Debian GNU/Linux"
VERSION_CODENAME="trixie"
ID=debian
"""
),
}
shell_true = 0
shell_false = 1
CallReturn = namedtuple(
"CallReturn", ["rc", "stdout", "stderr", "cfg", "files"]
)
class DsIdentifyBase:
dsid_path = cloud_init_project_dir("tools/ds-identify")
# set to true to write out the mocked ds-identify for inspection
debug_mode = True
def call(
self,
rootd,
mocks=None,
no_mocks=None,
func="main",
args=None,
files=None,
policy_dmi=DI_DEFAULT_POLICY,
policy_no_dmi=DI_DEFAULT_POLICY_NO_DMI,
ec2_strict_id=DI_EC2_STRICT_ID_DEFAULT,
env_vars=None,
):
if args is None:
args = []
if mocks is None:
mocks = []
if files is None:
files = {}
cloudcfg = "etc/cloud/cloud.cfg"
if cloudcfg not in files:
files[cloudcfg] = DEFAULT_CLOUD_CONFIG
unset = "_unset"
wrap = os.path.join(rootd, "_shwrap")
populate_dir(rootd, files)
# DI_DEFAULT_POLICY* are declared always as to not rely
# on the default in the code. This is because SRU releases change
# the value in the code, and thus tests would fail there.
head = [
"DI_MAIN=noop",
"DEBUG_LEVEL=2",
"DI_LOG=stderr",
"PATH_ROOT='%s'" % rootd,
"PATH_DI_ENV='%s/ds-identify-env'" % rootd,
". " + self.dsid_path,
'DI_DEFAULT_POLICY="%s"' % policy_dmi,
'DI_DEFAULT_POLICY_NO_DMI="%s"' % policy_no_dmi,
'DI_EC2_STRICT_ID_DEFAULT="%s"' % ec2_strict_id,
"",
]
def write_mock(data):
ddata = {"out": None, "err": None, "ret": 0, "RET": None}
ddata.update(data)
for k in ddata.keys():
if ddata[k] is None:
ddata[k] = unset
return SHELL_MOCK_TMPL % ddata
mocklines = []
default_mocks = [
MOCK_NOT_LXD_DATASOURCE,
{"name": "detect_virt", "RET": "none", "ret": 1},
{"name": "uname", "out": UNAME_MYSYS},
{"name": "blkid", "out": BLKID_EFI_ROOT},
{
"name": "ovf_vmware_transport_guestinfo",
"out": "No value found",
"ret": 1,
},
{
"name": "dmi_decode",
"ret": 1,
"err": "No dmidecode program. ERROR.",
},
{"name": "is_disabled", "ret": 1},
{
"name": "get_kenv_field",
"ret": 1,
"err": "No kenv program. ERROR.",
},
]
uname = "Linux"
runpath = "run"
written = []
for d in mocks:
written.append(d["name"])
if d["name"] == "uname":
uname = d["out"].split(" ")[0]
# set runpath so that BSDs use /var/run rather than /run
if uname != "Linux":
runpath = "var/run"
for data in mocks:
mocklines.append(write_mock(data))
for d in default_mocks:
if no_mocks and d["name"] in no_mocks:
continue
if d["name"] not in written:
mocklines.append(write_mock(d))
endlines = [func + " " + " ".join(['"%s"' % s for s in args])]
mocked_ds_identify = "\n".join(head + mocklines + endlines) + "\n"
with open(wrap, "w") as fp:
fp.write(mocked_ds_identify)
# debug_mode force this test to write the mocked ds-identify script to
# a file for inspection
if self.debug_mode:
tempdir = mkdtemp()
dir = f"{tempdir}/ds-identify"
LOG.debug("Writing mocked ds-identify to %s for debugging.", dir)
with open(dir, "w") as fp:
fp.write(mocked_ds_identify)
rc = 0
try:
out, err = subp.subp(
["sh", "-c", ". %s" % wrap],
update_env=env_vars if env_vars else {},
capture=True,
)
except subp.ProcessExecutionError as e:
rc = e.exit_code
out = e.stdout
err = e.stderr
cfg = None
cfg_out = os.path.join(rootd, runpath, "cloud-init/cloud.cfg")
if os.path.exists(cfg_out):
contents = util.load_text_file(cfg_out)
try:
cfg = yaml.safe_load(contents)
except Exception as e:
cfg = {"_INVALID_YAML": contents, "_EXCEPTION": str(e)}
return CallReturn(rc, out, err, cfg, dir2dict(rootd))
def _call_via_dict(self, data, rootd, **kwargs):
# return output of self.call with a dict input like VALID_CFG[item]
xwargs = {"rootd": rootd}
passthrough = (
"no_mocks", # named mocks to ignore
"mocks",
"func",
"args",
"env_vars",
"policy_dmi",
"policy_no_dmi",
"files",
)
for k in passthrough:
if k in data:
xwargs[k] = data[k]
if k in kwargs:
xwargs[k] = kwargs[k]
return self.call(**xwargs)
def _test_ds_found(self, name, rootd):
data = copy.deepcopy(VALID_CFG[name])
dslist = []
for ds in data.pop("ds").split(","):
dslist.append(ds.strip())
dslist.append(DS_NONE)
return self._check_via_dict(data, rootd, RC_FOUND, dslist=dslist)
def _test_ds_not_found(self, name, rootd):
data = copy.deepcopy(VALID_CFG[name])
return self._check_via_dict(data, rootd, RC_NOT_FOUND)
def _check_via_dict(self, data, rootd, rc, dslist=None, **kwargs):
ret = self._call_via_dict(data, rootd, **kwargs)
good = False
try:
assert rc == ret.rc
if dslist is not None:
assert dslist == ret.cfg.get("datasource_list")
good = True
finally:
if not good:
_print_run_output(
ret.rc, ret.stdout, ret.stderr, ret.cfg, ret.files
)
return ret
@pytest.mark.allow_subp_for("sh")
class TestDsIdentify(DsIdentifyBase):
def test_wb_print_variables(self, tmp_path):
"""_print_info reports an array of discovered variables to stderr."""
data = VALID_CFG["Azure-dmi-detection"]
_, _, err, _, _ = self._call_via_dict(data, str(tmp_path))
expected_vars = [
"DMI_PRODUCT_NAME",
"DMI_SYS_VENDOR",
"DMI_PRODUCT_SERIAL",
"DMI_PRODUCT_UUID",
"PID_1_PRODUCT_NAME",
"DMI_CHASSIS_ASSET_TAG",
"FS_LABELS",
"KERNEL_CMDLINE",
"VIRT",
"UNAME_KERNEL_NAME",
"UNAME_KERNEL_VERSION",
"UNAME_MACHINE",
"DSNAME",
"DSLIST",
"MODE",
"ON_FOUND",
"ON_MAYBE",
"ON_NOTFOUND",
]
for var in expected_vars:
assert "{0}=".format(var) in err
@pytest.mark.parametrize(
"config,found",
[
# Don't incorrectly identify maas
#
# The bug reported in 4794 combined with the previously existing
# bug reported in 4796 made for very loose MAAS false-positives.
#
# In ds-identify the function check_config() attempts to parse yaml
# keys in bash, but it sometimes introduces false positives. The
# maas datasource uses check_config() and the existence of a "MAAS"
# key to identify itself (which is a very poor identifier - clouds
# should have stricter identifiers). Since the MAAS datasource is
# at the beginning of the list, this is particularly troublesome
# and more concerning than NoCloud false positives, for example.
pytest.param("LXD-kvm-not-MAAS-2", True, id="mass_not_detected_2"),
# Don't detect incorrect config when invalid datasource_list
# provided
#
# If unparsable list is provided we just ignore it. Some users
# might assume that since the rest of the configuration is yaml
# that multi-line yaml lists are valid (they aren't). When this
# happens, just run ds-identify and figure it out for ourselves
# which platform to run.
pytest.param(
"Azure-parse-invalid", True, id="azure_invalid_configuration"
),
# Azure datasource is detected from DMI chassis-asset-tag
pytest.param(
"Azure-dmi-detection",
True,
id="azure_dmi_detection_from_chassis_asset_tag",
),
# Azure datasource is detected due to presence of a seed file.
#
# The seed file tested is /var/lib/cloud/seed/azure/ovf-env.xml.
pytest.param(
"Azure-seed-detection", True, id="azure_seed_file_detection"
),
# EC2: hvm instances use dmi serial and uuid starting with 'ec2'.
pytest.param("Ec2-hvm", True, id="aws_ec2_hvm"),
# EC2: hvm instances use dmi serial and uuid starting with 'ec2'
#
# test using SYSTEMD_VIRTUALIZATION, not systemd-detect-virt
pytest.param("Ec2-hvm-env", True, id="aws_ec2_hvm_env"),
# EC2: hvm instances use system-uuid and may have swapped
# endianness
#
# test using SYSTEMD_VIRTUALIZATION, not systemd-detect-virt
pytest.param(
"Ec2-hvm-swap-endianness", True, id="aws_ec2_hvm_endian"
),
# EC2: sys/hypervisor/uuid starts with ec2.
pytest.param("Ec2-xen", True, id="aws_ec2_xen"),
# EC2: product_serial ends with '.brightbox.com'
pytest.param("Ec2-brightbox", True, id="brightbox_is_ec2"),
# EC2: bobrightbox.com in product_serial is not brightbox
pytest.param(
"Ec2-brightbox-negative",
False,
id="brightbox_is_not_brightbox",
),
# NoCloud identified on FreeBSD via label by geom.
pytest.param("NoCloud-fbsd", True, id="freebsd_nocloud"),
# GCE identifies itself with product_name.
pytest.param("GCE", True, id="gce_by_product_name"),
# GCE identifies itself with product_name.
#
# Uses SYSTEMD_VIRTUALIZATION
pytest.param("GCE_ENV", True, id="gce_by_product_name_env"),
# Older gce compute instances must be identified by serial.
pytest.param("GCE-serial", True, id="gce_by_serial"),
# LXD KVM has race on absent /dev/lxd/socket. Use DMI board_name.
pytest.param("LXD-kvm", True, id="lxd_kvm"),
# LXD KVM on host systems with a kernel > 5.10 need to match "qemu"
#
# LXD provides `hv_passthrough` when launching kvm instances when
# host kernel is > 5.10. This results in systemd being unable to
# detect the virtualized CPUID="Linux KVM Hv" as type "kvm" and
# results in systemd-detect-virt returning "qemu" in this case.
#
# Assert ds-identify can match systemd-detect-virt="qemu" and
# /sys/class/dmi/id/board_name = LXD.
# Once systemd 251 is available on a target distro, the virtualized
# CPUID will be represented properly as "kvm"
pytest.param(
"LXD-kvm-qemu-kernel-gt-5.10", True, id="lxd_kvm_jammy"
),
# LXD KVM on host systems with a kernel > 5.10 need to match "qemu"
#
# LXD provides `hv_passthrough` when launching kvm instances when
# host kernel is > 5.10. This results in systemd being unable to
# detect the virtualized CPUID="Linux KVM Hv" as type "kvm" and
# results in systemd-detect-virt returning "qemu" in this case.
#
# Assert ds-identify can match systemd-detect-virt="qemu" and
# /sys/class/dmi/id/board_name = LXD.
# Once systemd 251 is available on a target distro, the virtualized
# CPUID will be represented properly as "kvm"
pytest.param(
"LXD-kvm-qemu-kernel-gt-5.10-env", True, id="lxd_kvm_jammy_env"
),
# LXD containers will have /dev/lxd/socket at generator time.
pytest.param("LXD", True, id="lxd_containers"),
# MAAS detected despite /dev/lxd/socket existing
pytest.param(
"MAAS-not-LXD", True, id="maas_detected_kernel_cmdline_not_lxd"
),
# ConfigDrive datasource has a disk with LABEL=config-2.
pytest.param("ConfigDrive", True, id="config_drive"),
# Rbx datasource has a disk with LABEL=CLOUDMD.
pytest.param("RbxCloud", True, id="rbx_cloud"),
# Rbx datasource has a disk with LABEL=cloudmd.
pytest.param("RbxCloudLower", True, id="rbx_cloud_lower"),
# ConfigDrive datasource has a disk with LABEL=CONFIG-2.
pytest.param("ConfigDriveUpper", True, id="config_drive_upper"),
# Config Drive seed directory.
pytest.param("ConfigDrive-seed", True, id="config_drive_seed"),
# Multi-line yaml is unsupported
pytest.param(
"LXD-kvm-not-azure",
True,
marks=[
pytest.mark.xfail(
reason=(
"not supported: yaml parser implemented in POSIX"
" shell"
)
)
],
id="multiline_yaml",
),
# Template provisioned with user-data first boot.
#
# Template provisioning with user-data has METADATA disk.
# datasource should return found.
pytest.param(
"IBMCloud-metadata", True, id="ibmcloud_template_userdata"
),
# Launched by os code always has config-2 disk.
pytest.param("IBMCloud-config-2", True, id="ibmcloud_os_code"),
# Test that Aliyun cloud is identified by product id.
pytest.param("AliYun", True, id="ibmcloud_os_code"),
# On Intel, openstack must be identified.
pytest.param(
"OpenStack", True, id="default_openstack_intel_is_found"
),
# Open Telecom identification.
pytest.param(
"OpenStack-OpenTelekom",
True,
id="openstack_open_telekom_cloud",
),
# SAP Converged Cloud identification
pytest.param(
"OpenStack-SAPCCloud", True, id="openstack_sap_ccloud"
),
pytest.param(
"OpenStack-SAPCCloud-env", True, id="openstack_sap_ccloud-env"
),
# Open Huawei Cloud identification.
pytest.param(
"OpenStack-HuaweiCloud", True, id="openstack_huawei_cloud"
),
# Open Samsung Cloud Platform identification.
pytest.param(
"OpenStack-SamsungCloudPlatform",
True,
id="openstack_samsung_cloud_platform",
),
# OpenStack identification via asset tag OpenStack Nova.
pytest.param(
"OpenStack-AssetTag-Nova", True, id="openstack_asset_tag_nova"
),
# OpenStack identification via asset tag OpenStack Compute.
pytest.param(
"OpenStack-AssetTag-Compute",
True,
id="openstack_asset_tag_compute",
),
# OVF is identified found when ovf/ovf-env.xml seed file exists.
pytest.param("OVF-seed", True, id="default_ovf_is_found"),
# OVF is identified when iso9660 cdrom path contains ovf schema.
pytest.param(
"OVF",
True,
id="ovf_on_vmware_iso_found_by_cdrom_with_ovf_schema_match",
),
# OVF guest info is found on vmware.
pytest.param(
"OVF-guestinfo", True, id="ovf_on_vmware_guestinfo_found"
),
# NoCloud is found with iso9660 filesystem on non-cdrom disk.
pytest.param("NoCloud", True, id="default_nocloud_as_vdb_iso9660"),
# NoCloud is found with uppercase filesystem label.
pytest.param("NoCloudUpper", True, id="nocloud_upper"),
# NoCloud seed definition can go in /etc/cloud/cloud.cfg[.d]
pytest.param("NoCloud-cfg", True, id="nocloud_seed_in_cfg"),
# NoCloud fatboot label - LP: #184166.
pytest.param("NoCloud-fatboot", True, id="nocloud_fatboot"),
# Nocloud seed directory.
pytest.param("NoCloud-seed", True, id="nocloud_seed"),
# Nocloud seed directory ubuntu core writable
pytest.param(
"NoCloud-seed-ubuntu-core",
True,
id="nocloud_seed_ubuntu_core_writable",
),
# Hetzner cloud is identified in sys_vendor.
pytest.param("Hetzner", True, id="hetzner_found"),
# CloudCIX cloud is identified in dmi product-name
pytest.param("CloudCIX", True, id="cloudcix_found"),
# NWCS is identified in sys_vendor.
pytest.param("NWCS", True, id="nwcs_found"),
# SmartOS cloud identified by SmartDC in dmi.
pytest.param("SmartOS-bhyve", True, id="smartos_bhyve"),
# SmartOS cloud identified on lxbrand container.
pytest.param("SmartOS-lxbrand", True, id="smartos_lxbrand"),
pytest.param(
"SmartOS-lxbrand-env", True, id="smartos_lxbrand-env"
),
# EC2: chassis asset tag ends with 'zstack.io'
pytest.param("Ec2-ZStack", True, id="zstack_is_ec2"),
# EC2: e24cloud identified by sys_vendor
pytest.param("Ec2-E24Cloud", True, id="e24cloud_is_ec2"),
# EC2: bobrightbox.com in product_serial is not brightbox'
pytest.param(
"Ec2-E24Cloud-negative", False, id="e24cloud_not_active"
),
# EC2: outscale identified by sys_vendor and product_name
pytest.param("Ec2-Outscale", True, id="outscale_is_ec2"),
# EC2: outscale in sys_vendor is not outscale'
pytest.param(
"Ec2-Outscale-negative-sysvendor",
False,
id="outscale_not_active_sysvendor",
),
# EC2: outscale in product_name is not outscale'
pytest.param(
"Ec2-Outscale-negative-productname",
False,
id="outscale_not_active_productname",
),
# VMware: no valid transports
pytest.param(
"VMware-NoValidTransports",
False,
id="vmware_no_valid_transports",
),
# VMware is identified when vmware customization is enabled.
pytest.param(
"VMware-vmware-customization",
True,
id="vmware_on_vmware_when_vmware_customization_is_enabled",
),
# VMware and OVF are identified when:
# 1. On VMware platform.
# 2. VMware customization is enabled.
# 3. iso9660 cdrom path contains ovf schema.
pytest.param(
"VMware-OVF-on-vmware-with-vmware-customization-and-ovf-schema",
True,
id="vmware_ovf_on_vmware_with_vmware_customization_and_ovf_"
"schema",
),
# OVF is identified when:
# 1. Not on VMware platform.
# 2. VMware customization is enabled.
# 3. iso9660 cdrom path contains ovf schema.
pytest.param(
"OVF-not-on-vmware-with-vmware-customization-and-ovf-schema",
True,
id="ovf_not_on_vmware_with_vmware_customization_and_ovf_"
"schema",
),
# VMware: envvar transport no data
pytest.param(
"VMware-EnvVar-NoData", False, id="vmware_envvar_no_data"
),
# VMware: envvar transport success if no virt id
pytest.param(
"VMware-EnvVar-NoVirtID", True, id="vmware_envvar_no_virt_id"
),
# VMware: envvar transport activated by metadata
pytest.param(
"VMware-EnvVar-Metadata",
True,
id="vmware_envvar_activated_by_metadata",
),
# VMware: envvar transport activated by userdata
pytest.param(
"VMware-EnvVar-Userdata",
True,
id="vmware_envvar_activated_by_userdata",
),
# VMware: envvar transport activated by vendordata
pytest.param(
"VMware-EnvVar-Vendordata",
True,
id="vmware_envvar_activated_by_vendordata",
),
# VMware: guestinfo transport no data
pytest.param(
"VMware-GuestInfo-NoData-Rpctool",
False,
id="vmware_guestinfo_no_data_rcptool",
),
pytest.param(
"VMware-GuestInfo-NoData-Vmtoolsd",
False,
id="vmware_guestinfo_no_data_vmtoolsd",
),
# VMware: guestinfo transport fails if no virt id
pytest.param(
"VMware-GuestInfo-NoVirtID",
False,
id="vmware_guestinfo_no_virt_id",
),
# VMware: guestinfo transport activated by metadata
pytest.param(
"VMware-GuestInfo-Metadata",
True,
id="vmware_guestinfo_activated_by_metadata",
),
# VMware: guestinfo transport activated by userdata
pytest.param(
"VMware-GuestInfo-Userdata",
True,
id="vmware_guestinfo_activated_by_userdata",
),
# VMware: guestinfo transport activated by vendordata
pytest.param(
"VMware-GuestInfo-Vendordata",
True,
id="vmware_guestinfo_activated_by_vendordata",
),
# VMware and OVF are identified when:
# 1. On VMware platform.
# 2. guestinfo transport activated by metadata
# 3. iso9660 cdrom path contains ovf schema.
pytest.param(
"VMware-OVF-on-vmware-with-guestinfo-metadata-and-ovf-schema",
True,
id="vmware_ovf_on_vmware_with_guestinfo_metadata_and_ovf_"
"schema",
),
# OVF is identified when:
# 1. Not on VMware platform.
# 2. guestinfo transport activated by metadata
# 3. iso9660 cdrom path contains ovf schema.
pytest.param(
"OVF-not-on-vmware-with-guestinfo-metadata-and-ovf-schema",
True,
id="ovf_not_on_vmware_with_guestinfo_metadata_and_ovf_schema",
),
# ds-identify finds Akamai by system-manufacturer dmi field
pytest.param("Akamai", True, id="akamai_found_by_sys_vendor"),
# Test *BSD code paths
#
# FreeBSD doesn't have /sys so we use kenv(1) here.
# OpenBSD uses sysctl(8).
# Other BSD systems fallback to dmidecode(8).
# BSDs also doesn't have systemd-detect-virt(8), so we use
# sysctl(8) to query kern.vm_guest, and optionally map it:
#
# Test that kenv(1) works on systems which don't have /sys
pytest.param("Hetzner-kenv", True, id="bsd_dmi_kenv"),
# Test that sysctl(8) works on systems which don't have /sys
pytest.param("Hetzner-sysctl", True, id="bsd_dmi_sysctl"),
# Test that dmidecode(8) works on systems which don't have /sys
pytest.param("Hetzner-dmidecode", True, id="bsd_dmi_dmidecode"),
# Simple positive test of Oracle by chassis id.
pytest.param("Oracle", True, id="oracle_found_by_chassis"),
# Simple negative test for WSL due other virt.
pytest.param("Not-WSL", False, id="wsl_not_found_virt"),
# Negative test by lack of host filesystem mount points.
pytest.param("WSL-no-host-mounts", False, id="wsl_no_fs_mounts"),
],
)
def test_ds_found_not_found(self, config, found, tmp_path):
test_func = self._test_ds_found if found else self._test_ds_not_found
test_func(config, str(tmp_path))
def test_flow_sequence_control(self, tmp_path):
"""ensure that an invalid key in the flow_sequence tests produces no
datasource list match
control test: this test serves as a control test for test_flow_sequence
"""
data = copy.deepcopy(VALID_CFG["flow_sequence-control"])
self._check_via_dict(data, str(tmp_path), RC_NOT_FOUND)
def test_flow_sequence(self, tmp_path):
"""correctly identify flow sequences"""
for i in range(1, 10):
data = copy.deepcopy(VALID_CFG[f"flow_sequence-{i}"])
self._check_via_dict(
data, str(tmp_path), RC_FOUND, dslist=[data.get("ds")]
)
def test_config_drive_interacts_with_ibmcloud_config_disk(self, tmp_path):
"""Verify ConfigDrive interaction with IBMCloud.
If ConfigDrive is enabled and not IBMCloud, then ConfigDrive
should claim the ibmcloud 'config-2' disk.
If IBMCloud is enabled, then ConfigDrive should skip."""
data = copy.deepcopy(VALID_CFG["IBMCloud-config-2"])
files = data.get("files", {})
if not files:
data["files"] = files
cfgpath = "etc/cloud/cloud.cfg.d/99_networklayer_common.cfg"
# with list including IBMCloud, config drive should be not found.
files[cfgpath] = "datasource_list: [ ConfigDrive, IBMCloud ]\n"
ret = self._check_via_dict(data, str(tmp_path / "ibm"), shell_true)
assert ret.cfg.get("datasource_list") == ["IBMCloud", "None"]
# But if IBMCloud is not enabled, config drive should claim this.
files[cfgpath] = "datasource_list: [ ConfigDrive, NoCloud ]\n"
ret = self._check_via_dict(data, str(tmp_path), shell_true)
assert ret.cfg.get("datasource_list") == ["ConfigDrive", "None"]
def test_ibmcloud_template_userdata_in_provisioning(self, tmp_path):
"""Template provisioned with user-data during provisioning stage.
Template provisioning with user-data has METADATA disk,
datasource should return not found."""
data = copy.deepcopy(VALID_CFG["IBMCloud-metadata"])
# change the 'is_ibm_provisioning' mock to return 1 (false)
isprov_m = [
m for m in data["mocks"] if m["name"] == "is_ibm_provisioning"
][0]
isprov_m["ret"] = shell_true
self._check_via_dict(data, str(tmp_path), RC_NOT_FOUND)
def test_ibmcloud_template_no_userdata_in_provisioning(self, tmp_path):
"""Template provisioned with no user-data during provisioning.
no disks attached. Datasource should return not found."""
data = copy.deepcopy(VALID_CFG["IBMCloud-nodisks"])
data["mocks"].append(
{"name": "is_ibm_provisioning", "ret": shell_true}
)
self._check_via_dict(data, str(tmp_path), RC_NOT_FOUND)
def test_ibmcloud_template_no_userdata(self, tmp_path):
"""Template provisioned with no user-data first boot.
no disks attached. Datasource should return found."""
self._check_via_dict(
VALID_CFG["IBMCloud-nodisks"], str(tmp_path), RC_NOT_FOUND
)
def test_ibmcloud_os_code_different_uuid(self, tmp_path):
"""IBM cloud config-2 disks must be explicit match on UUID.
If the UUID is not 9796-932E then we actually expect ConfigDrive."""
data = copy.deepcopy(VALID_CFG["IBMCloud-config-2"])
offset = None
for m, d in enumerate(data["mocks"]):
if d.get("name") == "blkid":
offset = m
break
if not offset:
raise ValueError("Expected to find 'blkid' mock, but did not.")
data["mocks"][offset]["out"] = d["out"].replace(
ds_ibm.IBM_CONFIG_UUID, "DEAD-BEEF"
)
self._check_via_dict(
data, str(tmp_path), rc=RC_FOUND, dslist=["ConfigDrive", DS_NONE]
)
def test_ibmcloud_with_nocloud_seed(self, tmp_path):
"""NoCloud seed should be preferred over IBMCloud.
A nocloud seed should be preferred over IBMCloud even if enabled.
Ubuntu 16.04 images have <vlc>/seed/nocloud-net. LP: #1766401."""
data = copy.deepcopy(VALID_CFG["IBMCloud-config-2"])