mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-10-04 09:23:23 +00:00
test: parse config: test config with duplicate sections
Add a test case to witness how duplicate sections are handled. Signed-off-by: Fiona Ebner <f.ebner@proxmox.com> Link: https://lore.proxmox.com/20250127112923.31703-11-f.ebner@proxmox.com
This commit is contained in:
parent
63567c0c42
commit
90ae915305
43
test/parse-config-expected/duplicate-sections.conf
Normal file
43
test/parse-config-expected/duplicate-sections.conf
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
boot: order=scsi0
|
||||||
|
cores: 2
|
||||||
|
cpu: x86-64-v2-AES
|
||||||
|
ide2: lvm:vm-120-cloudinit,media=cdrom
|
||||||
|
ipconfig0: ip=dhcp,ip6=dhcp
|
||||||
|
memory: 4096
|
||||||
|
meta: creation-qemu=9.0.2,ctime=1725975013
|
||||||
|
name: deb122
|
||||||
|
net0: vmxnet3=BC:24:11:2C:69:EC,bridge=vnet0,firewall=1
|
||||||
|
numa: 0
|
||||||
|
ostype: l26
|
||||||
|
parent: foo
|
||||||
|
scsi0: nfs:120/vm-120-disk-0.qcow2,iothread=1,size=4G
|
||||||
|
scsihw: virtio-scsi-single
|
||||||
|
smbios1: uuid=b3247ab1-1fe6-428e-965b-08a1b64a8746
|
||||||
|
sockets: 1
|
||||||
|
unused0: rbd:vm-120-disk-0
|
||||||
|
vmgenid: 7079e97c-50e3-4079-afe7-23e67566b946
|
||||||
|
|
||||||
|
[PENDING]
|
||||||
|
vga: qxl
|
||||||
|
|
||||||
|
[special:cloudinit]
|
||||||
|
name: deb123
|
||||||
|
|
||||||
|
[foo]
|
||||||
|
boot: order=scsi0
|
||||||
|
cores: 4
|
||||||
|
cpu: host
|
||||||
|
ide2: lvm:vm-120-cloudinit,media=cdrom
|
||||||
|
ipconfig0: ip=dhcp,ip6=dhcp
|
||||||
|
memory: 4096
|
||||||
|
meta: creation-qemu=9.0.2,ctime=1725975013
|
||||||
|
name: deb1223
|
||||||
|
net0: vmxnet3=BC:24:11:2C:69:EC,bridge=vnet0,firewall=1
|
||||||
|
numa: 0
|
||||||
|
ostype: l26
|
||||||
|
scsi0: nfs:120/vm-120-disk-0.qcow2,iothread=1,size=4G
|
||||||
|
scsihw: virtio-scsi-single
|
||||||
|
smbios1: uuid=b3247ab1-1fe6-428e-965b-08a1b64a8746
|
||||||
|
snaptime: 1737548747
|
||||||
|
sockets: 1
|
||||||
|
vmgenid: 7079e97c-50e3-4079-afe7-23e67566b946
|
68
test/parse-config-input/duplicate-sections.conf
Normal file
68
test/parse-config-input/duplicate-sections.conf
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
boot: order=scsi0
|
||||||
|
cores: 2
|
||||||
|
cpu: x86-64-v2-AES
|
||||||
|
ide2: lvm:vm-120-cloudinit,media=cdrom
|
||||||
|
ipconfig0: ip=dhcp,ip6=dhcp
|
||||||
|
memory: 4096
|
||||||
|
meta: creation-qemu=9.0.2,ctime=1725975013
|
||||||
|
name: deb122
|
||||||
|
net0: vmxnet3=BC:24:11:2C:69:EC,bridge=vnet0,firewall=1
|
||||||
|
numa: 0
|
||||||
|
ostype: l26
|
||||||
|
parent: foo
|
||||||
|
scsi0: nfs:120/vm-120-disk-0.qcow2,iothread=1,size=4G
|
||||||
|
scsihw: virtio-scsi-single
|
||||||
|
smbios1: uuid=b3247ab1-1fe6-428e-965b-08a1b64a8746
|
||||||
|
sockets: 1
|
||||||
|
unused0: rbd:vm-120-disk-0
|
||||||
|
vmgenid: 7079e97c-50e3-4079-afe7-23e67566b946
|
||||||
|
|
||||||
|
[PENDING]
|
||||||
|
bios: ovmf
|
||||||
|
|
||||||
|
[PENDING]
|
||||||
|
vga: qxl
|
||||||
|
|
||||||
|
[special:cloudinit]
|
||||||
|
name: deb12
|
||||||
|
|
||||||
|
[special:cloudinit]
|
||||||
|
name: deb123
|
||||||
|
|
||||||
|
[foo]
|
||||||
|
boot: order=scsi0
|
||||||
|
cores: 2
|
||||||
|
cpu: x86-64-v2-AES
|
||||||
|
ide2: lvm:vm-120-cloudinit,media=cdrom
|
||||||
|
ipconfig0: ip=dhcp,ip6=dhcp
|
||||||
|
memory: 4096
|
||||||
|
meta: creation-qemu=9.0.2,ctime=1725975013
|
||||||
|
name: deb1223
|
||||||
|
net0: vmxnet3=BC:24:11:2C:69:EC,bridge=vnet0,firewall=1
|
||||||
|
numa: 0
|
||||||
|
ostype: l26
|
||||||
|
scsi0: nfs:120/vm-120-disk-0.qcow2,iothread=1,size=4G
|
||||||
|
scsihw: virtio-scsi-single
|
||||||
|
smbios1: uuid=b3247ab1-1fe6-428e-965b-08a1b64a8746
|
||||||
|
snaptime: 1737548747
|
||||||
|
sockets: 1
|
||||||
|
vmgenid: 7079e97c-50e3-4079-afe7-23e67566b946
|
||||||
|
|
||||||
|
[foo]
|
||||||
|
boot: order=scsi0
|
||||||
|
cores: 4
|
||||||
|
cpu: host
|
||||||
|
ide2: lvm:vm-120-cloudinit,media=cdrom
|
||||||
|
ipconfig0: ip=dhcp,ip6=dhcp
|
||||||
|
memory: 4096
|
||||||
|
meta: creation-qemu=9.0.2,ctime=1725975013
|
||||||
|
name: deb1223
|
||||||
|
net0: vmxnet3=BC:24:11:2C:69:EC,bridge=vnet0,firewall=1
|
||||||
|
numa: 0
|
||||||
|
ostype: l26
|
||||||
|
scsi0: nfs:120/vm-120-disk-0.qcow2,iothread=1,size=4G
|
||||||
|
scsihw: virtio-scsi-single
|
||||||
|
smbios1: uuid=b3247ab1-1fe6-428e-965b-08a1b64a8746
|
||||||
|
snaptime: 1737548747
|
||||||
|
sockets: 1
|
||||||
|
vmgenid: 7079e97c-50e3-4079-afe7-23e67566b946
|
@ -26,7 +26,7 @@ my $OUTPUT_DIR = './parse-config-output';
|
|||||||
my $EXPECTED_DIR = './parse-config-expected';
|
my $EXPECTED_DIR = './parse-config-expected';
|
||||||
|
|
||||||
# NOTE update when you add/remove tests
|
# NOTE update when you add/remove tests
|
||||||
plan tests => 2 * 8;
|
plan tests => 2 * 9;
|
||||||
|
|
||||||
sub run_tests {
|
sub run_tests {
|
||||||
my ($strict) = @_;
|
my ($strict) = @_;
|
||||||
|
Loading…
Reference in New Issue
Block a user