forked from harvester/tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvm.py
237 lines (212 loc) · 8.64 KB
/
vm.py
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
# Copyright (c) 2021 SUSE LLC
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of version 3 of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, contact SUSE LLC.
#
# To contact SUSE about this file by physical or electronic mail,
# you may find current contact information at www.suse.com
from harvester_e2e_tests import utils
import pytest
pytest_plugins = [
'harvester_e2e_tests.fixtures.image',
'harvester_e2e_tests.fixtures.keypair',
'harvester_e2e_tests.fixtures.network',
'harvester_e2e_tests.fixtures.volume'
]
@pytest.fixture(scope='class')
def network_data():
yaml_data = """#cloud-config
version: 1
config:
- type: physical
name: eth0
subnets:
- type: dhcp
- type: physical
name: eth1
subnets:
- type: dhcp
"""
return yaml_data.replace('\n', '\\n')
@pytest.fixture(scope='class')
def user_data_with_guest_agent(keypair):
# set to root user password to 'linux' to test password login in
# addition to SSH login
yaml_data = """#cloud-config
chpasswd:
list: |
root:linux
expire: false
ssh_pwauth: true
users:
- name: root
ssh_authorized_keys:
- %s
package_update: true
packages:
- qemu-guest-agent
runcmd:
- - systemctl
- enable
- '--now'
- qemu-ga
""" % (keypair['spec']['publicKey'])
return yaml_data.replace('\n', '\\n')
@pytest.fixture(scope='class')
def user_data_with_guest_agent_using_terraform(keypair_using_terraform):
# set to root user password to 'linux' to test password login in
# addition to SSH login
yaml_data = """#cloud-config
chpasswd:
list: |
root:linux
expire: false
ssh_pwauth: true
users:
- name: root
ssh_authorized_keys:
- %s
package_update: true
packages:
- qemu-guest-agent
runcmd:
- - systemctl
- enable
- '--now'
- qemu-ga
""" % (keypair_using_terraform['spec']['publicKey'])
return yaml_data.replace('\n', '\\n')
@pytest.fixture(scope='class')
def basic_vm(request, admin_session, image, keypair,
user_data_with_guest_agent, network_data,
harvester_api_endpoints):
vm_json = utils.create_vm(request, admin_session, image,
harvester_api_endpoints,
keypair=keypair,
network_data=network_data,
user_data=user_data_with_guest_agent)
yield vm_json
if not request.config.getoption('--do-not-cleanup'):
resp = admin_session.get(
harvester_api_endpoints.get_vm % (vm_json['metadata']['name']))
if resp.status_code != 404:
utils.delete_vm(request, admin_session, harvester_api_endpoints,
vm_json)
@pytest.fixture(scope='class')
def basic_vm_no_user_data(request, admin_session, image, keypair,
network_data, harvester_api_endpoints):
vm_json = utils.create_vm(request, admin_session, image,
harvester_api_endpoints,
keypair=keypair,
network_data=network_data)
yield vm_json
if not request.config.getoption('--do-not-cleanup'):
resp = admin_session.get(
harvester_api_endpoints.get_vm % (vm_json['metadata']['name']))
if resp.status_code != 404:
utils.delete_vm(request, admin_session, harvester_api_endpoints,
vm_json)
@pytest.fixture(scope='class')
def basic_vm_nousb(request, admin_session, image, keypair,
user_data_with_guest_agent, network_data,
harvester_api_endpoints):
vm_json = utils.create_vm(request, admin_session, image,
harvester_api_endpoints,
keypair=keypair,
network_data=network_data,
user_data=user_data_with_guest_agent,
include_usb=False)
yield vm_json
if not request.config.getoption('--do-not-cleanup'):
resp = admin_session.get(
harvester_api_endpoints.get_vm % (vm_json['metadata']['name']))
if resp.status_code != 404:
utils.delete_vm(request, admin_session, harvester_api_endpoints,
vm_json)
@pytest.fixture(scope='class')
def vm_with_one_vlan(request, admin_session, image, keypair,
user_data_with_guest_agent, network_data,
harvester_api_endpoints, network):
vm_json = utils.create_vm(request, admin_session, image,
harvester_api_endpoints,
keypair=keypair,
template='vm_with_one_vlan',
network=network,
network_data=network_data,
user_data=user_data_with_guest_agent)
yield vm_json
if not request.config.getoption('--do-not-cleanup'):
resp = admin_session.get(
harvester_api_endpoints.get_vm % (vm_json['metadata']['name']))
if resp.status_code != 404:
utils.delete_vm(request, admin_session, harvester_api_endpoints,
vm_json)
@pytest.fixture(scope='class')
def vm_with_one_bogus_vlan(request, admin_session, image, keypair,
user_data_with_guest_agent, network_data,
harvester_api_endpoints, bogus_network):
vm_json = utils.create_vm(request, admin_session, image,
harvester_api_endpoints,
keypair=keypair,
template='vm_with_one_vlan',
network=bogus_network,
network_data=network_data,
user_data=user_data_with_guest_agent)
yield vm_json
if not request.config.getoption('--do-not-cleanup'):
resp = admin_session.get(
harvester_api_endpoints.get_vm % (vm_json['metadata']['name']))
if resp.status_code != 404:
utils.delete_vm(request, admin_session, harvester_api_endpoints,
vm_json)
@pytest.fixture(scope='class')
def vms_with_same_vlan(request, admin_session, image, keypair,
user_data_with_guest_agent, network_data,
harvester_api_endpoints, network):
vms = []
for i in range(2):
vms.append(utils.create_vm(request, admin_session, image,
harvester_api_endpoints,
keypair=keypair,
template='vm_with_vlan_as_default_network',
network=network,
network_data=network_data,
user_data=user_data_with_guest_agent))
yield vms
if not request.config.getoption('--do-not-cleanup'):
for vm_json in vms:
utils.delete_vm(request, admin_session, harvester_api_endpoints,
vm_json)
@pytest.fixture(scope='class')
def vms_with_vlan_as_default_network(request, admin_session, image, keypair,
user_data_with_guest_agent, network_data,
harvester_api_endpoints, network):
vm_json = utils.create_vm(request, admin_session, image,
harvester_api_endpoints,
keypair=keypair,
template='vm_with_vlan_as_default_network',
network=network,
network_data=network_data,
user_data=user_data_with_guest_agent)
yield vm_json
if not request.config.getoption('--do-not-cleanup'):
utils.delete_vm(request, admin_session, harvester_api_endpoints,
vm_json)
@pytest.fixture(scope='class')
def vm_with_volume(request, admin_session, image, volume, keypair,
harvester_api_endpoints):
vm_json = utils.create_vm(request, admin_session, image,
harvester_api_endpoints,
template='vm_with_volume',
volume=volume,
keypair=keypair)
return vm_json