1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
/******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| C++ *
* | | / _ \ | |_ Actor *
* | |___ / ___ \| _| Framework *
* \____/_/ \_|_| *
* *
* Copyright 2011-2018 Dominik Charousset *
* *
* Distributed under the terms and conditions of the BSD 3-Clause License or *
* (at your option) under the terms and conditions of the Boost Software *
* License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE. *
* *
* If you did not receive a copy of the license files, see *
* http://opensource.org/licenses/BSD-3-Clause and *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#include "caf/config.hpp"
#define CAF_SUITE ipv4_subnet
#include "caf/test/dsl.hpp"
#include "caf/ipv4_subnet.hpp"
using namespace caf;
namespace {
const auto addr = make_ipv4_address;
ipv4_subnet operator/(ipv4_address addr, uint8_t prefix) {
return {addr, prefix};
}
} // namespace
CAF_TEST(constructing) {
ipv4_subnet zero{addr(0, 0, 0, 0), 32};
CAF_CHECK_EQUAL(zero.network_address(), addr(0, 0, 0, 0));
CAF_CHECK_EQUAL(zero.prefix_length(), 32u);
ipv4_subnet local{addr(127, 0, 0, 0), 8};
CAF_CHECK_EQUAL(local.network_address(), addr(127, 0, 0, 0));
CAF_CHECK_EQUAL(local.prefix_length(), 8u);
}
CAF_TEST(equality) {
auto a = addr(0xff, 0xff, 0xff, 0xff) / 19;
auto b = addr(0xff, 0xff, 0xff, 0xab) / 19;
auto net = addr(0xff, 0xff, 0xe0, 0x00);
CAF_CHECK_EQUAL(a.network_address(), net);
CAF_CHECK_EQUAL(a.network_address(), b.network_address());
CAF_CHECK_EQUAL(a.prefix_length(), b.prefix_length());
CAF_CHECK_EQUAL(a, b);
}
CAF_TEST(constains) {
ipv4_subnet local{addr(127, 0, 0, 0), 8};
CAF_CHECK(local.contains(addr(127, 0, 0, 1)));
CAF_CHECK(local.contains(addr(127, 1, 2, 3)));
CAF_CHECK(local.contains(addr(127, 128, 0, 0) / 9));
CAF_CHECK(local.contains(addr(127, 0, 0, 0) / 8));
CAF_CHECK(!local.contains(addr(127, 0, 0, 0) / 7));
}
CAF_TEST(ordering) {
CAF_CHECK_EQUAL(addr(192, 168, 168, 0) / 24, addr(192, 168, 168, 0) / 24);
CAF_CHECK_NOT_EQUAL(addr(192, 168, 168, 0) / 25, addr(192, 168, 168, 0) / 24);
CAF_CHECK_LESS(addr(192, 168, 167, 0) / 24, addr(192, 168, 168, 0) / 24);
CAF_CHECK_LESS(addr(192, 168, 168, 0) / 24, addr(192, 168, 168, 0) / 25);
}
|