1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
/*
* boxes - Command line filter to draw/remove ASCII boxes around text
* Copyright (c) 1999-2024 Thomas Jensen and the boxes contributors
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
* License, version 3, as published by the Free Software Foundation.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* You should have received a copy of the GNU General Public License along with this program.
* If not, see <https://www.gnu.org/licenses/>.
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*/
/*
* Unit tests of the 'logging' module
*/
#include "config.h"
#include <setjmp.h>
#include <stdarg.h>
#include <stddef.h>
#include <cmocka.h>
#include "boxes.h"
#include "tools.h"
#include "logging.h"
#include "logging_test.h"
#include "global_mock.h"
#include "utest_tools.h"
int logging_setup(void **state)
{
UNUSED(state);
int *areas = (int *) calloc(NUM_LOG_AREAS, sizeof(int));
areas[MAIN - 2] = 1;
activate_debug_logging(areas);
BFREE(areas);
return 0;
}
int logging_teardown(void **state)
{
UNUSED(state);
activate_debug_logging(NULL); /* turn off debug logging */
return 0;
}
void test_debug_shorten_nopath(void **state)
{
UNUSED(state);
log_debug("nopath.c", MAIN, "foo\n");
assert_int_equal(1, collect_err_size);
assert_string_equal("[nopath ] foo\n", collect_err[0]);
}
void test_debug_shorten_minimal(void **state)
{
UNUSED(state);
log_debug("minimal", MAIN, "foo\n");
assert_int_equal(1, collect_err_size);
assert_string_equal("[minimal ] foo\n", collect_err[0]);
}
void test_debug_shorten_null(void **state)
{
UNUSED(state);
log_debug(NULL, MAIN, "foo\n");
assert_int_equal(1, collect_err_size);
assert_string_equal("[NULL ] foo\n", collect_err[0]);
}
void test_debug_shorten_backslash(void **state)
{
UNUSED(state);
log_debug("..\\path\\to\\module.c", MAIN, "foo\n");
assert_int_equal(1, collect_err_size);
assert_string_equal("[module ] foo\n", collect_err[0]);
}
void test_debug_shorten_slash(void **state)
{
UNUSED(state);
log_debug("path/to/module.c", MAIN, "foo\n");
assert_int_equal(1, collect_err_size);
assert_string_equal("[module ] foo\n", collect_err[0]);
}
void test_debug_shorten_nosuffix(void **state)
{
UNUSED(state);
log_debug("path/to/module", MAIN, "foo\n");
assert_int_equal(1, collect_err_size);
assert_string_equal("[module ] foo\n", collect_err[0]);
}
void test_debug_shorten_wrongdot(void **state)
{
UNUSED(state);
log_debug("path/to.dot/module", MAIN, "foo\n");
assert_int_equal(1, collect_err_size);
assert_string_equal("[module ] foo\n", collect_err[0]);
}
void test_debug_shorten_empty(void **state)
{
UNUSED(state);
log_debug("", MAIN, "foo\n");
assert_int_equal(1, collect_err_size);
assert_string_equal("[ ] foo\n", collect_err[0]);
}
void test_debug_inactive_area(void **state)
{
UNUSED(state);
log_debug("module.c", LEXER, "foo\n");
assert_int_equal(0, collect_err_size);
}
void test_debug_continue(void **state)
{
UNUSED(state);
log_debug_cont(MAIN, "foo");
assert_int_equal(1, collect_err_size);
assert_string_equal("foo", collect_err[0]);
}
void test_debug_continue_inactive(void **state)
{
UNUSED(state);
log_debug_cont(LEXER, "foo");
assert_int_equal(0, collect_err_size);
}
void test_debug_area_too_big(void **state)
{
UNUSED(state);
log_debug("module.c", 100, "foo\n"); /* 100 is way too large and does not exist */
assert_int_equal(0, collect_err_size);
}
void test_debug_area_reserved(void **state)
{
UNUSED(state);
log_debug("module.c", RESERVED, "foo\n"); /* RESERVED may never be used and is always "inactive" */
assert_int_equal(0, collect_err_size);
}
void test_debug_area_all(void **state)
{
UNUSED(state);
log_debug("module.c", ALL, "foo\n"); /* only MAIN is active, but not all of them */
assert_int_equal(0, collect_err_size);
}
void test_debug_deactivated(void **state)
{
UNUSED(state);
activate_debug_logging(NULL);
log_debug("module.c", MAIN, "foo\n");
assert_int_equal(0, collect_err_size);
}
void test_debug_all_active(void **state)
{
UNUSED(state);
int *areas = (int *) calloc(NUM_LOG_AREAS, sizeof(int));
for(size_t i = 0; i < NUM_LOG_AREAS; i++) {
areas[i] = 1;
}
activate_debug_logging(areas);
BFREE(areas);
log_debug("module.c", ALL, "foo\n");
assert_int_equal(1, collect_err_size);
assert_string_equal("[module ] foo\n", collect_err[0]);
}
/* vim: set cindent sw=4: */
|