Skip to content

Commit

Permalink
Move grpc client test (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-shchetinin authored Aug 8, 2024
1 parent 20f092c commit 3082e68
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/unit/client/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,13 @@ add_ydb_test(NAME client-draft_ut
LABELS
unit
)

add_ydb_test(NAME grpc-client-low_ut
SOURCES
grpc_client_low_ut.cpp
LINK_LIBRARIES
cpp-testing-unittest_main
grpc-client
LABELS
unit
)
61 changes: 61 additions & 0 deletions tests/unit/client/grpc_client_low_ut.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#include <ydb-cpp-sdk/library/grpc/client/grpc_client_low.h>

#include <library/cpp/testing/unittest/registar.h>

using namespace NYdbGrpc;

class TTestStub {
public:
std::shared_ptr<grpc::ChannelInterface> ChannelInterface;
TTestStub(std::shared_ptr<grpc::ChannelInterface> channelInterface)
: ChannelInterface(channelInterface)
{}
};

Y_UNIT_TEST_SUITE(ChannelPoolTests) {
Y_UNIT_TEST(UnusedStubsHoldersDeletion) {
TGRpcClientConfig clientConfig("invalid_host:invalid_port");
TTcpKeepAliveSettings tcpKeepAliveSettings =
{
true,
30, // NYdb::TCP_KEEPALIVE_IDLE, unused in UT, but is necessary in constructor
5, // NYdb::TCP_KEEPALIVE_COUNT, unused in UT, but is necessary in constructor
10 // NYdb::TCP_KEEPALIVE_INTERVAL, unused in UT, but is necessary in constructor
};
auto channelPool = TChannelPool(tcpKeepAliveSettings, TDuration::MilliSeconds(250));
std::vector<std::weak_ptr<grpc::ChannelInterface>> ChannelInterfacesWeak;

{
std::vector<std::shared_ptr<TTestStub>> stubsHoldersShared;
auto storeStubsHolders = [&](TStubsHolder& stubsHolder) {
stubsHoldersShared.emplace_back(stubsHolder.GetOrCreateStub<TTestStub>());
ChannelInterfacesWeak.emplace_back((*stubsHoldersShared.rbegin())->ChannelInterface);
return;
};
for (int i = 0; i < 10; ++i) {
channelPool.GetStubsHolderLocked(
ToString(i),
clientConfig,
storeStubsHolders
);
}
}

auto now = Now();
while (Now() < now + TDuration::MilliSeconds(500)){
Sleep(TDuration::MilliSeconds(100));
}

channelPool.DeleteExpiredStubsHolders();

bool allDeleted = true;
for (auto i = ChannelInterfacesWeak.begin(); i != ChannelInterfacesWeak.end(); ++i) {
allDeleted = allDeleted && i->expired();
}

// assertion is made for channel interfaces instead of stubs, because after stub deletion
// TStubsHolder has the only shared_ptr for channel interface.
UNIT_ASSERT_C(allDeleted, "expired stubsHolders were not deleted after timeout");

}
} // ChannelPoolTests ut suite

0 comments on commit 3082e68

Please sign in to comment.