summaryrefslogtreecommitdiff
path: root/tests/genericxml2xmloutdata
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2016-04-08 13:16:12 -0400
committerCole Robinson <crobinso@redhat.com>2016-04-14 12:26:04 -0400
commit313272e074b03fb88c8f888445930a394b2ee5db (patch)
treec3862f191149ac36a389394d14633e48be6fc263 /tests/genericxml2xmloutdata
parentc493d216424e64723d958f31958ac386ea6a3acf (diff)
downloadlibvirt-313272e074b03fb88c8f888445930a394b2ee5db.tar.gz
test: genericxml2xml: test graphics listen= compat
* Add a test for listen=XXX and <listen address=YYY/> collision error * Add an explicit test for listen=XXX duplicated to <listen address=XXX/> We implicitly test it elsewhere but I figure it's better to be explicit, and this test case can be extended in the future for additional listen back compat if/when we support <listen type='socket'/> syntax
Diffstat (limited to 'tests/genericxml2xmloutdata')
-rw-r--r--tests/genericxml2xmloutdata/generic-graphics-listen-back-compat.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/genericxml2xmloutdata/generic-graphics-listen-back-compat.xml b/tests/genericxml2xmloutdata/generic-graphics-listen-back-compat.xml
new file mode 100644
index 0000000000..aa00d34a64
--- /dev/null
+++ b/tests/genericxml2xmloutdata/generic-graphics-listen-back-compat.xml
@@ -0,0 +1,30 @@
+<domain type='qemu'>
+ <name>QEMUGuest1</name>
+ <uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</uuid>
+ <memory unit='KiB'>219100</memory>
+ <currentMemory unit='KiB'>219100</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>
+ <emulator>/usr/bin/qemu</emulator>
+ <controller type='usb' index='0'/>
+ <controller type='ide' index='0'/>
+ <controller type='pci' index='0' model='pci-root'/>
+ <input type='mouse' bus='ps2'/>
+ <input type='keyboard' bus='ps2'/>
+ <graphics type='vnc' port='-1' autoport='yes' listen='192.168.123.123'>
+ <listen type='address' address='192.168.123.123'/>
+ </graphics>
+ <video>
+ <model type='cirrus' vram='16384' heads='1' primary='yes'/>
+ </video>
+ <memballoon model='none'/>
+ </devices>
+</domain>