blob: 86d7084c3ca5ed7846113f85f39caa89e2a07b68 [file] [log] [blame]
/*
*
* Copyright (C) International Business Machines Corp., 2004, 2005
*
* This program 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 of the License, or
* (at your option) any later version.
*
* This program 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 program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
* NAME
* Tspi_Context_Close03.c
*
* DESCRIPTION
* This test will verify Tspi_Context_Close
* The purpose of this test case is to get TSS_E_INVALID_HANDLE to be
* returned. This is easily accomplished by passing in
* an invalid parameter. This test case passes in -1.
*
* ALGORITHM
* Setup:
* Create Context
* Connect Context
*
* Test: Call Close Context
* Make sure that it returns the proper return codes
*
* Cleanup:
* Print error/success message
*
* USAGE: This test takes no parameters.
*
* HISTORY
* Author: Kathy Robertson
* Date: June 2004
* Email: klrobert@us.ibm.com
*
* RESTRICTIONS
* None.
*/
#include <stdlib.h>
#include "common.h"
int main(int argc, char **argv)
{
char version;
version = parseArgs( argc, argv );
if (version)
main_v1_1();
else
print_wrongVersion();
}
int
main_v1_1(void){
char *nameOfFunction = "Tspi_Context_Close03";
TSS_HCONTEXT hContext;
TSS_RESULT result;
print_begin_test(nameOfFunction);
//Create Context
result = Tspi_Context_Create(&hContext);
if (result != TSS_SUCCESS) {
print_error("Tspi_Context_Create", result);
exit(result);
}
//Connect Context
result = Tspi_Context_Connect(hContext, get_server(GLOBALSERVER));
if (result != TSS_SUCCESS){
print_error("Tspi_Context_Connect", result);
Tspi_Context_Close(hContext);
exit(result);
}
//Close Context
result = Tspi_Context_Close(-1);
if (TSS_ERROR_CODE(result) != TSS_E_INVALID_HANDLE) {
if(!checkNonAPI(result)){
print_error(nameOfFunction, result);
print_end_test(nameOfFunction);
Tspi_Context_Close(hContext);
exit(result);
}
else{
print_error_nonapi(nameOfFunction, result);
print_end_test(nameOfFunction);
Tspi_Context_Close(hContext);
exit(result);
}
}
else{
print_success(nameOfFunction, result);
print_end_test(nameOfFunction);
exit(0);
}
}