Skip to content

Commit

Permalink
update(tests): add tests for numeric compare
Browse files Browse the repository at this point in the history
Signed-off-by: Luca Guerra <[email protected]>
  • Loading branch information
LucaGuerra committed Jun 12, 2024
1 parent 5e8960e commit df39a50
Show file tree
Hide file tree
Showing 4 changed files with 81 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 @@ -107,6 +107,7 @@ set(LIBSINSP_UNIT_TESTS_SOURCES
filter_parser.ut.cpp
filter_op_bcontains.ut.cpp
filter_op_pmatch.ut.cpp
filter_op_numeric_compare.ut.cpp
filter_compiler.ut.cpp
filter_transformer.ut.cpp
user.ut.cpp
Expand Down
63 changes: 63 additions & 0 deletions userspace/libsinsp/test/filter_op_numeric_compare.ut.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
// 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.
*/

#include <libsinsp/sinsp.h>
#include <gtest/gtest.h>

#include <sinsp_with_test_input.h>

TEST_F(sinsp_with_test_input, signed_int_compare)
{
add_default_init_thread();

open_inspector();

sinsp_evt * evt = add_event_advance_ts(increasing_ts(), 1, PPME_SYSCALL_EPOLL_CREATE_X, 1, (uint64_t)-22);

EXPECT_EQ(get_field_as_string(evt, "evt.cpu"), "1");

EXPECT_TRUE(eval_filter(evt, "evt.cpu < 300"));
EXPECT_FALSE(eval_filter(evt, "evt.cpu > 300"));
EXPECT_TRUE(eval_filter(evt, "evt.cpu < 2"));
EXPECT_TRUE(eval_filter(evt, "evt.cpu > -500"));
EXPECT_TRUE(eval_filter(evt, "evt.cpu < 500"));
EXPECT_TRUE(eval_filter(evt, "evt.cpu <= 500"));

EXPECT_TRUE(eval_filter(evt, "evt.cpu <= 1025"));
EXPECT_FALSE(eval_filter(evt, "evt.cpu >= 1025"));

EXPECT_FALSE(eval_filter(evt, "evt.rawarg.res > 0"));
EXPECT_TRUE(eval_filter(evt, "evt.rawarg.res < 0"));
EXPECT_FALSE(eval_filter(evt, "evt.rawarg.res > 4294967295"));
EXPECT_TRUE(eval_filter(evt, "evt.rawarg.res < -1"));
EXPECT_TRUE(eval_filter(evt, "evt.rawarg.res > -65535"));

evt = add_event_advance_ts(increasing_ts(), 1, PPME_SYSCALL_OPEN_E, 3, "/tmp/the_file", PPM_O_NONE, 0666);
evt = add_event_advance_ts(increasing_ts(), 1, PPME_SYSCALL_OPEN_X, 6, (int64_t)(-1), "/tmp/the_file", PPM_O_NONE, 0666, 123, (uint64_t)456);

EXPECT_FALSE(eval_filter(evt, "fd.num >= 0"));
EXPECT_FALSE(eval_filter(evt, "fd.num > 0"));
EXPECT_TRUE(eval_filter(evt, "fd.num < 0"));
EXPECT_FALSE(eval_filter(evt, "fd.num > 4294967295"));
EXPECT_FALSE(eval_filter(evt, "fd.num < -1"));
EXPECT_TRUE(eval_filter(evt, "fd.num > -65535"));

evt = add_event_advance_ts(increasing_ts(), 1, PPME_SYSCALL_OPEN_X, 6, (int64_t)30, "/tmp/the_file", PPM_O_NONE, 0666, 123, (uint64_t)456);

EXPECT_TRUE(eval_filter(evt, "fd.num >= 0"));
}
14 changes: 14 additions & 0 deletions userspace/libsinsp/test/sinsp_with_test_input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,20 @@ std::string sinsp_with_test_input::get_field_as_string(sinsp_evt* evt, std::stri
return result;
}

bool sinsp_with_test_input::eval_filter(sinsp_evt* evt, std::string filter_str)
{
auto factory = std::make_shared<sinsp_filter_factory>(&m_inspector, m_default_filterlist);
sinsp_filter_compiler compiler(factory, filter_str);

auto filter = compiler.compile();
if (!filter)
{
throw sinsp_exception(std::string("could not compile filter ") + filter_str);
}

return filter->run(evt);
}

sinsp_evt* sinsp_with_test_input::next_event()
{
sinsp_evt* evt;
Expand Down
3 changes: 3 additions & 0 deletions userspace/libsinsp/test/sinsp_with_test_input.h
Original file line number Diff line number Diff line change
Expand Up @@ -192,12 +192,15 @@ class sinsp_with_test_input : public ::testing::Test
void add_default_init_thread();
void add_simple_thread(int64_t tid, int64_t pid, int64_t ptid, const std::string& comm = "random");
uint64_t increasing_ts();

bool field_exists(sinsp_evt*, std::string_view field_name);
bool field_exists(sinsp_evt*, std::string_view field_name, filter_check_list&);
bool field_has_value(sinsp_evt*, std::string_view field_name);
bool field_has_value(sinsp_evt*, std::string_view field_name, filter_check_list&);
std::string get_field_as_string(sinsp_evt*, std::string_view field_name);
std::string get_field_as_string(sinsp_evt*, std::string_view field_name, filter_check_list&);
bool eval_filter(sinsp_evt* evt, std::string filter);

sinsp_evt* next_event();

scap_test_input_data m_test_data;
Expand Down

0 comments on commit df39a50

Please sign in to comment.