diff --git a/test/exit/test_llarp_exit_context.cpp b/test/exit/test_llarp_exit_context.cpp deleted file mode 100644 index a90646572..000000000 --- a/test/exit/test_llarp_exit_context.cpp +++ /dev/null @@ -1,61 +0,0 @@ -#include -#include -#include -#include -#include -#include - -static const llarp::RuntimeOptions opts = {.background = false, .debug = false, .isSNode = true}; - -std::shared_ptr -make_context() -{ - auto conf = std::make_shared(fs::current_path()); - conf->Load(std::nullopt, true); - - // set testing defaults - conf->network.m_endpointType = "null"; - conf->bootstrap.seednode = true; - conf->api.m_enableRPCServer = false; - conf->lokid.whitelistRouters = false; - conf->router.m_publicAddress = llarp::IpAddress("1.1.1.1"); - // make a fake inbound link - conf->links.m_InboundLinks.emplace_back(); - auto& link = conf->links.m_InboundLinks.back(); - link.interface = "0.0.0.0"; - link.addressFamily = AF_INET; - link.port = 0; - // configure - - auto context = std::make_shared(); - REQUIRE_NOTHROW(context->Configure(std::move(conf))); - - return context; -} - -TEST_CASE("ensure snode address allocation", "[snode]") -{ - llarp::LogSilencer shutup; - auto ctx = make_context(); - REQUIRE_NOTHROW(ctx->Setup(opts)); - ctx->CallSafe([ctx]() { - REQUIRE(ctx->router->IsServiceNode()); - auto& context = ctx->router->exitContext(); - llarp::PubKey pk; - pk.Randomize(); - - llarp::PathID_t firstPath, secondPath; - firstPath.Randomize(); - secondPath.Randomize(); - - REQUIRE(context.ObtainNewExit(pk, firstPath, false)); - REQUIRE(context.ObtainNewExit(pk, secondPath, false)); - REQUIRE( - context.FindEndpointForPath(firstPath)->LocalIP() - == context.FindEndpointForPath(secondPath)->LocalIP()); - ctx->CloseAsync(); - }); - REQUIRE(ctx->Run(opts) == 0); - - ctx.reset(); -}