memgraph/tests/unit/network_endpoint.cpp
Josip Seljan a0fb3fc463 Implement ReplicationQueryHandler class (#52)
* Refactor io::network::Endpoint class
* Add ParseSocketOrIpAddress static method to Endpoint class
* Implement ReplQueryHandler methods
* Add implementation of SetReplicationRole to ReplQueryHandler
* Fix PrepareReplicationQuery (create PullPlanVector)

Co-authored-by: jseljan <josip.seljan@memgraph.io>
2021-01-21 15:56:21 +01:00

40 lines
944 B
C++

#include <iostream>
#include "gtest/gtest.h"
#include "io/network/endpoint.hpp"
#include "io/network/network_error.hpp"
using endpoint_t = io::network::Endpoint;
TEST(Endpoint, IPv4) {
endpoint_t endpoint;
// test constructor
endpoint = endpoint_t("127.0.0.1", 12347);
EXPECT_EQ(endpoint.address, "127.0.0.1");
EXPECT_EQ(endpoint.port, 12347);
EXPECT_EQ(endpoint.family, endpoint_t::IpFamily::IP4);
// test address invalid
EXPECT_DEATH(endpoint_t("invalid", 12345), "address");
}
TEST(Endpoint, IPv6) {
endpoint_t endpoint;
// test constructor
endpoint = endpoint_t("ab:cd:ef::3", 12347);
EXPECT_EQ(endpoint.address, "ab:cd:ef::3");
EXPECT_EQ(endpoint.port, 12347);
EXPECT_EQ(endpoint.family, endpoint_t::IpFamily::IP6);
// test address invalid
EXPECT_DEATH(endpoint_t("::g", 12345), "address");
}
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}