123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- #if defined(_WIN32) || defined(_WIN64)
- #define _CRT_NONSTDC_NO_WARNINGS
- #endif
- #define ZF_LOG_ANDROID_LOG 0
- #define ZF_LOG_BUF_SZ 128
- #define ZF_LOG_MEM_WIDTH 16
- #define ZF_LOG_INSTRUMENTED 1
- #define ZF_LOG_LEVEL ZF_LOG_INFO
- #define ZF_LOG_TAG "TAG"
- #include <zf_log.c>
- #include <stddef.h>
- #include <stdio.h>
- #include <string.h>
- #if defined(_MSC_VER) && !defined(__INTEL_COMPILER) && !defined(snprintf)
- #define snprintf(buf, len, ...) _snprintf_s(buf, len, _TRUNCATE, __VA_ARGS__)
- #endif
- #define MESSAGE_EXPECTED_PRINTF_FMT__ ""
- #define MESSAGE_EXPECTED_PRINTF_FMT__YEAR "2016"
- #define MESSAGE_EXPECTED_PRINTF_FMT__MONTH "12"
- #define MESSAGE_EXPECTED_PRINTF_FMT__DAY "23"
- #define MESSAGE_EXPECTED_PRINTF_FMT__HOUR "12"
- #define MESSAGE_EXPECTED_PRINTF_FMT__MINUTE "34"
- #define MESSAGE_EXPECTED_PRINTF_FMT__SECOND "56"
- #define MESSAGE_EXPECTED_PRINTF_FMT__MILLISECOND "789"
- #define MESSAGE_EXPECTED_PRINTF_FMT__PID " 9876"
- #define MESSAGE_EXPECTED_PRINTF_FMT__TID " 5432"
- #define MESSAGE_EXPECTED_PRINTF_FMT__LEVEL "I"
- #define MESSAGE_EXPECTED_PRINTF_FMT__TAG(ps, ts) "prefix" ps "TAG" ts
- #define MESSAGE_EXPECTED_PRINTF_FMT__FUNCTION "function"
- #define MESSAGE_EXPECTED_PRINTF_FMT__FILENAME "file"
- #define MESSAGE_EXPECTED_PRINTF_FMT__FILELINE "42"
- #define MESSAGE_EXPECTED_PRINTF_FMT__S(s) s
- #define MESSAGE_EXPECTED_PRINTF_FMT__F_INIT(expr) ""
- #define MESSAGE_EXPECTED_PRINTF_FMT__F_UINT(w, v) "%" #w "u"
- #define MESSAGE_EXPECTED_PRINTF_FMT(field) \
- _PP_CONCAT_3(MESSAGE_EXPECTED_PRINTF_FMT_, _, field)
- #define MESSAGE_EXPECTED_PRINTF_VAL__
- #define MESSAGE_EXPECTED_PRINTF_VAL__YEAR
- #define MESSAGE_EXPECTED_PRINTF_VAL__MONTH
- #define MESSAGE_EXPECTED_PRINTF_VAL__DAY
- #define MESSAGE_EXPECTED_PRINTF_VAL__HOUR
- #define MESSAGE_EXPECTED_PRINTF_VAL__MINUTE
- #define MESSAGE_EXPECTED_PRINTF_VAL__SECOND
- #define MESSAGE_EXPECTED_PRINTF_VAL__MILLISECOND
- #define MESSAGE_EXPECTED_PRINTF_VAL__PID
- #define MESSAGE_EXPECTED_PRINTF_VAL__TID
- #define MESSAGE_EXPECTED_PRINTF_VAL__LEVEL
- #define MESSAGE_EXPECTED_PRINTF_VAL__TAG(ps, ts)
- #define MESSAGE_EXPECTED_PRINTF_VAL__FUNCTION
- #define MESSAGE_EXPECTED_PRINTF_VAL__FILENAME
- #define MESSAGE_EXPECTED_PRINTF_VAL__FILELINE
- #define MESSAGE_EXPECTED_PRINTF_VAL__S(s)
- #define MESSAGE_EXPECTED_PRINTF_VAL__F_INIT(expr)
- #define MESSAGE_EXPECTED_PRINTF_VAL__F_UINT(w, v) ,v
- #define MESSAGE_EXPECTED_PRINTF_VAL(field) \
- _PP_CONCAT_3(MESSAGE_EXPECTED_PRINTF_VAL_, _, field)
- #define MESSAGE_EXPECTED_PRINTF_FMTS \
- _PP_MAP(MESSAGE_EXPECTED_PRINTF_FMT, ZF_LOG_MESSAGE_CTX_FORMAT) \
- _PP_MAP(MESSAGE_EXPECTED_PRINTF_FMT, ZF_LOG_MESSAGE_TAG_FORMAT) \
- _PP_MAP(MESSAGE_EXPECTED_PRINTF_FMT, ZF_LOG_MESSAGE_SRC_FORMAT)
- #define MESSAGE_EXPECTED_PRINTF_VALS \
- _PP_MAP(MESSAGE_EXPECTED_PRINTF_VAL, ZF_LOG_MESSAGE_CTX_FORMAT) \
- _PP_MAP(MESSAGE_EXPECTED_PRINTF_VAL, ZF_LOG_MESSAGE_TAG_FORMAT) \
- _PP_MAP(MESSAGE_EXPECTED_PRINTF_VAL, ZF_LOG_MESSAGE_SRC_FORMAT)
- static const char c_test_fmt[] =
- "Lorem ipsum dolor sit amet.";
- static const char c_test_mem[] =
- "Here's to the crazy ones.";
- static const char *c_msg_expected_lines[1];
- static const char *c_mem_expected_lines[3];
- #define MAX_LINES 4
- static char g_lines[MAX_LINES][ZF_LOG_BUF_SZ];
- static size_t g_len[MAX_LINES];
- static size_t g_null_pos[MAX_LINES];
- static size_t g_line;
- static size_t memchk(const void *const b, const int c, const size_t sz)
- {
- const unsigned char v = (unsigned char)c;
- const unsigned char *const s = (const unsigned char *)b;
- const unsigned char *const e = s + sz;
- const unsigned char *p = s;
- for (;p != e && v == *p; ++p) {}
- return (size_t)(p - s);
- }
- static size_t common_prefix(const char *const s1, const size_t s1_len,
- const char *const s2, const size_t s2_len)
- {
- const char *const e1 = s1 + s1_len;
- const char *const e2 = s2 + s2_len;
- const char *c1 = s1, *c2 = s2;
- for (;e1 != c1 && e2 != c2 && *c1 == *c2; ++c1, ++c2) {}
- return (size_t)(c1 - s1);
- }
- static void reset()
- {
- g_buf_sz = ZF_LOG_BUF_SZ;
- for (size_t i = 0; MAX_LINES > i; ++i)
- {
- memset(g_lines[i], -1, ZF_LOG_BUF_SZ);
- g_len[i] = 0;
- g_null_pos[i] = 0;
- }
- g_line = 0;
- }
- static void mock_time_callback(struct tm *const tm, unsigned *const msec)
- {
- memset(tm, 0, sizeof(*tm));
- tm->tm_sec = 56;
- tm->tm_min = 34;
- tm->tm_hour = 12;
- tm->tm_mday = 23;
- tm->tm_mon = 11;
- tm->tm_year = 2016 - 1900;
- *msec = 789;
- }
- static void mock_pid_callback(int *const pid, int *const tid)
- {
- *pid = 9876;
- *tid = 5432;
- }
- static void mock_buffer_callback(zf_log_message *msg, char *buf)
- {
- memset(buf, -1, ZF_LOG_BUF_SZ);
- buffer_callback(msg, buf);
- }
- static void mock_output_callback(const zf_log_message *msg, void *arg)
- {
- (void)arg;
- const size_t i = g_line++;
- if (MAX_LINES <= i)
- {
- fprintf(stderr, "too many lines produced\n");
- exit(1);
- }
- char *const line = g_lines[i];
- memcpy(line, msg->buf, ZF_LOG_BUF_SZ);
- const size_t len = (size_t)(msg->p - msg->buf);
- size_t null_pos;
- for (null_pos = 0; len > null_pos && 0 != line[null_pos]; ++null_pos) {}
- g_len[i] = len;
- g_null_pos[i] = null_pos;
- }
- static void verify_log_output(const size_t buf_sz,
- const char *const expected[],
- const size_t expected_n)
- {
- const size_t modifiable = buf_sz + 1;
- const size_t unmodifiable = ZF_LOG_BUF_SZ - modifiable;
- if (g_line > expected_n)
- {
- fprintf(stderr, "Lines produced: actual=%u, expected=<%u\n",
- (unsigned)g_line, (unsigned)expected_n);
- exit(1);
- }
- size_t complete_lines = 0;
- for (size_t i = 0; g_line > i; ++i)
- {
- const char *const line = g_lines[i];
- const size_t line_len = strlen(expected[i]);
- const size_t untouched = memchk(line + modifiable, -1, unmodifiable);
- const size_t match = common_prefix(expected[i], line_len,
- line, g_len[i]);
- if (untouched != unmodifiable)
- {
- fprintf(stderr, "Untouched bytes: actual=%u, expected=%u\n",
- (unsigned)untouched, (unsigned)unmodifiable);
- exit(1);
- }
- if (g_null_pos[i] != g_len[i])
- {
- fprintf(stderr, "Null position: actual=%u, expected=%u\n",
- (unsigned)g_null_pos[i], (unsigned)g_len[i]);
- exit(1);
- }
- if (match < g_len[i])
- {
- fprintf(stderr, "Line partial match: actual=%u, expected=>%u\n",
- (unsigned)match, (unsigned)g_len[i]);
- exit(1);
- }
- if (line_len <= buf_sz)
- {
- ++complete_lines;
- if (line_len <= buf_sz && match != g_len[i])
- {
- fprintf(stderr, "Line complete match: actual=%u, expected=%u\n",
- (unsigned)match, (unsigned)g_len[i]);
- exit(1);
- }
- }
- }
- if (expected_n == complete_lines && g_line != expected_n)
- {
- fprintf(stderr, "Complete lines produced: actual=%u, expected=<%u\n",
- (unsigned)g_line, (unsigned)expected_n);
- exit(1);
- }
- }
- static void test_msg_output()
- {
- for (unsigned buf_sz = 0; ZF_LOG_BUF_SZ - ZF_LOG_EOL_SZ >= buf_sz; ++buf_sz)
- {
- reset();
- g_buf_sz = buf_sz;
- _zf_log_write_d("function", "file", 42, ZF_LOG_INFO, ZF_LOG_TAG,
- c_test_fmt);
- verify_log_output(buf_sz,
- c_msg_expected_lines, _countof(c_msg_expected_lines));
- }
- }
- static void test_mem_output()
- {
- for (unsigned buf_sz = 0; ZF_LOG_BUF_SZ - ZF_LOG_EOL_SZ >= buf_sz; ++buf_sz)
- {
- reset();
- g_buf_sz = buf_sz;
- _zf_log_write_mem_d("function", "file", 42, ZF_LOG_INFO, ZF_LOG_TAG,
- c_test_mem, sizeof(c_test_mem),
- c_test_fmt);
- verify_log_output(buf_sz,
- c_mem_expected_lines, _countof(c_mem_expected_lines));
- }
- }
- static void init_expected_lines()
- {
- char expected_header[256];
- char line[512];
- _PP_MAP(_ZF_LOG_MESSAGE_FORMAT_INIT, ZF_LOG_MESSAGE_CTX_FORMAT)
- _PP_MAP(_ZF_LOG_MESSAGE_FORMAT_INIT, ZF_LOG_MESSAGE_TAG_FORMAT)
- _PP_MAP(_ZF_LOG_MESSAGE_FORMAT_INIT, ZF_LOG_MESSAGE_SRC_FORMAT)
- #if _ZF_LOG_MESSAGE_FORMAT_FIELDS(ZF_LOG_MESSAGE_CTX_FORMAT) || \
- _ZF_LOG_MESSAGE_FORMAT_FIELDS(ZF_LOG_MESSAGE_TAG_FORMAT) || \
- _ZF_LOG_MESSAGE_FORMAT_FIELDS(ZF_LOG_MESSAGE_SRC_FORMAT)
- snprintf(expected_header, sizeof(expected_header),
- MESSAGE_EXPECTED_PRINTF_FMTS
- MESSAGE_EXPECTED_PRINTF_VALS);
- #else
- *expected_header ='\0';
- #endif
- snprintf(line, sizeof(line), "%s%s", expected_header,
- "Lorem ipsum dolor sit amet.");
- c_msg_expected_lines[0] = strdup(line);
- snprintf(line, sizeof(line), "%s%s", expected_header,
- "Lorem ipsum dolor sit amet.");
- c_mem_expected_lines[0] = strdup(line);
- snprintf(line, sizeof(line), "%s%s", expected_header,
- "48657265277320746f20746865206372 Here's to the cr");
- c_mem_expected_lines[1] = strdup(line);
- snprintf(line, sizeof(line), "%s%s", expected_header,
- "617a79206f6e65732e00 azy ones.?");
- c_mem_expected_lines[2] = strdup(line);
- }
- int main(int argc, char *argv[])
- {
- (void)argc; (void)argv;
- g_time_cb = mock_time_callback;
- g_pid_cb = mock_pid_callback;
- g_buffer_cb = mock_buffer_callback;
- zf_log_set_output_v(ZF_LOG_PUT_STD, 0, mock_output_callback);
- zf_log_set_tag_prefix("prefix");
- init_expected_lines();
- test_msg_output();
- test_mem_output();
- return 0;
- }
|