mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-10 01:18:03 +03:00
tests: Fix testsuite on non-latest libvirt
The memory hotplug changes only work on libvirt 5.3.0, among a few other pieces. Still do the XML compare but skip domain define if the new check_version_define comparison fails.
This commit is contained in:
parent
cee7ae8711
commit
aeff4e248f
@ -5,7 +5,7 @@
|
||||
+ <libosinfo:os id="http://fedoraproject.org/fedora/23"/>
|
||||
</libosinfo:libosinfo>
|
||||
</metadata>
|
||||
<maxMemory slots="16" unit="KiB">1099511627776</maxMemory>
|
||||
<memory unit="KiB">4194304</memory>
|
||||
|
||||
Domain 'test-for-virtxml' defined successfully.
|
||||
Changes will take effect after the domain is fully powered off.
|
@ -1,5 +1,5 @@
|
||||
<memory unit="KiB">4717568</memory>
|
||||
<currentMemory unit="KiB">4717568</currentMemory>
|
||||
<memory unit="KiB">4194304</memory>
|
||||
<currentMemory unit="KiB">4194304</currentMemory>
|
||||
<blkiotune>
|
||||
- <weight>100</weight>
|
||||
+ <weight>500</weight>
|
||||
|
@ -1,8 +1,8 @@
|
||||
<libosinfo:os id="http://fedoraproject.org/fedora/27"/>
|
||||
</libosinfo:libosinfo>
|
||||
</metadata>
|
||||
<maxMemory slots="16" unit="KiB">1099511627776</maxMemory>
|
||||
- <memory unit="KiB">4717568</memory>
|
||||
- <currentMemory unit="KiB">4717568</currentMemory>
|
||||
- <memory unit="KiB">4194304</memory>
|
||||
- <currentMemory unit="KiB">4194304</currentMemory>
|
||||
+ <memory unit="KiB">1024000</memory>
|
||||
+ <currentMemory unit="KiB">512000</currentMemory>
|
||||
<blkiotune>
|
||||
|
@ -14,7 +14,7 @@
|
||||
+ <libosinfo:os id="http://fedoraproject.org/fedora/13"/>
|
||||
</libosinfo:libosinfo>
|
||||
</metadata>
|
||||
<maxMemory slots="16" unit="KiB">1099511627776</maxMemory>
|
||||
<memory unit="KiB">4194304</memory>
|
||||
@@
|
||||
<dhCert>AQAAAAAOAAAAQAAAAAOAAAAQAAAAAOAAAAQAAAAAOAAAAQAAAAAOAAA</dhCert>
|
||||
<session>IHAVENOIDEABUTJUSTPROVIDINGASTRING</session>
|
||||
|
@ -111,6 +111,7 @@ class Command(object):
|
||||
self.need_conn = True
|
||||
self.skip_cb = None
|
||||
self.check_version = None
|
||||
self.check_version_define = None
|
||||
self.grep = None
|
||||
self.nogrep = None
|
||||
|
||||
@ -198,14 +199,15 @@ class Command(object):
|
||||
return
|
||||
|
||||
tests.skipTest(skipmsg)
|
||||
return True
|
||||
|
||||
def _check_compare_file(self, conn, tests, output):
|
||||
if self._check_support(tests, conn, self.check_version,
|
||||
"Skipping compare check due to lack of support"):
|
||||
return
|
||||
|
||||
# Generate test files that don't exist yet
|
||||
def do_check(check):
|
||||
self._check_support(tests, conn, check,
|
||||
"Skipping compare check due to lack of support")
|
||||
|
||||
do_check(self.check_version)
|
||||
|
||||
filename = self.compare_file
|
||||
if (utils.clistate.regenerate_output or
|
||||
not os.path.exists(filename)):
|
||||
@ -224,6 +226,8 @@ class Command(object):
|
||||
|
||||
utils.diff_compare(output, filename)
|
||||
|
||||
do_check(self.check_version_define)
|
||||
|
||||
# Define the <domain>s generated for compare output, to ensure
|
||||
# we are generating valid XML
|
||||
if "--print-xml" in self.argv or "--print-step" in self.argv:
|
||||
@ -350,7 +354,7 @@ class App(object):
|
||||
|
||||
def _add(self, catname, testargs, valid, compfile,
|
||||
skip_cb=None, check_version=None, input_file=None,
|
||||
auto_printarg=True, grep=None):
|
||||
auto_printarg=True, grep=None, check_version_define=None):
|
||||
|
||||
category = self.categories[catname]
|
||||
args = category.default_args + " " + testargs
|
||||
@ -368,6 +372,7 @@ class App(object):
|
||||
cmd.check_version = (check_version or
|
||||
category.check_version or
|
||||
self.check_version)
|
||||
cmd.check_version_define = check_version_define
|
||||
cmd.input_file = input_file
|
||||
cmd.grep = grep
|
||||
self.cmds.append(cmd)
|
||||
@ -499,7 +504,7 @@ c.add_compare("""
|
||||
--vsock auto_cid=on
|
||||
|
||||
--sysinfo bios.vendor="Acme LLC",bios.version=1.2.3,bios.date=01/01/1970,bios.release=10.22,system.manufacturer="Acme Inc.",system.product=Computer,system.version=3.2.1,system.serial=123456789,system.uuid=00000000-1111-2222-3333-444444444444,system.sku=abc-123,system.family=Server,baseBoard.manufacturer="Acme Corp.",baseBoard.product=Motherboard,baseBoard.version=A01,baseBoard.serial=1234-5678,baseBoard.asset=Tag,baseBoard.location=Chassis
|
||||
""", "singleton-config-3")
|
||||
""", "singleton-config-3", check_version_define="5.3.0")
|
||||
|
||||
|
||||
|
||||
@ -624,7 +629,7 @@ source.reservations.managed=no,source.reservations.source.type=unix,source.reser
|
||||
--qemu-commandline="-display gtk,gl=on"
|
||||
--qemu-commandline="-device vfio-pci,addr=05.0,sysfsdev=/sys/class/mdev_bus/0000:00:02.0/f321853c-c584-4a6b-b99a-3eee22a3919c"
|
||||
--qemu-commandline="-set device.video0.driver=virtio-vga"
|
||||
""", "many-devices", check_version="2.0.0") # check_version=graphics listen=socket support
|
||||
""", "many-devices", check_version_define="5.3.0")
|
||||
|
||||
|
||||
|
||||
@ -654,8 +659,8 @@ c.add_valid("--security label=foobar.label,a1,z2,b3") # --security static with
|
||||
c.add_invalid("--clock foo_tickpolicy=merge") # Unknown timer
|
||||
c.add_invalid("--security foobar") # Busted --security
|
||||
c.add_compare("--cpuset auto --vcpus 2", "cpuset-auto") # --cpuset=auto actually works
|
||||
c.add_compare("--memory hotplugmemorymax=2048,hotplugmemoryslots=2 --cpu cell0.cpus=0,cell0.memory=1048576 --memdev dimm,access=private,target_size=512,target_node=0,source_pagesize=4,source_nodemask=1-2 --memdev nvdimm,source_path=/path/to/nvdimm,target_size=512,target_node=0,target_label_size=128,alias.name=mymemdev3", "memory-hotplug")
|
||||
c.add_compare("--memory currentMemory=100,memory=200,maxmemory=300,maxMemory=400,maxMemory.slots=1", "memory-option-backcompat")
|
||||
c.add_compare("--memory hotplugmemorymax=2048,hotplugmemoryslots=2 --cpu cell0.cpus=0,cell0.memory=1048576 --memdev dimm,access=private,target_size=512,target_node=0,source_pagesize=4,source_nodemask=1-2 --memdev nvdimm,source_path=/path/to/nvdimm,target_size=512,target_node=0,target_label_size=128,alias.name=mymemdev3", "memory-hotplug", check_version="5.3.0")
|
||||
c.add_compare("--memory currentMemory=100,memory=200,maxmemory=300,maxMemory=400,maxMemory.slots=1", "memory-option-backcompat", check_version="5.3.0")
|
||||
c.add_compare("--connect " + utils.URIs.kvm_q35 + " --cpu qemu64,secure=off", "cpu-disable-sec") # disable security features that are added by default
|
||||
c.add_compare("--connect " + utils.URIs.kvm_rhel, "cpu-rhel7-default") # default CPU for old QEMU where we cannot use host-model
|
||||
|
||||
@ -873,7 +878,7 @@ c.add_compare("--connect %(URI-KVM)s --arch x86_64", "x86_64-headless")
|
||||
c = vinst.add_category("kvm-graphics", "--os-variant fedora29 --import --disk %(EXISTIMG1)s --network default --graphics vnc")
|
||||
c.add_compare("--connect %(URI-KVM-AARCH64)s --arch aarch64", "aarch64-graphics")
|
||||
c.add_compare("--connect %(URI-KVM-PPC64LE)s --arch ppc64le", "ppc64-graphics")
|
||||
c.add_compare("--connect %(URI-QEMU-RISCV64)s --arch riscv64", "riscv64-graphics", check_version="5.3.0")
|
||||
c.add_compare("--connect %(URI-QEMU-RISCV64)s --arch riscv64", "riscv64-graphics", check_version="5.3.0", )
|
||||
c.add_compare("--connect %(URI-KVM-S390X)s --arch s390x", "s390x-graphics")
|
||||
c.add_compare("--connect %(URI-KVM)s --arch x86_64", "x86_64-graphics")
|
||||
|
||||
@ -898,7 +903,7 @@ c.add_compare("--init /usr/bin/httpd", "manual-init")
|
||||
c = vinst.add_category("xen", "--noautoconsole --connect " + utils.URIs.xen)
|
||||
c.add_valid("--disk %(EXISTIMG1)s --location %(TREEDIR)s --paravirt --graphics none") # Xen PV install headless
|
||||
c.add_compare("--disk %(EXISTIMG1)s --import", "xen-default") # Xen default
|
||||
c.add_compare("--disk %(EXISTIMG1)s --location %(TREEDIR)s --paravirt --controller xenbus,maxGrantFrames=64", "xen-pv") # Xen PV
|
||||
c.add_compare("--disk %(EXISTIMG1)s --location %(TREEDIR)s --paravirt --controller xenbus,maxGrantFrames=64", "xen-pv", check_version="5.3.0") # Xen PV
|
||||
c.add_compare("--disk /iscsi-pool/diskvol1 --cdrom %(EXISTIMG1)s --livecd --hvm", "xen-hvm") # Xen HVM
|
||||
|
||||
|
||||
|
@ -62,7 +62,8 @@
|
||||
</libosinfo:libosinfo>
|
||||
</metadata>
|
||||
<genid>e90ff655-47a5-4484-9f9c-79a683c2a2e2</genid>
|
||||
<maxMemory slots='16' unit='KiB'>1099511627776</maxMemory>
|
||||
<!-- requires libvirt 5.3.0+ -->
|
||||
<!-- <maxMemory slots='16' unit='KiB'>1099511627776</maxMemory> -->
|
||||
<blkiotune>
|
||||
<weight>100</weight>
|
||||
<device>
|
||||
@ -137,6 +138,8 @@ Foo bar baz & yeah boii < > yeahfoo
|
||||
<on_reboot>restart</on_reboot>
|
||||
<on_crash>destroy</on_crash>
|
||||
<vcpu cpuset="1,2,5-9,11,13-14">9</vcpu>
|
||||
<!-- Requires libvirt 5.3.0+ -->
|
||||
<!--
|
||||
<vcpus>
|
||||
<vcpu id='0' enabled='no' hotpluggable='yes' order='1'/>
|
||||
<vcpu id='1' enabled='yes' hotpluggable='no'/>
|
||||
@ -148,6 +151,7 @@ Foo bar baz & yeah boii < > yeahfoo
|
||||
<vcpu id='7' enabled='yes' hotpluggable='no'/>
|
||||
<vcpu id='8' enabled='yes' hotpluggable='no'/>
|
||||
</vcpus>
|
||||
-->
|
||||
<numatune>
|
||||
<memory mode='interleave' placement='auto'/>
|
||||
</numatune>
|
||||
@ -602,6 +606,7 @@ Foo bar baz & yeah boii < > yeahfoo
|
||||
</vsock>
|
||||
|
||||
<!-- memory devices -->
|
||||
<!-- These are rejected by the test driver for libvirt < 5.3.0
|
||||
<memory model='nvdimm' access='private'>
|
||||
<source>
|
||||
<path>/tmp/nvdimm</path>
|
||||
@ -623,6 +628,7 @@ Foo bar baz & yeah boii < > yeahfoo
|
||||
</target>
|
||||
<address type='dimm' slot='1'/>
|
||||
</memory>
|
||||
-->
|
||||
|
||||
<!-- hub devices -->
|
||||
<hub type='usb'/>
|
||||
|
@ -79,7 +79,8 @@
|
||||
<libosinfo:os id="http://fedoraproject.org/fedora/27"/>
|
||||
</libosinfo:libosinfo>
|
||||
</metadata>
|
||||
<maxMemory slots='16' unit='KiB'>1099511627776</maxMemory>
|
||||
<!-- Requires libvirt 5.3.0+ -->
|
||||
<!-- <maxMemory slots='16' unit='KiB'>1099511627776</maxMemory> -->
|
||||
<blkiotune>
|
||||
<weight>100</weight>
|
||||
<device>
|
||||
@ -298,6 +299,7 @@
|
||||
<cid address='5'/>
|
||||
</vsock>
|
||||
|
||||
<!-- These are rejected by the test driver for libvirt < 5.3.0
|
||||
<memory model='nvdimm' access='private'>
|
||||
<source>
|
||||
<path>/tmp/nvdimm</path>
|
||||
@ -308,6 +310,7 @@
|
||||
</target>
|
||||
<address type='dimm' slot='0'/>
|
||||
</memory>
|
||||
-->
|
||||
|
||||
<hub type='usb'/>
|
||||
|
||||
|
@ -136,7 +136,6 @@ class Details(uiutils.UITestCase):
|
||||
uiutils.check_in_loop(lambda: not appl.sensitive)
|
||||
|
||||
# CPU topology
|
||||
tab.find("Topology", "toggle button").click_expander()
|
||||
tab.find_fuzzy("Manually set", "check").click()
|
||||
tab.find("Sockets:", "spin button").typeText("8")
|
||||
tab.find("Cores:", "spin button").typeText("2")
|
||||
|
Loading…
Reference in New Issue
Block a user