[Libvirt-cim] [PATCH] [TEST] #2 Add new tc RASDIndications/01_guest_states_rasd_ind.py

Sharad Mishra snmishra at us.ibm.com
Wed Sep 23 06:23:26 UTC 2009


Seeing this error with FC11 and sfcb.

[root at elm3a148 cimtest]#  CIM_NS=root/virt CIM_USER=root
CIM_PASS=elm3a148 ./runtests libvirt-cim -i localhost -c -d -v KVM -g
RASDIndications -t 01_guest_states_rasd_ind.py
Starting test suite: libvirt-cim
Cleaned log files.

Testing KVM hypervisor
--------------------------------------------------------------------
RASDIndications - 01_guest_states_rasd_ind.py: FAIL
ERROR   - Did not recieve indication
KVM_ResourceAllocationSettingDataDeletedIndication
ERROR   - Received Indication error: '256'
--------------------------------------------------------------------


Thanks
Sharad Mishra
System x Enablement
Linux Technology Center
IBM

libvirt-cim-bounces at redhat.com wrote on 09/22/2009 02:17:50 PM:

> "Deepti B. Kalakeri" <deeptik at linux.vnet.ibm.com>
> Sent by: libvirt-cim-bounces at redhat.com
>
> 09/22/2009 02:17 PM
>
> Please respond to
> List for discussion and development of libvirt CIM
<libvirt-cim at redhat.com>
>
> To
>
> libvirt-cim at redhat.com
>
> cc
>
> Subject
>
> [Libvirt-cim] [PATCH] [TEST] #2 Add new tc RASDIndications/
> 01_guest_states_rasd_ind.py
>
> # HG changeset patch
> # User Deepti B. Kalakeri <deeptik at linux.vnet.ibm.com>
> # Date 1253654207 25200
> # Node ID faf86189f60a2b7e5321996540c390c0598929c9
> # Parent  f5c62f54d1204d38ce15e48d269d3e887da69937
> [TEST] #2 Add new tc RASDIndications/01_guest_states_rasd_ind.py
>
> Patch 2:
> --------
> 1) Checked for RASDIndication support in libvirt-cim
> 2) Included support for XenFV
>
> To verify the Add|Deleted RASDIndication for the guest.
> Tested with Xen and current sources on RHEL5.3 and KVM with F10.
> Signed-off-by: Deepti B. Kalakeri <deeptik at linux.vnet.ibm.com>
>
> diff -r f5c62f54d120 -r faf86189f60a suites/libvirt-cim/cimtest/
> RASDIndications/01_guest_states_rasd_ind.py
> --- /dev/null   Thu Jan 01 00:00:00 1970 +0000
> +++ b/suites/libvirt-cim/cimtest/RASDIndications/
> 01_guest_states_rasd_ind.py   Tue Sep 22 14:16:47 2009 -0700
> @@ -0,0 +1,164 @@
> +#!/usr/bin/python
> +#
> +# Copyright 2009 IBM Corp.
> +#
> +# Authors:
> +#   Deepti B. Kalakeri <deeptik at linux.vnet.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 testcase is used to verify the Created|Deleted
> +# RASD Indications for a guest.
> +#
> +#                                                      Date : 21-09-2009
> +#
> +
> +import sys
> +from signal import SIGKILL
> +from socket import gethostname
> +from os import kill, fork, _exit
> +from XenKvmLib.vxml import get_class
> +from XenKvmLib.xm_virt_util import active_domain_list
> +from CimTest.Globals import logger
> +from XenKvmLib.const import do_main, CIM_ENABLE, CIM_DISABLE, \
> +                       get_provider_version
> +from CimTest.ReturnCodes import PASS, FAIL, SKIP
> +from XenKvmLib.common_util import poll_for_state_change
> +from XenKvmLib.indications import sub_ind, handle_request, poll_for_ind
> +
> +sup_types = ['KVM', 'Xen', 'XenFV']
> +libvirt_guest_rasd_indication_rev = 980
> +
> +def create_guest(test_dom, ip, virt, cxml, ind_name):
> +    try:
> +        ret = cxml.cim_define(ip)
> +        if not ret:
> +            raise Exception("Failed to define domain %s" % test_dom)
> +
> +        status, dom_cs = poll_for_state_change(ip, virt, test_dom,
> +                                               CIM_DISABLE)
> +        if status != PASS:
> +            raise Exception("Dom '%s' not in expected state '%s'" \
> +                            % (test_dom, CIM_DISABLE))
> +
> +        ret = cxml.cim_start(ip)
> +        if ret:
> +            raise Exception("Failed to start the domain '%s'" %
test_dom)
> +            cxml.undefine(ip)
> +
> +        status, dom_cs = poll_for_state_change(ip, virt, test_dom,
> +                                               CIM_ENABLE)
> +        if status != PASS:
> +            raise Exception("Dom '%s' not in expected state '%s'" \
> +                            % (test_dom, CIM_ENABLE))
> +
> +    except Exception, details:
> +        logger.error("Exception details: %s", details)
> +        return FAIL, cxml
> +
> +    return PASS, cxml
> +
> +def gen_indication(test_dom, s_sysname, virt, cxml, ind_name):
> +    status = FAIL
> +    try:
> +        active_doms = active_domain_list(s_sysname, virt)
> +        if test_dom not in active_doms:
> +            status, cxml = create_guest(test_dom, s_sysname, virt,
> cxml, ind_name)
> +            if status != PASS:
> +                raise Exception("Error setting up the guest '%s'"
%test_dom)
> +
> +        if ind_name == "delete":
> +            ret = cxml.cim_destroy(s_sysname)
> +            if not ret:
> +                raise Exception("Failed to destroy domain  '%s'"
%test_dom)
> +
> +    except Exception, details:
> +        logger.error("Exception details :%s", details)
> +        return FAIL, cxml
> +
> +    return PASS, cxml
> +
> + at do_main(sup_types)
> +def main():
> +    options = main.options
> +    virt = options.virt
> +    s_sysname = options.ip
> +
> +    cim_rev, changeset = get_provider_version(virt, s_sysname)
> +    if cim_rev < libvirt_guest_rasd_indication_rev:
> +        logger.info("Support for Guest Resource Indications is available
in "
> +                    "Libvirt-CIM rev '%s'",
> libvirt_guest_rasd_indication_rev)
> +        return SKIP
> +
> +    status = FAIL
> +    test_dom = 'VM_' + gethostname()
> +    ind_names = {
> +                 'create' :
'ResourceAllocationSettingDataCreatedIndication',
> +                 'delete' :
'ResourceAllocationSettingDataDeletedIndication'
> +                }
> +
> +    virt_xml = get_class(virt)
> +    cxml = virt_xml(test_dom)
> +    sub_list, ind_names, dict = sub_ind(s_sysname, virt, ind_names)
> +    for ind in ind_names.keys():
> +        sub = sub_list[ind]
> +        ind_name = ind_names[ind]
> +        logger.info("\n Verifying '%s' indications ....", ind_name)
> +
> +        try:
> +            pid = fork()
> +            if pid == 0:
> +                status = handle_request(sub, ind_name, dict,
> +                                        len(ind_names.keys()))
> +                if status != PASS:
> +                    _exit(1)
> +                _exit(0)
> +            else:
> +                try:
> +                    status, cxml = gen_indication(test_dom, s_sysname,
> +                                                  virt, cxml, ind)
> +                    if status != PASS:
> +                        raise Exception("Unable to generate indication")

> +
> +                    status = poll_for_ind(pid, ind_name)
> +                except Exception, details:
> +                    kill(pid, SIGKILL)
> +                    raise Exception(details)
> +
> +        except Exception, details:
> +            logger.error("Exception: %s", details)
> +            status = FAIL
> +
> +        if status != PASS:
> +            break
> +
> +    #Make sure all subscriptions are really unsubscribed
> +    for ind, sub in sub_list.iteritems():
> +        sub.unsubscribe(dict['default_auth'])
> +        logger.info("Cancelling subscription for %s", ind_names[ind])
> +
> +    active_doms = active_domain_list(s_sysname, virt)
> +    if test_dom in active_doms:
> +       ret = cxml.cim_destroy(s_sysname)
> +       if not ret:
> +           logger.error("Failed to Destroy the domain")
> +           return FAIL
> +
> +    return status
> +if __name__ == "__main__":
> +    sys.exit(main())
> +
>
> _______________________________________________
> Libvirt-cim mailing list
> Libvirt-cim at redhat.com
> https://www.redhat.com/mailman/listinfo/libvirt-cim
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/libvirt-cim/attachments/20090922/2144da1c/attachment.htm>


More information about the Libvirt-cim mailing list