You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/test/exit/test_llarp_exit_context.cpp

45 lines
1.1 KiB
C++

#include <exit/context.hpp>
#include <config/config.hpp>
#include <router/router.hpp>
#include <exit/context.hpp>
#include "config/config.hpp"
#include <gtest/gtest.h>
struct ExitTest : public ::testing::Test
{
ExitTest() : r(nullptr, nullptr), context(&r)
{
r.Configure(nullptr, false, nullptr);
}
llarp::Router r;
llarp::exit::Context context;
};
TEST_F(ExitTest, AddMultipleIP)
{
llarp::PubKey pk;
pk.Randomize();
llarp::PathID_t firstPath, secondPath;
firstPath.Randomize();
secondPath.Randomize();
// TODO: exit and type
// llarp::exit::Context::Config_t conf;
// conf.emplace("exit", "true");
// conf.emplace("type", "null");
llarp::NetworkConfig networkConfig;
networkConfig.m_endpointType = "null";
networkConfig.m_ifname = "lokitunX";
networkConfig.m_ifaddr = "10.0.0.1/24";
ASSERT_NO_THROW(context.AddExitEndpoint("test-exit", networkConfig, {}));
ASSERT_TRUE(context.ObtainNewExit(pk, firstPath, false));
ASSERT_TRUE(context.ObtainNewExit(pk, secondPath, false));
ASSERT_TRUE(
context.FindEndpointForPath(firstPath)->LocalIP()
== context.FindEndpointForPath(secondPath)->LocalIP());
}