blob: 6660ae8df52968885896d7cb1338d0aabfd17530 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2004-2006 Intel Corp. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* - Neither the name of Intel Corp. nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL Intel Corp. OR THE CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*******************************************************************************/
/**
* @author Anas Nashif
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <time.h>
#include "u/libu.h"
#include "wsman-client-api.h"
#include "wsman-client-transport.h"
#include "common.h"
TestData invoke_tests[] = {
{
"Custom Method without any selectors.",
"http://schema.omc-project.org/wbem/wscim/1/cim-schema/2/OMC_InitdService",
"ServiceStatus",
NULL,
NULL,
"/s:Envelope/s:Body/s:Fault/s:Code/s:Subcode/s:Value",
"wsman:InvalidSelectors",
"/s:Envelope/s:Body/s:Fault/s:Detail/wsman:FaultDetail",
"http://schemas.dmtf.org/wbem/wsman/1/wsman/faultDetail/InsufficientSelectors",
400,
0,
0
},
{
"Custom Method with non existent Resource URI.",
"http://schema.omc-project.org/wbem/wscim/1/cim-schema/2/OMC_InitdServicex",
"ServiceStatus",
NULL,
NULL,
"/s:Envelope/s:Body/s:Fault/s:Code/s:Subcode/s:Value",
"wsa:DestinationUnreachable",
"/s:Envelope/s:Body/s:Fault/s:Detail/wsman:FaultDetail",
"http://schemas.dmtf.org/wbem/wsman/1/wsman/faultDetail/InvalidResourceURI",
400,
0,
0
},
{
"Custom Method without parameters. (StopService)",
"http://schema.omc-project.org/wbem/wscim/1/cim-schema/2/OMC_InitdService",
"StopService",
"SystemCreationClassName=OMC_UnitaryComputerSystem&SystemName=%s&Name=postfix",
NULL,
"/s:Envelope/s:Body/n1:StopService_OUTPUT/ReturnValue",
"0",
NULL,
NULL,
200,
0,
0
},
{
"Custom Method without parameters. (ServiceStatus)",
"http://schema.omc-project.org/wbem/wscim/1/cim-schema/2/OMC_InitdService",
"ServiceStatus",
"SystemCreationClassName=OMC_UnitaryComputerSystem&SystemName=%s&Name=postfix",
NULL,
"/s:Envelope/s:Body/n1:ServiceStatus_OUTPUT/ReturnValue",
"3",
NULL,
NULL,
200,
0,
0
},
{
"Custom Method without parameters. (StartService)",
"http://schema.omc-project.org/wbem/wscim/1/cim-schema/2/OMC_InitdService",
"StartService",
"SystemCreationClassName=OMC_UnitaryComputerSystem&SystemName=%s&Name=postfix",
NULL,
"/s:Envelope/s:Body/n1:StartService_OUTPUT/ReturnValue",
"0",
NULL,
NULL,
200,
0,
0
} ,
{
"Custom Method with parameters .",
"http://schema.omc-project.org/wbem/wscim/1/cim-schema/2/OMC_SystemTimeService",
"ManageSystemTime",
"SystemCreationClassName=OMC_UnitaryComputerSystem&SystemName=%s&CreationClassName=OMC_SystemTimeService&Name=timeservice",
"GetRequest=TRUE",
"/s:Envelope/s:Body/n1:ManageSystemTime_OUTPUT/ReturnValue",
"0",
NULL,
NULL,
200,
0,
0
} /*,
{
"Custom Method with all selectors but with wrong values.",
"http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ComputerSystem",
NULL,
"CreationClassName=OpenWBEM_UnitaryComputerSystem&Name=%sx",
NULL,
"/s:Envelope/s:Body/s:Fault/s:Code/s:Subcode/s:Value",
"wsa:DestinationUnreachable",
"/s:Envelope/s:Body/s:Fault/s:Detail/wsman:FaultDetail",
"http://schemas.dmtf.org/wbem/wsman/1/wsman/faultDetail/InvalidResourceURI",
500,
0,
0
},
{
"Custom Method with correct selectors and parameters check for new value",
"http://schema.omc-project.org/wbem/wscim/1/cim-schema/2/OMC_TimeZoneSettingData",
NULL,
"InstanceID=omc:timezone",
"TimeZone=US/Pacific",
"/s:Envelope/s:Body/p:OMC_TimeZoneSettingData/p:TimeZone",
"US/Pacific",
NULL,
NULL,
200,
FLAG_DUMP_REQUEST,
},
{
"Custom Method with correct selectors and parameters reset value",
"http://schema.omc-project.org/wbem/wscim/1/cim-schema/2/OMC_TimeZoneSettingData",
NULL,
"InstanceID=omc:timezone",
"TimeZone=US/Eastern",
"/s:Envelope/s:Body/p:OMC_TimeZoneSettingData/p:TimeZone",
"US/Eastern",
NULL,
NULL,
200,
0,
}, */
};
static int ntests = sizeof (invoke_tests) / sizeof (invoke_tests[0]);
extern WsManClient *cl;
client_opt_t *options;
static void invoke_test(void) {
WsXmlDocH doc;
char *xpf = NULL;
char *xpd = NULL;
static int i = 0; // executed test number.
char *selectors = NULL;
options = wsmc_options_init();
if (invoke_tests[i].selectors) {
selectors =
u_strdup_printf(invoke_tests[i].selectors, host, host, host);
}
wsmc_reinit_conn(cl);
if (selectors != NULL) {
wsmc_add_selectors_from_str (options, selectors);
}
if (invoke_tests[i].properties != NULL) {
wsmc_add_prop_from_str (options,
invoke_tests[i].properties);
}
options->flags = invoke_tests[i].flags;
doc = wsmc_action_invoke(cl, (char *)invoke_tests[i].resource_uri, options,
(char *)invoke_tests[i].method, NULL);
//ws_xml_dump_node_tree(stdout, ws_xml_get_doc_root(doc));
CU_ASSERT_TRUE(wsmc_get_response_code(cl) ==
invoke_tests[i].final_status);
if (wsmc_get_response_code(cl) !=
invoke_tests[i].final_status) {
if (verbose) {
printf("\nExpected = %d\nReturned = %ld ",
invoke_tests[i].final_status,
wsmc_get_response_code(cl));
}
goto RETURN;
}
CU_ASSERT_PTR_NOT_NULL(doc);
if (!doc) {
goto RETURN;
}
if (invoke_tests[i].expr1 == NULL) {
goto RETURN;
}
CU_ASSERT_PTR_NOT_NULL(invoke_tests[i].value1);
if (invoke_tests[i].value1 == NULL) {
goto RETURN;
}
xpf = ws_xml_get_xpath_value(doc, invoke_tests[i].expr1);
CU_ASSERT_PTR_NOT_NULL(xpf);
if (!xpf) {
goto RETURN;
}
CU_ASSERT_STRING_EQUAL(xpf, invoke_tests[i].value1);
if (strcmp(xpf, invoke_tests[i].value1)) {
if (verbose) {
printf("\nExpected = %s\nReturned = %s ",
invoke_tests[i].value1,
xpf);
}
goto RETURN;
}
if (invoke_tests[i].expr2 == NULL) {
goto RETURN;
}
xpd = ws_xml_get_xpath_value(doc, invoke_tests[i].expr2);
CU_ASSERT_PTR_NOT_NULL(xpd);
if (!xpd) {
goto RETURN;
}
CU_ASSERT_PTR_NOT_NULL(invoke_tests[i].value2);
if (invoke_tests[i].value2 == NULL) {
goto RETURN;
}
CU_ASSERT_STRING_EQUAL(xpd, invoke_tests[i].value2 );
if (strcmp(xpd, invoke_tests[i].value2)) {
if (verbose) {
printf("\nExpected = %s\nReturned = %s ",
invoke_tests[i].value2,
xpd);
}
}
RETURN:
u_free(xpf);
u_free(xpd);
if (doc) {
ws_xml_destroy_doc(doc);
}
u_free(selectors);
wsmc_options_destroy(options);
i++; // increase executed test number
}
int add_invoke_tests(CU_pSuite ps) {
int found_test = 0;
int i;
/* add the tests to the suite */
for (i =0; i < ntests; i++) {
found_test += (NULL != CU_add_test(ps, invoke_tests[i].explanation,
(CU_TestFunc)invoke_test));
}
return (found_test > 0);
}