]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
tests: cover disk, interface <backenddomain>
authorCole Robinson <crobinso@redhat.com>
Sun, 4 Oct 2020 16:51:48 +0000 (12:51 -0400)
committerCole Robinson <crobinso@redhat.com>
Mon, 5 Oct 2020 16:43:00 +0000 (12:43 -0400)
There is present no XML test coverage for this.
Add genericxml parse + formatting coverage.

Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
Signed-off-by: Cole Robinson <crobinso@redhat.com>
tests/genericxml2xmlindata/device-backenddomain.xml [new file with mode: 0644]
tests/genericxml2xmloutdata/device-backenddomain.xml [new symlink]
tests/genericxml2xmltest.c

diff --git a/tests/genericxml2xmlindata/device-backenddomain.xml b/tests/genericxml2xmlindata/device-backenddomain.xml
new file mode 100644 (file)
index 0000000..8e89c7f
--- /dev/null
@@ -0,0 +1,30 @@
+<domain type='qemu'>
+  <name>foo</name>
+  <uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
+  <memory unit='KiB'>219136</memory>
+  <currentMemory unit='KiB'>219136</currentMemory>
+  <vcpu placement='static'>1</vcpu>
+  <os>
+    <type arch='i686' machine='pc'>hvm</type>
+    <boot dev='hd'/>
+  </os>
+  <clock offset='utc'/>
+  <on_poweroff>destroy</on_poweroff>
+  <on_reboot>restart</on_reboot>
+  <on_crash>destroy</on_crash>
+  <devices>
+    <disk type='block' device='disk'>
+      <driver name='qemu' type='raw'/>
+      <source dev='/dev/HostVG/QEMUGuest1'/>
+      <backenddomain name='bar'/>
+      <target dev='hda' bus='ide'/>
+      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
+    </disk>
+    <controller type='ide' index='0'/>
+    <interface type='bridge'>
+      <mac address='aa:bb:cc:dd:ee:ff'/>
+      <source bridge='br0'/>
+      <backenddomain name='foo'/>
+    </interface>
+  </devices>
+</domain>
diff --git a/tests/genericxml2xmloutdata/device-backenddomain.xml b/tests/genericxml2xmloutdata/device-backenddomain.xml
new file mode 120000 (symlink)
index 0000000..f19471e
--- /dev/null
@@ -0,0 +1 @@
+../genericxml2xmlindata/device-backenddomain.xml
\ No newline at end of file
index 102abfdec25702c0a552a4517574d11ba41433dc..5110bfba8667a44dc3c0c040eab8ae91c4cd1264 100644 (file)
@@ -233,6 +233,7 @@ mymain(void)
     DO_TEST("launch-security-sev");
 
     DO_TEST_DIFFERENT("cputune");
+    DO_TEST("device-backenddomain");
 
 #define DO_TEST_BACKUP_FULL(name, intrnl) \
     do { \