Skip to content

Commit

Permalink
new(libsinsp/test): simple test for sinsp_dns_manager
Browse files Browse the repository at this point in the history
Signed-off-by: Melissa Kilby <[email protected]>
  • Loading branch information
incertum committed Dec 8, 2023
1 parent a53199a commit 05fc130
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions userspace/libsinsp/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
35 changes: 35 additions & 0 deletions userspace/libsinsp/test/dns_manager.ut.cpp
Original file line number Diff line number Diff line change
@@ -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 <dns_manager.h>
#include "tbb/concurrent_unordered_map.h"
#include <gtest/gtest.h>

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

0 comments on commit 05fc130

Please sign in to comment.