libcruft-util/test/ip.cpp
Danny Robson f6056153e3 rename root namespace from util to cruft
This places, at long last, the core library code into the same namespace
as the extended library code.
2018-08-05 14:42:02 +10:00

60 lines
1.3 KiB
C++

#include "ip.hpp"
#include "debug.hpp"
#include "platform.hpp"
#include "tap.hpp"
#include "types.hpp"
#include <cstdlib>
//-----------------------------------------------------------------------------
static void
test_good (cruft::TAP::logger &tap)
{
static const struct {
const char *str;
ipv4::ip ip;
const char *msg;
} TESTS[] = {
{ "0.0.0.0", { 0, 0, 0, 0 }, "null" },
{ "255.255.255.255", { 255, 255, 255, 255 }, "full" },
{ "127.0.0.1", { 127, 0, 0, 1 }, "localhost" }
};
for (const auto &i: TESTS)
tap.expect_eq (ipv4::ip::parse (i.str), i.ip, "%s", i.msg);
}
//-----------------------------------------------------------------------------
static void
test_bad (cruft::TAP::logger &tap)
{
static const struct {
const char *str;
const char *msg;
} TESTS[] = {
{ "::1", "ipv6" },
{ "foo", "alpha" },
{ "", "empty" },
{ "256.0.0.1", "overflow" }
};
for (const auto &i: TESTS)
tap.expect_throw<ipv4::error> ([&] { ipv4::ip::parse (i.str); }, "%s", i.msg);
}
//-----------------------------------------------------------------------------
int
main (int, char **) {
cruft::TAP::logger tap;
test_good (tap);
test_bad (tap);
return tap.status ();
}