[Libvirt-cim] [PATCH] [TEST] Test VM's AutoStart feature

Sharad Mishra snmishra at us.ibm.com
Wed Feb 23 15:02:01 UTC 2011


# HG changeset patch
# User Sharad Mishra <snmishra at us.ibm.com>
# Date 1298473315 28800
# Node ID 53f2cfb2a6ea2940b4de62fff16e3413419cb511
# Parent  4f2bf0006818d2ca4903a0b550dde65e4d581d7c
[TEST] Test VM's AutoStart feature.

This testcase will create VM, get its AutoStart setting and compare against expected value. Then it changes AutoStart, modifies the VM and reads the AutoStart back to verify that  it was changed.

Signed-off-by: Sharad Mishra <snmishra at us.ibm.com>

diff -r 4f2bf0006818 -r 53f2cfb2a6ea suites/libvirt-cim/cimtest/VSSD/07_autostart.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/suites/libvirt-cim/cimtest/VSSD/07_autostart.py	Wed Feb 23 07:01:55 2011 -0800
@@ -0,0 +1,118 @@
+#!/usr/bin/python
+#
+# Copyright 2009 IBM Corp.
+#
+# Authors:
+#    Sharad Mishra <snmishra at us.ibm.com>
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
+#
+# This test will create a VM, get its autostart setting and compare against
+# the expected value. Then it sets the autostart to '1', and Modifies the VM.
+# Updated VM's autostart is read and compared. Then once more autostart is reset
+# and  VM updated. Updated VM's autostart is again compared.
+#
+
+import sys
+import time
+import pywbem
+from XenKvmLib import vsms
+from XenKvmLib import vxml
+from CimTest.Globals import logger
+from CimTest.ReturnCodes import PASS, FAIL, SKIP
+from XenKvmLib.const import do_main
+from XenKvmLib.classes import get_typed_class, inst_to_mof
+from XenKvmLib.enumclass import GetInstance 
+from XenKvmLib.const import get_provider_version
+from pywbem.cim_types import Uint16
+
+sup_types = ['Xen', 'KVM', 'XenFV', 'LXC']
+default_dom = 'uuid_domain'
+autostart_support = 1076
+
+def get_vssd(ip, virt, dom):
+    cn = get_typed_class(virt, "VirtualSystemSettingData") 
+    inst = None
+
+    try:
+        if virt == "XenFV": 
+            virt = "Xen"
+
+        key_list = {"InstanceID" : "%s:%s" % (virt, dom) }
+
+        inst = GetInstance(ip, cn, key_list, True)
+
+    except Exception, details:
+        logger.error(details)
+        return FAIL, inst
+
+    if inst is None:
+        return FAIL, inst
+
+    return PASS, inst
+
+ at do_main(sup_types)
+def main():
+    options = main.options 
+    virt = options.virt
+    server = options.ip
+
+    curr_cim_rev, changeset = get_provider_version(virt, server)
+    if curr_cim_rev < autostart_support:
+        logger.info("Need provider version %d or greater to run testcase",
+                     autostart_support)
+        return SKIP
+
+    service = vsms.get_vsms_class(options.virt)(options.ip)
+    
+    sxml = None
+    cxml = vxml.get_class(options.virt)(default_dom)
+    ret = cxml.cim_define(options.ip)
+    if not ret:
+        logger.error("Failed to define the dom: %s", default_dom)
+        return FAIL
+
+    status, inst = get_vssd(options.ip, options.virt, default_dom)
+    if status != PASS:
+        raise Exception("Failed to get the VSSD instance for %s" %
+                         default_dom)
+    inst['AutoStart'] = Uint16(1)
+    vssd = inst_to_mof(inst)
+    service.ModifySystemSettings(SystemSettings=vssd)
+
+    status, inst = get_vssd(options.ip, options.virt, default_dom)
+    if status != PASS:
+        raise Exception("Failed to get the VSSD instance for %s" %
+                         default_dom)
+    if inst['AutoStart'] != Uint16(1):
+        raise Exception("Test failed, Autostart settings mismatch")
+
+    inst['AutoStart'] = Uint16(0)
+    vssd = inst_to_mof(inst)
+    service.ModifySystemSettings(SystemSettings=vssd)
+
+    status, inst = get_vssd(options.ip, options.virt, default_dom)
+    if status != PASS:
+        raise Exception("Failed to get the VSSD instance for %s" %
+                         default_dom)
+    if inst['AutoStart'] != Uint16(0):
+        raise Exception("Test failed, Autostart settings mismatch")
+
+    cxml.undefine(options.ip)
+    return status
+
+if __name__ == "__main__":
+    sys.exit(main())
+ 




More information about the Libvirt-cim mailing list