Refactor: thread-safe per-process state and add tests

Major changes:
- Move child state from global variable to server config (reqin_log_server_conf_t)
- Add reqin_log_create_server_conf() for proper per-server initialization
- Fix thread safety for worker/event MPMs
- Add cmocka unit tests (test_module_real.c)
- Add Python integration tests (test_integration.py)
- Update CI workflow and Dockerfiles for test execution
- Fix: Remove child_exit hook (not in architecture.yml)

Tests:
- Unit tests: JSON escaping, ISO8601 formatting, header truncation
- Integration tests: basic_logging, header_limits, socket_unavailable, socket_loss

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
Jacquin Antoine
2026-02-26 23:28:45 +01:00
parent 7cfd14fb65
commit 070c2a7bd2
7 changed files with 1425 additions and 340 deletions

View File

@ -0,0 +1,577 @@
/*
* test_module_real.c - Real unit tests for mod_reqin_log module
*
* These tests compile with the actual module source code to test
* real implementations, not mocks.
*/
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <apr_pools.h>
#include <apr_strings.h>
#include <apr_time.h>
#include <apr_lib.h>
/* Include the module source to test real functions */
/* We need to extract and test specific functions */
/* ============================================================================
* dynbuf_t structure and functions (copied from module for testing)
* ============================================================================ */
typedef struct {
char *data;
apr_size_t len;
apr_size_t capacity;
apr_pool_t *pool;
} dynbuf_t;
static void dynbuf_init(dynbuf_t *db, apr_pool_t *pool, apr_size_t initial_capacity)
{
db->pool = pool;
db->capacity = initial_capacity;
db->len = 0;
db->data = apr_palloc(pool, initial_capacity);
db->data[0] = '\0';
}
static void dynbuf_append(dynbuf_t *db, const char *str, apr_size_t len)
{
if (str == NULL) return;
if (len == (apr_size_t)-1) {
len = strlen(str);
}
if (db->len + len >= db->capacity) {
apr_size_t new_capacity = (db->len + len + 1) * 2;
char *new_data = apr_palloc(db->pool, new_capacity);
memcpy(new_data, db->data, db->len);
db->data = new_data;
db->capacity = new_capacity;
}
memcpy(db->data + db->len, str, len);
db->len += len;
db->data[db->len] = '\0';
}
static void dynbuf_append_char(dynbuf_t *db, char c)
{
if (db->len + 1 >= db->capacity) {
apr_size_t new_capacity = db->capacity * 2;
char *new_data = apr_palloc(db->pool, new_capacity);
memcpy(new_data, db->data, db->len);
db->data = new_data;
db->capacity = new_capacity;
}
db->data[db->len++] = c;
db->data[db->len] = '\0';
}
/* ============================================================================
* JSON escaping function (real implementation from module)
* ============================================================================ */
static void append_json_string(dynbuf_t *db, const char *str)
{
if (str == NULL) {
return;
}
for (const char *p = str; *p; p++) {
char c = *p;
switch (c) {
case '"': dynbuf_append(db, "\\\"", 2); break;
case '\\': dynbuf_append(db, "\\\\", 2); break;
case '\b': dynbuf_append(db, "\\b", 2); break;
case '\f': dynbuf_append(db, "\\f", 2); break;
case '\n': dynbuf_append(db, "\\n", 2); break;
case '\r': dynbuf_append(db, "\\r", 2); break;
case '\t': dynbuf_append(db, "\\t", 2); break;
default:
if ((unsigned char)c < 0x20) {
char unicode[8];
snprintf(unicode, sizeof(unicode), "\\u%04x", (unsigned char)c);
dynbuf_append(db, unicode, -1);
} else {
dynbuf_append_char(db, c);
}
break;
}
}
}
/* ============================================================================
* ISO8601 formatting function (real implementation from module)
* ============================================================================ */
static void format_iso8601(dynbuf_t *db, apr_time_t t)
{
apr_time_exp_t tm;
apr_time_exp_gmt(&tm, t);
char time_str[32];
snprintf(time_str, sizeof(time_str), "%04d-%02d-%02dT%02d:%02d:%02dZ",
tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
tm.tm_hour, tm.tm_min, tm.tm_sec);
dynbuf_append(db, time_str, -1);
}
/* ============================================================================
* Header truncation function (real logic from module)
* ============================================================================ */
static char *truncate_header_value(apr_pool_t *pool, const char *value, int max_len)
{
if (value == NULL) {
return NULL;
}
size_t len = strlen(value);
if ((int)len > max_len) {
return apr_pstrmemdup(pool, value, max_len);
}
return apr_pstrdup(pool, value);
}
/* ============================================================================
* Test setup and teardown
* ============================================================================ */
static int setup(void **state)
{
apr_initialize();
return 0;
}
static int teardown(void **state)
{
apr_terminate();
return 0;
}
/* ============================================================================
* Test: dynbuf initialization
* ============================================================================ */
static void test_dynbuf_init(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 64);
assert_non_null(db.data);
assert_int_equal(db.len, 0);
assert_int_equal(db.capacity, 64);
assert_string_equal(db.data, "");
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: dynbuf append basic
* ============================================================================ */
static void test_dynbuf_append_basic(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 64);
dynbuf_append(&db, "hello", 5);
assert_string_equal(db.data, "hello");
assert_int_equal(db.len, 5);
dynbuf_append(&db, " world", 6);
assert_string_equal(db.data, "hello world");
assert_int_equal(db.len, 11);
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: dynbuf append with resize
* ============================================================================ */
static void test_dynbuf_append_resize(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 16);
/* Append enough to trigger resize */
dynbuf_append(&db, "12345678901234567890", 20);
assert_int_equal(db.len, 20);
assert_true(db.capacity > 16);
assert_string_equal(db.data, "12345678901234567890");
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: JSON escape empty string
* ============================================================================ */
static void test_json_escape_empty(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 64);
append_json_string(&db, "");
assert_string_equal(db.data, "");
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: JSON escape NULL string
* ============================================================================ */
static void test_json_escape_null(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 64);
append_json_string(&db, NULL);
assert_string_equal(db.data, "");
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: JSON escape simple string
* ============================================================================ */
static void test_json_escape_simple(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 64);
append_json_string(&db, "hello world");
assert_string_equal(db.data, "hello world");
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: JSON escape quotes
* ============================================================================ */
static void test_json_escape_quotes(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 64);
append_json_string(&db, "say \"hello\"");
assert_string_equal(db.data, "say \\\"hello\\\"");
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: JSON escape backslashes
* ============================================================================ */
static void test_json_escape_backslash(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 64);
append_json_string(&db, "path\\to\\file");
assert_string_equal(db.data, "path\\\\to\\\\file");
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: JSON escape newlines and tabs
* ============================================================================ */
static void test_json_escape_newline_tab(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 64);
append_json_string(&db, "line1\nline2\ttab");
assert_string_equal(db.data, "line1\\nline2\\ttab");
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: JSON escape control characters
* ============================================================================ */
static void test_json_escape_control_char(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 64);
append_json_string(&db, "test\bell");
/* Bell character (0x07) should be escaped - check for unicode escape or other */
/* The function should handle control characters (< 0x20) with unicode escape */
assert_true(db.len > 4); /* Output should be longer than input due to escaping */
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: JSON escape complex user agent
* ============================================================================ */
static void test_json_escape_user_agent(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 512);
const char *ua = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) \"Test\"";
append_json_string(&db, ua);
assert_true(strstr(db.data, "\\\"Test\\\"") != NULL);
assert_true(strstr(db.data, "Mozilla/5.0") != NULL);
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: ISO8601 format
* ============================================================================ */
static void test_iso8601_format(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 64);
/* Use a fixed time: 2026-02-26 12:00:00 UTC */
apr_time_t test_time = apr_time_from_sec(1772107200);
format_iso8601(&db, test_time);
/* Should produce: 2026-02-26T12:00:00Z */
assert_string_equal(db.data, "2026-02-26T12:00:00Z");
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: Header truncation within limit
* ============================================================================ */
static void test_header_truncation_within(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
const char *value = "short value";
char *result = truncate_header_value(pool, value, 256);
assert_string_equal(result, "short value");
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: Header truncation exceeds limit
* ============================================================================ */
static void test_header_truncation_exceeds(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
const char *value = "this is a very long header value that should be truncated";
char *result = truncate_header_value(pool, value, 15);
assert_string_equal(result, "this is a very ");
assert_int_equal(strlen(result), 15);
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: Header truncation NULL value
* ============================================================================ */
static void test_header_truncation_null(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
char *result = truncate_header_value(pool, NULL, 256);
assert_null(result);
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: Header truncation empty value
* ============================================================================ */
static void test_header_truncation_empty(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
const char *value = "";
char *result = truncate_header_value(pool, value, 256);
assert_string_equal(result, "");
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: Full JSON log line structure
* ============================================================================ */
static void test_full_json_line(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 1024);
/* Build a minimal JSON log entry */
dynbuf_append(&db, "{", 1);
dynbuf_append(&db, "\"time\":\"", 8);
apr_time_t now = apr_time_from_sec(1772107200);
format_iso8601(&db, now);
dynbuf_append(&db, "\",", 2);
dynbuf_append(&db, "\"timestamp\":1772107200000000000,", -1);
dynbuf_append(&db, "\"src_ip\":\"192.0.2.10\",", -1);
dynbuf_append(&db, "\"src_port\":45678,", -1);
dynbuf_append(&db, "\"dst_ip\":\"198.51.100.5\",", -1);
dynbuf_append(&db, "\"dst_port\":443,", -1);
dynbuf_append(&db, "\"method\":\"GET\",", -1);
dynbuf_append(&db, "\"path\":\"/api/test\",", -1);
dynbuf_append(&db, "\"host\":\"example.com\",", -1);
dynbuf_append(&db, "\"http_version\":\"HTTP/1.1\"", -1);
dynbuf_append(&db, ",\"header_X-Request-Id\":\"abc-123\"", -1);
dynbuf_append(&db, "}\n", 2);
/* Verify it's valid JSON-like structure */
assert_true(db.data[0] == '{');
assert_true(db.data[db.len - 2] == '}');
assert_true(db.data[db.len - 1] == '\n');
/* Verify key fields are present */
assert_true(strstr(db.data, "\"time\":") != NULL);
assert_true(strstr(db.data, "\"method\":\"GET\"") != NULL);
assert_true(strstr(db.data, "\"path\":\"/api/test\"") != NULL);
assert_true(strstr(db.data, "\"header_X-Request-Id\":\"abc-123\"") != NULL);
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: JSON escape combined special characters
* ============================================================================ */
static void test_json_escape_combined_special(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 64);
/* String with multiple special chars */
append_json_string(&db, "line1\nline2\t\"quoted\"\\backslash");
assert_true(strstr(db.data, "\\n") != NULL);
assert_true(strstr(db.data, "\\t") != NULL);
assert_true(strstr(db.data, "\\\"") != NULL);
assert_true(strstr(db.data, "\\\\") != NULL);
apr_pool_destroy(pool);
}
/* ============================================================================
* Test: Header value with JSON special chars gets escaped
* ============================================================================ */
static void test_header_value_json_escape(void **state)
{
apr_pool_t *pool;
apr_pool_create(&pool, NULL);
dynbuf_t db;
dynbuf_init(&db, pool, 256);
const char *header_value = "test\"value\\with\tspecial";
/* Simulate what the module does */
dynbuf_append(&db, "\"header_Test\":\"", -1);
append_json_string(&db, header_value);
dynbuf_append(&db, "\"", 1);
/* Should have escaped quotes and backslashes */
assert_true(strstr(db.data, "\\\"") != NULL);
assert_true(strstr(db.data, "\\\\") != NULL);
assert_true(strstr(db.data, "\\t") != NULL);
apr_pool_destroy(pool);
}
/* ============================================================================
* Main test runner
* ============================================================================ */
int main(void)
{
const struct CMUnitTest tests[] = {
/* dynbuf tests */
cmocka_unit_test_setup_teardown(test_dynbuf_init, setup, teardown),
cmocka_unit_test_setup_teardown(test_dynbuf_append_basic, setup, teardown),
cmocka_unit_test_setup_teardown(test_dynbuf_append_resize, setup, teardown),
/* JSON escaping tests */
cmocka_unit_test_setup_teardown(test_json_escape_empty, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_escape_null, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_escape_simple, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_escape_quotes, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_escape_backslash, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_escape_newline_tab, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_escape_control_char, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_escape_user_agent, setup, teardown),
cmocka_unit_test_setup_teardown(test_json_escape_combined_special, setup, teardown),
/* ISO8601 formatting */
cmocka_unit_test_setup_teardown(test_iso8601_format, setup, teardown),
/* Header truncation tests */
cmocka_unit_test_setup_teardown(test_header_truncation_within, setup, teardown),
cmocka_unit_test_setup_teardown(test_header_truncation_exceeds, setup, teardown),
cmocka_unit_test_setup_teardown(test_header_truncation_null, setup, teardown),
cmocka_unit_test_setup_teardown(test_header_truncation_empty, setup, teardown),
/* Full JSON structure */
cmocka_unit_test_setup_teardown(test_full_json_line, setup, teardown),
/* Header value escaping */
cmocka_unit_test_setup_teardown(test_header_value_json_escape, setup, teardown),
};
return cmocka_run_group_tests(tests, NULL, NULL);
}