diff --git a/userspace/libsinsp/test/CMakeLists.txt b/userspace/libsinsp/test/CMakeLists.txt index 058e59b200d..aae685817cf 100644 --- a/userspace/libsinsp/test/CMakeLists.txt +++ b/userspace/libsinsp/test/CMakeLists.txt @@ -110,6 +110,7 @@ set(LIBSINSP_UNIT_TESTS_SOURCES container_info.ut.cpp sinsp_utils.ut.cpp state.ut.cpp + dns_manager.ut.cpp eventformatter.ut.cpp savefile.ut.cpp sinsp_stats.ut.cpp diff --git a/userspace/libsinsp/test/dns_manager.ut.cpp b/userspace/libsinsp/test/dns_manager.ut.cpp new file mode 100644 index 00000000000..d4647ca618f --- /dev/null +++ b/userspace/libsinsp/test/dns_manager.ut.cpp @@ -0,0 +1,35 @@ +// SPDX-License-Identifier: Apache-2.0 +/* +Copyright (C) 2023 The Falco Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +*/ + +#if !defined(CYGWING_AGENT) && !defined(__EMSCRIPTEN__) +#include "sinsp_with_test_input.h" +#include +#include "tbb/concurrent_unordered_map.h" +#include + +TEST_F(sinsp_with_test_input, simple_dns_manager_invocation) +{ + // Simple dummy test to assert that sinsp_dns_manager is invocated correctly + // and not leaking memory + const char* name = "bogus"; + uint64_t ts = 11111111111111; + uint32_t addr = 111111; + bool result = sinsp_dns_manager::get().match(name, AF_INET, &addr, ts); + ASSERT_FALSE(result); +} +#endif