1
from . import VMBaseClass
2
from .releases import centos_base_vm_classes as relbase
7
# FIXME: should eventually be integrated with the real TestBasic
8
class CentosTestBasicAbs(VMBaseClass):
10
conf_file = "examples/tests/centos_basic.yaml"
11
extra_kern_args = "BOOTIF=eth0-52:54:00:12:34:00"
12
collect_scripts = [textwrap.dedent(
15
cat /etc/fstab > fstab
18
'LABEL=cloudimg-rootfs': '/',
24
def test_interfacesd_eth0_removed(self):
27
def test_output_files_exist(self):
28
self.output_files_exist(["fstab"])
31
# FIXME: this naming scheme needs to be replaced
32
class Centos70FromXenialTestBasic(relbase.centos70fromxenial,
37
class Centos66FromXenialTestBasic(relbase.centos66fromxenial,
40
# FIXME: test is disabled because the grub config script in target
41
# specifies drive using hd(1,0) syntax, which breaks when the
42
# installation medium is removed. other than this, the install works