Skip to content

Commit

Permalink
Add counter tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kcudnik committed Aug 23, 2021
1 parent 7c61b13 commit b56c601
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions unittest/vslib/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ testslibsaivs_SOURCES = main_libsaivs.cpp \
test_sai_vs_bmtor.cpp \
test_sai_vs_bridge.cpp \
test_sai_vs_buffer.cpp \
test_sai_vs_counter.cpp \
test_sai_vs_hash.cpp \
test_sai_vs_vlan.cpp \
test_sai_vs_hostif.cpp \
Expand Down
27 changes: 27 additions & 0 deletions unittest/vslib/test_sai_vs_counter.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#include <gtest/gtest.h>

extern "C" {
#include "sai.h"
}

#include "swss/logger.h"

TEST(libsaivs, counter)
{
sai_counter_api_t *api = nullptr;

sai_api_query(SAI_API_COUNTER, (void**)&api);

EXPECT_NE(api, nullptr);

sai_object_id_t id;

EXPECT_NE(SAI_STATUS_SUCCESS, api->create_counter(&id,0,0,0));
EXPECT_NE(SAI_STATUS_SUCCESS, api->remove_counter(0));
EXPECT_NE(SAI_STATUS_SUCCESS, api->set_counter_attribute(0,0));
EXPECT_NE(SAI_STATUS_SUCCESS, api->get_counter_attribute(0,0,0));

EXPECT_NE(SAI_STATUS_SUCCESS, api->get_counter_stats(0,0,0,0));
EXPECT_NE(SAI_STATUS_SUCCESS, api->get_counter_stats_ext(0,0,0,SAI_STATS_MODE_READ,0));
EXPECT_NE(SAI_STATUS_SUCCESS, api->clear_counter_stats(0,0,0));
}

0 comments on commit b56c601

Please sign in to comment.