You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.7 KiB

/* SPDX-License-Identifier: BSD-2-Clause */
/***********************************************************************
* Copyright (c) 2017-2018, Intel Corporation
*
* All rights reserved.
***********************************************************************/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdbool.h>
#include <stdlib.h>
#define LOGMODULE test
#include "tss2_sys.h"
#include "util/log.h"
#include "test.h"
#include "test-options.h"
#include "context-util.h"
/**
* This program is a template for integration tests (ones that use the TCTI
* and the SAPI contexts / API directly). It does nothing more than parsing
* command line options that allow the caller (likely a script) to specify
* which TCTI to use for the test.
*/
int
main (int argc,
char *argv[])
{
TSS2_SYS_CONTEXT *sapi_context;
int ret;
test_opts_t opts = {
.tcti_type = TCTI_DEFAULT,
.device_file = DEVICE_PATH_DEFAULT,
.socket_address = HOSTNAME_DEFAULT,
.socket_port = PORT_DEFAULT,
};
(void) argc;
(void) argv;
get_test_opts_from_env (&opts);
if (sanity_check_test_opts (&opts) != 0) {
LOG_ERROR("Checking test options");
return 99; /* fatal error */
}
sapi_context = sapi_init_from_opts (&opts);
if (sapi_context == NULL) {
LOG_ERROR("SAPI context not initialized");
return 99; /* fatal error */
}
ret = Tss2_Sys_Startup(sapi_context, TPM2_SU_CLEAR);
if (ret != TSS2_RC_SUCCESS && ret != TPM2_RC_INITIALIZE) {
LOG_ERROR("TPM Startup FAILED! Response Code : 0x%x", ret);
exit(1);
}
ret = test_invoke (sapi_context);
sapi_teardown_full (sapi_context);
return ret;
}