From 56beafe7051dba80034d2e84b40b8536ebf9b2c8 Mon Sep 17 00:00:00 2001 From: Sam Stenvall Date: Thu, 27 Jun 2024 09:34:38 +0300 Subject: [PATCH] Add a "test" for hexdump() Since the side effect of the function is that the buffer gets logged it's hard to test without more refactoring. This sufficed for now. --- tests/Makefile.in | 3 ++- tests/utils/test_utils.c | 45 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 tests/utils/test_utils.c diff --git a/tests/Makefile.in b/tests/Makefile.in index b53c34e937..44140ae20e 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -24,7 +24,8 @@ SOURCES=\ test_minisatip.c \ test_utils.c \ test_socketworks.c \ - utils/test_hash_table.c + utils/test_hash_table.c \ + utils/test_utils.c MAIN_SOURCES=$(shell find ../src -type f -iname '*.c') diff --git a/tests/utils/test_utils.c b/tests/utils/test_utils.c new file mode 100644 index 0000000000..f9405365fc --- /dev/null +++ b/tests/utils/test_utils.c @@ -0,0 +1,45 @@ +/* + * Copyright (C) 2014-2024 Catalin Toda et al + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + * USA + * + */ +#define _GNU_SOURCE + +#include "opts.h" +#include "utils.h" +#include "utils/testing.h" +#include + +// This doesn't really test anything, visual inspection is required to verify +// the results +int test_hexdump() { + const char *data = "some string to \x11\x12\x13\x14 on two lines"; + + int i; + for (i = 1; i <= 32; i++) { + _hexdump(NULL, (void *)data, i); + } + + return 0; +} + +int main() { + opts.log = 255; + strcpy(thread_info[thread_index].thread_name, "test_hexdump"); + TEST_FUNC(test_hexdump(), "test hexdump"); + return 0; +}