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
|
# This file is part of curtin. See LICENSE file for copyright and license info.
from . import VMBaseClass
from .releases import base_vm_classes as relbase
from .releases import centos_base_vm_classes as centos_relbase
import os
import textwrap
class TestSimple(VMBaseClass):
""" Test that curtin runs block-meta simple mode correctly. """
conf_file = "examples/tests/simple.yaml"
extra_disks = []
extra_nics = []
extra_collect_scripts = [textwrap.dedent("""
cd OUTPUT_COLLECT_D
cp /etc/netplan/50-cloud-init.yaml netplan.yaml
exit 0
""")]
class Centos70XenialTestSimple(centos_relbase.centos70_xenial, TestSimple):
__test__ = True
class Centos70BionicTestSimple(centos_relbase.centos70_bionic, TestSimple):
__test__ = True
class Centos66XenialTestSimple(centos_relbase.centos66_xenial, TestSimple):
__test__ = True
class Centos66BionicTestSimple(centos_relbase.centos66_bionic, TestSimple):
__test__ = False
# LP: #1775424 Centos66 fails with Bionic Ephemeral ext4 features
class XenialTestSimple(relbase.xenial, TestSimple):
__test__ = True
class BionicTestSimple(relbase.bionic, TestSimple):
__test__ = True
def test_output_files_exist(self):
self.output_files_exist(["netplan.yaml"])
class DiscoTestSimple(relbase.disco, TestSimple):
__test__ = True
def test_output_files_exist(self):
self.output_files_exist(["netplan.yaml"])
class EoanTestSimple(relbase.eoan, TestSimple):
__test__ = True
def test_output_files_exist(self):
self.output_files_exist(["netplan.yaml"])
class FocalTestSimple(relbase.focal, TestSimple):
__test__ = True
def test_output_files_exist(self):
self.output_files_exist(["netplan.yaml"])
class TestSimpleStorage(VMBaseClass):
""" Test curtin runs clear-holders when mode=simple with storage cfg. """
conf_file = "examples/tests/simple-storage.yaml"
dirty_disks = True
extra_disks = ['5G', '5G']
extra_nics = []
extra_collect_scripts = [textwrap.dedent("""
cd OUTPUT_COLLECT_D
sfdisk --list > sfdisk_list
for d in /dev/[sv]d[a-z] /dev/xvd?; do
[ -b "$d" ] || continue
echo == $d ==
sgdisk --print $d
done > sgdisk_list
blkid > blkid
cat /proc/partitions > proc_partitions
cp /etc/network/interfaces interfaces
cp /etc/netplan/50-cloud-init.yaml netplan.yaml
if [ -f /var/log/cloud-init-output.log ]; then
cp /var/log/cloud-init-output.log .
fi
cp /var/log/cloud-init.log .
find /etc/network/interfaces.d > find_interfacesd
exit 0
""")]
def test_output_files_exist(self):
self.output_files_exist(["sfdisk_list", "blkid",
"proc_partitions"])
class XenialGATestSimpleStorage(relbase.xenial, TestSimpleStorage):
__test__ = True
class BionicTestSimpleStorage(relbase.bionic, TestSimpleStorage):
__test__ = True
def test_output_files_exist(self):
self.output_files_exist(["netplan.yaml"])
class DiscoTestSimpleStorage(relbase.disco, TestSimpleStorage):
__test__ = True
def test_output_files_exist(self):
self.output_files_exist(["netplan.yaml"])
class EoanTestSimpleStorage(relbase.eoan, TestSimpleStorage):
__test__ = True
def test_output_files_exist(self):
self.output_files_exist(["netplan.yaml"])
class FocalTestSimpleStorage(relbase.focal, TestSimpleStorage):
__test__ = True
def test_output_files_exist(self):
self.output_files_exist(["netplan.yaml"])
class TestGrubNoDefaults(VMBaseClass):
""" Test that curtin does not emit any grub configuration files. """
conf_file = "examples/tests/no-grub-file.yaml"
extra_disks = []
extra_nics = []
extra_collect_scripts = [textwrap.dedent("""
cd OUTPUT_COLLECT_D
cp /etc/netplan/50-cloud-init.yaml netplan.yaml
exit 0
""")]
def test_no_grub_file_created(self):
""" Curtin did not write a grub configuration file. """
grub_d_path = self.collect_path('etc_default_grub_d')
grub_d_files = os.listdir(grub_d_path)
self.assertNotIn('50-curtin-settings.cfg', grub_d_files)
class FocalTestGrubNoDefaults(relbase.focal, TestGrubNoDefaults):
__test__ = True
def test_output_files_exist(self):
self.output_files_exist(["netplan.yaml"])
# vi: ts=4 expandtab syntax=python
|