diff options
author | Gonéri Le Bouder <goneri@lebouder.net> | 2021-12-09 17:46:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-09 16:46:27 -0600 |
commit | 24739592217e5ba91e09e8c28b852d31a2c0cc77 (patch) | |
tree | 7532f470d01e580805a5c829986ae4949f3b5064 /tests/unittests | |
parent | b591e9dba6c85f3934bc309032c3e436b8dcb3ac (diff) | |
download | vyos-cloud-init-24739592217e5ba91e09e8c28b852d31a2c0cc77.tar.gz vyos-cloud-init-24739592217e5ba91e09e8c28b852d31a2c0cc77.zip |
find_devs/openbsd: accept ISO on disk (#1132)
When the metadata is an ISO image and is exposed through a disk,
the device is called `/dev/sd?a` internally. For instance `/dev/sd1a`.
It can then be mounted with `mount_cd9660 /dev/sd1a /mnt`.
Metadata in the FAT32 format are exposed as `/dev/sd?i`.
With this change, we try to mount `/dev/sd?a` in addition to `/dev/sd?i`.
Closes: https://github.com/ContainerCraft/kmi/issues/12
Diffstat (limited to 'tests/unittests')
-rw-r--r-- | tests/unittests/test_util.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unittests/test_util.py b/tests/unittests/test_util.py index eab374bc..c551835f 100644 --- a/tests/unittests/test_util.py +++ b/tests/unittests/test_util.py @@ -2330,7 +2330,7 @@ class TestFindDevs: def test_find_devs_with_openbsd(self, m_subp): m_subp.return_value = ('cd0:,sd0:630d98d32b5d3759,sd1:,fd0:', '') devlist = util.find_devs_with_openbsd() - assert devlist == ['/dev/cd0a', '/dev/sd1i'] + assert devlist == ['/dev/cd0a', '/dev/sd1a', '/dev/sd1i'] @mock.patch('cloudinit.subp.subp') def test_find_devs_with_openbsd_with_criteria(self, m_subp): @@ -2340,7 +2340,7 @@ class TestFindDevs: # lp: #1841466 devlist = util.find_devs_with_openbsd(criteria="LABEL_FATBOOT=A_LABEL") - assert devlist == ['/dev/cd0a', '/dev/sd1i'] + assert devlist == ['/dev/cd0a', '/dev/sd1a', '/dev/sd1i'] @pytest.mark.parametrize( 'criteria,expected_devlist', |