1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/test/test_libabyss.cpp

212 lines
4.1 KiB
C++
Raw Normal View History

2018-11-02 18:08:01 +01:00
#include <libabyss.hpp>
2019-01-16 00:45:13 +01:00
#include <crypto/crypto.hpp>
#include <crypto/crypto_libsodium.hpp>
2019-01-11 02:59:44 +01:00
#include <ev/ev.h>
#include <net/net.hpp>
#include <util/threading.hpp>
2018-11-02 18:08:01 +01:00
2019-01-16 00:45:13 +01:00
#include <gtest/gtest.h>
2018-11-02 18:08:01 +01:00
struct AbyssTestBase : public ::testing::Test
{
llarp::sodium::CryptoLibSodium crypto;
llarp_threadpool* threadpool = nullptr;
llarp_ev_loop* loop = nullptr;
std::unique_ptr< llarp::Logic > logic;
2018-11-02 18:08:01 +01:00
abyss::httpd::BaseReqHandler* server = nullptr;
abyss::http::JSONRPC* client = nullptr;
const std::string method = "test.method";
bool called = false;
2018-11-02 18:08:01 +01:00
AbyssTestBase()
2018-12-20 18:14:21 +01:00
{
}
2018-11-02 18:08:01 +01:00
void
AssertMethod(const std::string& meth) const
{
2019-02-08 23:44:21 +01:00
ASSERT_EQ(meth, method);
2018-11-02 18:08:01 +01:00
}
2018-11-02 18:49:01 +01:00
void
SetUp()
{
llarp::SetLogLevel(llarp::eLogDebug);
// for llarp::randint
2018-11-02 18:49:01 +01:00
}
2018-11-02 18:56:48 +01:00
static void
CancelIt(void* u, __attribute__((unused)) uint64_t orig, uint64_t left)
2018-11-02 18:56:48 +01:00
{
if(left)
return;
static_cast< AbyssTestBase* >(u)->Stop();
2018-11-02 18:56:48 +01:00
}
static void
StopIt(void* u)
{
static_cast< AbyssTestBase* >(u)->Stop();
}
2018-11-02 18:08:01 +01:00
void
Start()
{
threadpool = llarp_init_same_process_threadpool();
llarp_ev_loop_alloc(&loop);
logic.reset(new llarp::Logic(threadpool));
2018-11-02 18:08:01 +01:00
sockaddr_in addr;
addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
addr.sin_port = htons((llarp::randint() % 2000) + 2000);
2018-11-02 18:08:01 +01:00
addr.sin_family = AF_INET;
llarp::Addr a(addr);
while(true)
{
if(server->ServeAsync(loop, logic.get(), a))
2018-11-02 18:08:01 +01:00
{
client->RunAsync(loop, a.ToString());
2018-12-10 15:14:55 +01:00
logic->call_later({1000, this, &CancelIt});
2018-11-02 18:08:01 +01:00
return;
}
std::this_thread::sleep_for(std::chrono::seconds(1));
}
}
void
Stop()
{
llarp::LogDebug("test case Stop() called");
2018-11-02 18:08:01 +01:00
if(server)
server->Close();
llarp_ev_loop_stop(loop);
}
void
AsyncStop()
{
logic->queue_job({this, &StopIt});
2018-11-02 18:08:01 +01:00
}
void
TearDown()
{
logic.reset();
llarp_ev_loop_free(&loop);
llarp_free_threadpool(&threadpool);
llarp::SetLogLevel(llarp::eLogInfo);
2018-11-02 18:08:01 +01:00
}
};
struct ClientHandler : public abyss::http::IRPCClientHandler
{
AbyssTestBase* test;
ClientHandler(abyss::http::ConnImpl* impl, AbyssTestBase* parent)
: abyss::http::IRPCClientHandler(impl), test(parent)
{
}
void
HandleError()
{
ASSERT_TRUE(false);
}
void
PopulateReqHeaders(__attribute__((unused)) abyss::http::Headers_t& hdr)
2018-11-02 18:08:01 +01:00
{
}
bool
2018-11-21 18:46:33 +01:00
HandleResponse(__attribute__((unused)) abyss::http::RPC_Response response)
2018-11-02 18:08:01 +01:00
{
test->AsyncStop();
2018-11-02 18:08:01 +01:00
return true;
}
};
struct ServerHandler : public abyss::httpd::IRPCHandler
{
AbyssTestBase* test;
ServerHandler(abyss::httpd::ConnImpl* impl, AbyssTestBase* parent)
2018-11-02 18:08:01 +01:00
: abyss::httpd::IRPCHandler(impl), test(parent)
{
}
bool
HandleJSONRPC(Method_t method, __attribute__((unused)) const Params& params,
2019-02-08 23:44:21 +01:00
Response& response)
2018-11-02 18:08:01 +01:00
{
test->AssertMethod(method);
test->called = true;
2019-02-08 23:44:21 +01:00
response.StartObject();
response.EndObject();
2018-11-02 18:08:01 +01:00
return true;
}
};
struct AbyssTest : public AbyssTestBase,
public abyss::http::JSONRPC,
public abyss::httpd::BaseReqHandler
{
AbyssTest()
: AbyssTestBase()
, abyss::http::JSONRPC()
, abyss::httpd::BaseReqHandler(1000)
{
}
abyss::http::IRPCClientHandler*
NewConn(abyss::http::ConnImpl* impl)
{
return new ClientHandler(impl, this);
}
abyss::httpd::IRPCHandler*
CreateHandler(abyss::httpd::ConnImpl* impl)
2018-11-02 18:08:01 +01:00
{
return new ServerHandler(impl, this);
}
void
SetUp()
{
2018-11-02 18:49:01 +01:00
AbyssTestBase::SetUp();
2018-11-02 18:08:01 +01:00
client = this;
server = this;
}
static void
FlushIt(void* u)
{
static_cast< AbyssTest* >(u)->Flush();
}
void
AsyncFlush()
{
2018-12-10 15:14:55 +01:00
logic->queue_job({this, &FlushIt});
2018-11-02 18:08:01 +01:00
}
void
RunLoop()
{
llarp_ev_loop_run_single_process(loop, threadpool, logic.get());
2018-11-02 18:08:01 +01:00
}
};
TEST_F(AbyssTest, TestClientAndServer)
{
Start();
2019-02-16 00:04:04 +01:00
llarp::json::Value params;
2018-11-02 18:08:01 +01:00
params.SetObject();
QueueRPC(method, std::move(params),
std::bind(&AbyssTest::NewConn, this, std::placeholders::_1));
2018-11-02 18:08:01 +01:00
AsyncFlush();
RunLoop();
ASSERT_TRUE(called);
};