12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* SPDX-License-Identifier: BSD-2-Clause */
- /***********************************************************************
- * Copyright (c) 2019, Infineon Technologies AG
- *
- * All rights reserved.
- ***********************************************************************/
- #ifdef HAVE_CONFIG_H
- #include <config.h>
- #endif
- #include <inttypes.h>
- #include <stdio.h>
- #include <stdbool.h>
- #include <stdlib.h>
- #include <setjmp.h>
- #include <cmocka.h>
- #include "tss2_tpm2_types.h"
- #include "util/io.h"
- #define LOGMODULE test
- #include "util/log.h"
- static void
- execute_doLog(char *env_log_level){
- setenv("TSS2_LOG", env_log_level, 1);
- LOG_DEBUG("test");
- LOG_TRACE("test");
- LOG_INFO("test");
- LOG_WARNING("test");
- LOG_INFO("test");
- /* reset log level for next test */
- LOGMODULE_status = LOGLEVEL_UNDEFINED;
- }
- static void
- doLog_test (void **state)
- {
- execute_doLog("ALL+none");
- execute_doLog("ALL+unused");
- execute_doLog("ALL+error");
- execute_doLog("ALL+warning");
- execute_doLog("ALL+info");
- execute_doLog("ALL+debug");
- execute_doLog("ALL+trace");
- execute_doLog("ALL+xxxxx");
- execute_doLog("marshal+xxxxx");
- execute_doLog("marshal+debug");
- execute_doLog("test+debug");
- execute_doLog("test+xxxx");
- execute_doLog("ukn+xxxx");
- execute_doLog("test+xxxx");
- execute_doLog("TEST+trace");
- execute_doLog("ALL+xxxxx,mashal+xxxx,tcti+DEBug");
- execute_doLog("ALL+none,mashal+WARNING,tcti+DEBug");
- }
- int
- main (int argc, char *argv[])
- {
- const struct CMUnitTest tests[] = {
- cmocka_unit_test (doLog_test),
- };
- return cmocka_run_group_tests (tests, NULL, NULL);
- }
|