blob: dfcec385be111a2ac8ac64a19523b06204859fcb [file] [log] [blame]
/*
* test_si.c
*
* (C) Copyright IBM Corp. 2005
* (C) Copyright Intel Corp. 2005
*
* THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE
* ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE
* CONSTITUTES RECIPIENTS ACCEPTANCE OF THE AGREEMENT.
*
* You can obtain a current copy of the Eclipse Public License from
* http://www.opensource.org/licenses/eclipse-1.0.php
*
* Author: Adrian Schuur <schuur@de.ibm.com>
*
* Description:
*
* Test for setInstance() library API.
*/
#include <cmci.h>
#include <native.h>
#include <unistd.h>
#include <stdlib.h>
#include "show.h"
int main()
{
CMCIClient *cc;
CMPIObjectPath * objectpath;
CMPIInstance * instance;
CMPIStatus status;
CMPIValue yesValue;
char *cim_host, *cim_host_passwd, *cim_host_userid;
/* Setup a connection to the CIMOM */
cim_host = getenv("CIM_HOST");
if (cim_host == NULL)
cim_host = "localhost";
cim_host_userid = getenv("CIM_HOST_USERID");
if (cim_host_userid == NULL)
cim_host_userid = "root";
cim_host_passwd = getenv("CIM_HOST_PASSWD");
if (cim_host_passwd == NULL)
cim_host_passwd = "password";
cc = cmciConnect(cim_host, NULL, "5988",
cim_host_userid, cim_host_passwd, NULL);
/* Test setInstance() */
printf("\n----------------------------------------------------------\n");
printf("Testing setInstance() ...\n");
objectpath = newCMPIObjectPath("root/cimv2", "CWS_Authorization", NULL);
CMAddKey(objectpath, "Username", "bestorga", CMPI_chars);
CMAddKey(objectpath, "Classname", "foobar", CMPI_chars);
instance = newCMPIInstance(objectpath, NULL);
CMSetProperty(instance, "Username", "bestorga", CMPI_chars);
CMSetProperty(instance, "Classname", "foobar", CMPI_chars);
yesValue.boolean = 1;
CMSetProperty(instance, "Query", &yesValue, CMPI_boolean);
status = cc->ft->setInstance(cc, objectpath, instance, 0, NULL);
/* Print the results */
printf( "setInstance() rc=%d, msg=%s\n",
status.rc, (status.msg)? (char *)status.msg->hdl : "");
if (instance) CMRelease(instance);
if (objectpath) CMRelease(objectpath);
if (status.msg) CMRelease(status.msg);
if (cc) CMRelease(cc);
return 0;
}