Files
oceanbase/deps/easy/test/io/easy_log_test.c
wangzelin.wzl 93a1074b0c patch 4.0
2022-10-24 17:57:12 +08:00

94 lines
2.9 KiB
C

/**
* Copyright (c) 2021 OceanBase
* OceanBase CE is licensed under Mulan PubL v2.
* You can use this software according to the terms and conditions of the Mulan PubL v2.
* You may obtain a copy of Mulan PubL v2 at:
* http://license.coscl.org.cn/MulanPubL-2.0
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PubL v2 for more details.
*/
#include "io/easy_log.h"
#include "io/easy_io.h"
#include <string.h>
#include <easy_test.h>
/**
* 测试 easy_log.c
*/
static int test_easy_log_cnt = 0;
static void test_easy_log_print(const char *message)
{
test_easy_log_cnt ++;
}
TEST(easy_log, print)
{
int i;
easy_log_level = (easy_log_level_t)10;
easy_fatal_log("log\n\n\n");
easy_log_set_print(test_easy_log_print);
for(i = EASY_LOG_OFF; i <= EASY_LOG_ALL; i++) {
test_easy_log_cnt = 0;
easy_log_level = (easy_log_level_t)i;
easy_fatal_log("a:%d\n", i);
easy_error_log("a:%d\n", i);
easy_warn_log("a:%d\n", i);
easy_info_log("a:%d\n", i);
easy_debug_log("a:%d\n", i);
easy_trace_log("a:%d\n", i);
EXPECT_EQ(test_easy_log_cnt, (i == EASY_LOG_ALL ? EASY_LOG_ALL - 2 : i - 1));
}
// other branch
easy_fatal_log("");
easy_io_t *eio = (easy_io_t *)easy_malloc(sizeof(easy_io_t));
memset(eio, 0, sizeof(easy_io_t));
easy_baseth_self = ((easy_baseth_t *)eio);
easy_fatal_log("");
easy_free(eio);
}
void easy_log_format_test(int level, const char *file, int line, const char *function,
uint64_t location_hash_val, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
fprintf(stderr, fmt, args);
va_end(args);
}
TEST(easy_log, format)
{
easy_log_set_format(easy_log_format_test);
test_easy_log_cnt = 0;
easy_error_log("test_easy_log_cnt: %d\n", test_easy_log_cnt);
easy_log_set_format(easy_log_format_default);
}
void easy_log_format_vsnprintf(char *buf, int size, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
easy_vsnprintf(buf, size, fmt, args);
va_end(args);
}
// test "%.*s", 0, NULL
TEST(easy_log, vsnprintf)
{
char buf[1024];
char *dst;
dst = "easy_vsnprintf:";
easy_log_format_vsnprintf(buf, 1024, "easy_vsnprintf:%.*s", 0, NULL);
EXPECT_TRUE(strlen(dst) == strlen(buf) && memcmp(buf, dst, strlen(buf)) == 0);
dst = "easy_vsnprintf: taob";
easy_log_format_vsnprintf(buf, 1024, "easy_vsnprintf: %.*s", 4, "taobao");
EXPECT_TRUE(strlen(dst) == strlen(buf) && memcmp(buf, dst, strlen(buf)) == 0);
dst = "easy_vsnprintf: tao";
EXPECT_TRUE(strlen(dst) != strlen(buf));
}