forked from Telmate/proxmox-api-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testsetups_vm
481 lines (384 loc) · 12.3 KB
/
testsetups_vm
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
#!/bin/bash
testsetup_vm_check() {
testsetup_loop_vm 'Checking all created VMs and CTs'
}
testsetup_vm_getinfo() {
testsetup_loop_vm 'Getting info on all created VMs and CTs'
}
testsetup_vm_findvm() {
local runcount=$1 ; shift
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
echo 'Finding all created VMs and CTs'
local arguments result
for vmid in "${!vms[@]}"; do
arguments="${vmnames[$vmid]}"
runAction $target $arguments
result=$?
setActionResult $target $result
(( result )) && break
done
return $result
}
testsetup_vm_getnextvmid() {
testsetup_simple
local result=$? lines="${#lineoutput[*]}"
(( result == 0 )) && {
selectedid="${testoutput[$((lines-2))]}"
echo "The new VMID from getnextid is: $selectedid"
}
return $result
}
testsetup_vm_clone() {
local runcount=$1 ; shift
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
debugMessage 'Manual intervention needed'
cat<<EOF
To which node should I attempt to clone VMs and CTs?
EOF
promptNode "Enter node name (${nodes[0]}) " "${nodes[0]}" 1
echo 'Cloning all created VMs and CTs'
local flags arguments vmtype vmname name
for vmid in "${!vms[@]}"; do
vmtype="${vms[$vmid]}"
# name for the clone
vmname="test-clone${vmtype}${runcount}"
name='name'; [[ "$vmtype" == "ct" ]] && name='hostname'
echo 'Calling testsetup_vm_getnextvmid to get a new VMID for the clone'
testsetup_vm_getnextvmid
flags="-vmid ${selectedid}"
arguments="${vmnames[$vmid]}"
runAction $flags $target $arguments<<EOF
{
"$name": "$vmname",
"bwlimit": 0,
"description": "testing $vmtype clone",
"full": true,
"target": "$selectednode"
}
EOF
result=$?
setActionResult $target $result
(( result )) && break
vms[$selectedid]="$vmtype"
vmnames[$selectedid]="$vmname"
done
return $result
}
testsetup_vm_delete() {
local runcount=$1 ; shift
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
local flags result olines
for vmid in "${!vms[@]}"; do
flags="-vmid ${vmid}"
runAction $flags $target
result=$?
setActionResult $target $result
(( result )) && break
unset "vms[$vmid]"
unset "vmnames[$vmid]"
unset "vmconfigs[$vmid]"
# set UPID for gettaskexitstatus
olines=${#testoutput[*]}
status="${testouput[$olines]}"
[[ "${status##*: }" == "true" ]] && {
UPIDs+=("$(sed -r 's/^.*\"(UPID[^"]+)".*$/\1/' <<< ${testoutput[$((olines-2))]})")
}
done
return $result
}
testsetup_vm_getconfig() {
testsetup_loop_vm 'Getting status of created VM/CTs'
}
testsetup_vm_getstatus() {
testsetup_loop_vm 'Getting status of created VM/CTs'
}
testsetup_vm_setstatus() {
local runcount=$1 ; shift
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
echo 'Cycling status for all created VMs/CTs'
local flags arguments result
for status in start reset suspend resume shutdown stop; do
for vmid in "${!vms[@]}"; do
case $status in
@(reset|suspend)) [[ "${vms[$vmid]}" == "ct" ]] && continue ;;
shutdown) [[ "${vms[$vmid]}" == "vm" ]] && continue ;;
esac
flags="-vmid ${vmid}"
arguments="$status"
runAction $flags $target $arguments
result=$?
setActionResult $target $result
(( result )) && break 2
done
done
return $result
}
testsetup_vm_start() {
testsetup_loop_vm 'Starting all created VM/CTs'
}
testsetup_vm_suspend() {
local runcount=$1 ; shift
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
echo 'Suspending all created VMs'
local flags
for vmid in "${!vms[@]}"; do
[[ "${vms[vmid]}" == "ct" ]] && continue
flags="-vmid ${vmid}"
runAction $flags $target
result=$?
setActionResult $target $result
(( result )) && break
done
return $result
}
testsetup_vm_resume() {
testsetup_loop_vm 'Resuming all created VMs'
}
testsetup_vm_reset() {
local runcount=$1 ; shift
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
echo 'Resetting all created VMs'
local flags
for vmid in "${!vms[@]}"; do
[[ "${vms[vmid]}" == "ct" ]] && continue
flags="-vmid ${vmid}"
runAction $flags $target
result=$?
setActionResult $target $result
(( result )) && break
done
return $result
}
testsetup_vm_stop() {
testsetup_loop_vm 'Stopping all created VM/CTs'
}
testsetup_vm_shutdown() {
local runcount=$1 ; shift
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
echo 'Shutting down all created CTs'
local flags
for vmid in "${!vms[@]}"; do
[[ "${vms[vmid]}" == "vm" ]] && continue
flags="-vmid ${vmid}"
runAction $flags $target
result=$?
setActionResult $target $result
(( result )) && break
done
return $result
}
testsetup_vm_waitforshutdown() {
testsetup_stub
}
testsetup_vm_migrate() {
local runcount=$1 ; shift
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
nodes_bkp=("${nodes[@]}")
selectednode_bkp=$selectednode
for node in "${!nodes[@]}"; do
[[ "${nodes[$node]}" == "$selectednode" ]] && unset -v 'nodes[$node]'
done
nodes=( "${nodes[@]}" )
debugMessage 'Manual intervention needed'
cat<<EOF
These nodes are available to test migration: ${nodes[@]}
To which node should I attempt to migrate VMs and CTs?
EOF
promptNode "Enter node name (${nodes[0]}) " "${nodes[0]}" 1
local flags arguments
for vmid in "${!vms[@]}"; do
flags="-vmid ${vmid}"
arguments="$selectednode"
runAction $flags $target $arguments<<EOF
{
"bwlimit": 0,
"online": true
}
EOF
result=$?
setActionResult $target $result
(( result )) && break
done
nodes=("${nodes_bkp[@]}")
selectednode=$selectednode_bkp
return $result
}
testsetup_vm_getsnapshotlist() {
testsetup_loop_vm 'Getting the list of snapshots for all created VM/CTs'
}
testsetup_vm_createsnapshot() {
local runcount=$1 ; shift
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
local flags arguments result
echo 'Taking a snapshot of all created VMs/CTs'
for vmid in "${!vms[@]}"; do
flags="-vmid ${vmid}"
arguments="testsnapshot"
runAction $flags $target $arguments<<EOF
{
$([[ "${vms[$vmid]}" == "vm" ]] && echo '"vmstate": true,')
"description": "test snapshot"
}
EOF
result=$?
setActionResult $target $result
(( result )) && break
done
return $result
}
testsetup_vm_deletesnapshot() {
local runcount=$1 ; shift
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
local flags arguments result
echo 'Deleting snapshots of all created VMs/CTs'
for vmid in "${!vms[@]}"; do
flags="-vmid ${vmid}"
arguments="testsnapshot"
runAction $flags $target $arguments
result=$?
setActionResult $target $result
(( result )) && break
done
return $result
}
testsetup_vm_rollback() {
local runcount=$1 ; shift
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
local flags arguments result
echo 'Rolling back all created VMs/CTs to "testsnapshot"'
for vmid in "${!vms[@]}"; do
flags="-vmid ${vmid}"
arguments="testsnapshot"
runAction $flags $target $arguments
result=$?
setActionResult $target $result
(( result )) && break
done
return $result
}
testsetup_vm_createtemplate() {
testsetup_loop_vm 'Creating a template of all created VMs and CTs'
}
testsetup_vm_createbackup() {
local runcount=$1 ; shift
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
local flags result
echo 'Backing up all created VMs/CTs'
for vmid in "${!vms[@]}"; do
flags="-vmid ${vmid}"
runAction $flags $target<<EOF
{
"compress": "gzip",
"mode": "snapshot"
}
EOF
result=$?
setActionResult $target $result
(( result )) && break
done
return $result
}
testsetup_vm_movedisk() {
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
debugMessage 'Manual intervention needed'
cat<<EOF
These are the storages I got from the previous storage_getstoragelist test: ${storages[@]}
To which storage should I attempt to move disks?
EOF
promptStorage "Enter storage name (${storages[0]}) " "${storage[0]}" 1
selectedstorage_ct=$selectedstorage
selectedstorage_vm=$selectedstorage
local result flags storage disk
for vmid in "${!vms[@]}"; do
storage="selectedstorage_${vms[$vmid]}"
disk='"disk": "virtio0"'; [[ "${vms[$vmid]}" == "ct" ]] && disk='"volume": "rootfs"'
flags="-vmid ${vmid}"
runAction $flags $target<<EOF
{
${disk},
"storage": "${!storage}",
"delete": true
}
EOF
result=$?
setActionResult $target $result
(( result )) && break
done
return $result
}
testsetup_vm_resizedisk() {
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
local arguments flags result disk size
for vmid in "${!vms[@]}"; do
disk='virtio0'; [[ "${vms[$vmid]}" == "ct" ]] && disk='rootfs'
size="$(( RANDOM % 4 + 1))G"
echo "Attempting to resize disk '$disk' by $size"
flags="-vmid ${vmid}"
arguments="$disk +$size"
runAction $flags $target $arguments
result=$?
setActionResult $target $result
(( result )) && break
done
return $result
}
testsetup_vm_getspiceproxy() {
testsetup_loop_vm
}
testsetup_vm_monitorcmd() {
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
cat<<EOF
For this test please enter lines with Qemu monitor commands to send to all created VMs
An empty line ends the test
EOF
local command
while read -p 'Enter monitor command (empty line to end the test): ' command; do
[[ -z "$command" ]] && break
echo "Sending the command '$command' to all created VMs"
local arguments flags result
for vmid in "${!vms[@]}"; do
[[ "${vms[$vmid]}" == "ct" ]] && continue
echo "Watch the VM $vmid (${vmnames[$vmid]}) and verify that the commands are affecting it"
flags="-vmid ${vmid}"
arguments="$command"
runAction $flags $target $arguments
result=$?
setActionResult $target $result
(( result )) && break 2
done
done
return $result
}
testsetup_vm_sendkeysstring() {
local target=${FUNCNAME##*${setup_prefix}} ; debugMessage "SETUP TARGET: $target"
cat<<EOF
For this test please enter lines with strings to be sent to all created VMs
An empty line ends the test
EOF
local line
while read -p 'Enter string (empty line to end the test): ' line; do
[[ -z "$line" ]] && break
echo "Sending the line '$line' to all created VMs"
local arguments flags result
for vmid in "${!vms[@]}"; do
[[ "${vms[$vmid]}" == "ct" ]] && continue
echo "Open the console for the VM $vmid (${vmnames[$vmid]}) and verify that the strings are appearing on the console"
flags="-vmid ${vmid}"
arguments="\"$line\""
runAction $flags $target $arguments
result=$?
setActionResult $target $result
(( result )) && break 2
done
done
return $result
}
testsetup_vm_sshforwardusernet() {
testsetup_loop_vm 'Setting SSH forward for all created VM/CTs'
}
testsetup_vm_removesshforwardusernet() {
testsetup_loop_vm 'Removing SSH forward for all created VM/CTs'
}
testsetup_vm_getagentnetworkinterfaces() {
testsetup_stub
}