Skip to content

Commit

Permalink
insert test cases for BPFProgTable
Browse files Browse the repository at this point in the history
Signed-off-by: Mauricio Vasquez B <[email protected]>
  • Loading branch information
mauriciovasquezbernal committed Feb 15, 2018
1 parent 2dd148a commit b2a2053
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/cc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ add_executable(test_libbcc
test_bpf_table.cc
test_hash_table.cc
test_perf_event.cc
test_prog_table.cc
test_usdt_args.cc
test_usdt_probes.cc
utils.cc)
Expand Down
65 changes: 65 additions & 0 deletions tests/cc/test_prog_table.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/*
* Copyright (c) 2018 Politecnico di Torino
*
* 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:https://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 "BPF.h"

#include "catch.hpp"

TEST_CASE("test prog table", "[prog_table]") {
const std::string BPF_PROGRAM = R"(
BPF_TABLE("prog", int, int, myprog, 16);
)";

const std::string BPF_PROGRAM2 = R"(
int hello(struct __sk_buff *skb) {
return 1;
}
)";

ebpf::StatusTuple res(0);

ebpf::BPF bpf;
res = bpf.init(BPF_PROGRAM);
REQUIRE(res.code() == 0);

ebpf::BPFProgTable t = bpf.get_prog_table("myprog");

ebpf::BPF bpf2;
res = bpf2.init(BPF_PROGRAM2);
REQUIRE(res.code() == 0);

int fd;
res = bpf2.load_func("hello", BPF_PROG_TYPE_SCHED_CLS, fd);
REQUIRE(res.code() == 0);

SECTION("update and remove") {
// update element
res = t.update_value(0, fd);
REQUIRE(res.code() == 0);

// remove element
res = t.remove_value(0);
REQUIRE(res.code() == 0);

// update out of range element
res = t.update_value(17, fd);
REQUIRE(res.code() != 0);

// remove out of range element
res = t.remove_value(17);
REQUIRE(res.code() != 0);
}
}

0 comments on commit b2a2053

Please sign in to comment.