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
|
# This file is part of curtin. See LICENSE file for copyright and license info.
from .releases import base_vm_classes as relbase
from .releases import centos_base_vm_classes as centos_relbase
from .test_mdadm_bcache import TestMdadmAbs
from .test_iscsi import TestBasicIscsiAbs
import textwrap
class TestMdadmIscsiAbs(TestMdadmAbs, TestBasicIscsiAbs):
interactive = False
dirty_disks = False # LP: 1753786
iscsi_disks = [
{'size': '5G', 'auth': 'user:passw0rd'},
{'size': '5G', 'auth': 'user:passw0rd', 'iauth': 'iuser:ipassw0rd'},
{'size': '5G', 'iauth': 'iuser:ipassw0rd'}]
conf_file = "examples/tests/mdadm_iscsi.yaml"
nr_testfiles = 1
extra_collect_scripts = (
TestMdadmAbs.extra_collect_scripts +
TestBasicIscsiAbs.extra_collect_scripts +
[textwrap.dedent("""
cd OUTPUT_COLLECT_D
ls -al /sys/class/block/md*/slaves/ > md_slaves
exit 0
""")])
class Centos70TestIscsiMdadm(centos_relbase.centos70_xenial,
TestMdadmIscsiAbs):
__test__ = True
class XenialGATestIscsiMdadm(relbase.xenial_ga, TestMdadmIscsiAbs):
__test__ = True
class XenialHWETestIscsiMdadm(relbase.xenial_hwe, TestMdadmIscsiAbs):
__test__ = True
class XenialEdgeTestIscsiMdadm(relbase.xenial_edge, TestMdadmIscsiAbs):
__test__ = True
class BionicTestIscsiMdadm(relbase.bionic, TestMdadmIscsiAbs):
__test__ = True
class FocalTestIscsiMdadm(relbase.focal, TestMdadmIscsiAbs):
__test__ = True
class JammyTestIscsiMdadm(relbase.jammy, TestMdadmIscsiAbs):
__test__ = True
# vi: ts=4 expandtab syntax=python
|