test_inet_address.cpp
5.56 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// test_inet_address.cpp
//
// Unit tests for the `inet_address` class.
//
// --------------------------------------------------------------------------
// This file is part of the "sockpp" C++ socket library.
//
// Copyright (c) 2018 Frank Pagliughi
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// --------------------------------------------------------------------------
//
#include "sockpp/inet_address.h"
#include "catch2/catch.hpp"
#include <string>
using namespace sockpp;
const uint32_t ANY_ADDR { INADDR_ANY }; // Any iface 0x00000000
const uint32_t LOCALHOST_ADDR { INADDR_LOOPBACK }; // Localhost 0x7F000001
const std::string LOCALHOST_STR { "localhost" };
const in_port_t PORT { 12345 };
TEST_CASE("inet_address default constructor", "[address]") {
inet_address addr;
REQUIRE(!addr.is_set());
REQUIRE(0 == addr.address());
REQUIRE(0 == addr.port());
REQUIRE(sizeof(sockaddr_in) == addr.size());
SECTION("creating address from int32") {
addr.create(LOCALHOST_ADDR, PORT);
REQUIRE(addr.is_set());
REQUIRE(LOCALHOST_ADDR == addr.address());
REQUIRE(PORT == addr.port());
REQUIRE(uint8_t((LOCALHOST_ADDR >> 0) &0xFF) == addr[0]);
REQUIRE(uint8_t((LOCALHOST_ADDR >> 8) &0xFF) == addr[1]);
REQUIRE(uint8_t((LOCALHOST_ADDR >> 16) &0xFF) == addr[2]);
REQUIRE(uint8_t((LOCALHOST_ADDR >> 24) &0xFF) == addr[3]);
// Check the low-level struct
REQUIRE(AF_INET == addr.sockaddr_in_ptr()->sin_family);
REQUIRE(LOCALHOST_ADDR == ntohl(addr.sockaddr_in_ptr()->sin_addr.s_addr));
REQUIRE(PORT == ntohs(addr.sockaddr_in_ptr()->sin_port));
}
SECTION("creating address from name") {
addr.create(LOCALHOST_STR, PORT);
REQUIRE(addr.is_set());
REQUIRE(LOCALHOST_ADDR == addr.address());
REQUIRE(PORT == addr.port());
// Check the low-level struct
REQUIRE(AF_INET == addr.sockaddr_in_ptr()->sin_family);
REQUIRE(LOCALHOST_ADDR == ntohl(addr.sockaddr_in_ptr()->sin_addr.s_addr));
REQUIRE(PORT == ntohs(addr.sockaddr_in_ptr()->sin_port));
}
}
// When created using only a port number this should use the
// "any" address to bind to all interfaces (typ for server)
TEST_CASE("inet_address port-only constructor", "[address]") {
inet_address addr(PORT);
REQUIRE(addr.is_set());
REQUIRE(ANY_ADDR == addr.address());
REQUIRE(PORT == addr.port());
// Check the low-level struct
REQUIRE(AF_INET == addr.sockaddr_in_ptr()->sin_family);
}
TEST_CASE("inet_address int32_t constructor", "[address]") {
inet_address addr(LOCALHOST_ADDR, PORT);
REQUIRE(addr.is_set());
REQUIRE(LOCALHOST_ADDR == addr.address());
REQUIRE(PORT == addr.port());
REQUIRE(uint8_t((LOCALHOST_ADDR >> 0) &0xFF) == addr[0]);
REQUIRE(uint8_t((LOCALHOST_ADDR >> 8) &0xFF) == addr[1]);
REQUIRE(uint8_t((LOCALHOST_ADDR >> 16) &0xFF) == addr[2]);
REQUIRE(uint8_t((LOCALHOST_ADDR >> 24) &0xFF) == addr[3]);
// Check the low-level struct
REQUIRE(AF_INET == addr.sockaddr_in_ptr()->sin_family);
REQUIRE(LOCALHOST_ADDR == ntohl(addr.sockaddr_in_ptr()->sin_addr.s_addr));
REQUIRE(PORT == ntohs(addr.sockaddr_in_ptr()->sin_port));
}
TEST_CASE("inet_address name constructor", "[address]") {
inet_address addr(LOCALHOST_STR, PORT);
REQUIRE(addr.is_set());
REQUIRE(LOCALHOST_ADDR == addr.address());
REQUIRE(PORT == addr.port());
REQUIRE(uint8_t((LOCALHOST_ADDR >> 0) &0xFF) == addr[0]);
REQUIRE(uint8_t((LOCALHOST_ADDR >> 8) &0xFF) == addr[1]);
REQUIRE(uint8_t((LOCALHOST_ADDR >> 16) &0xFF) == addr[2]);
REQUIRE(uint8_t((LOCALHOST_ADDR >> 24) &0xFF) == addr[3]);
// Check the low-level struct
REQUIRE(AF_INET == addr.sockaddr_in_ptr()->sin_family);
REQUIRE(LOCALHOST_ADDR == ntohl(addr.sockaddr_in_ptr()->sin_addr.s_addr));
REQUIRE(PORT == ntohs(addr.sockaddr_in_ptr()->sin_port));
}
TEST_CASE("IPv4 resolve_address", "[address]") {
REQUIRE(inet_address::resolve_name("127.0.0.1") == htonl(LOCALHOST_ADDR));
REQUIRE(inet_address::resolve_name(LOCALHOST_STR) == htonl(LOCALHOST_ADDR));
}