Update pingcheck to work with cmake 3.28
[pingcheck] / test / test_icmpv4header.cpp
CommitLineData
ee48e2b2
GMF
1/*
2The software in this package is distributed under the GNU General
3Public License version 2 (with a special exception described below).
4
5A copy of GNU General Public License (GPL) is included in this distribution,
6in the file COPYING.GPL.
7
8As a special exception, if other files instantiate templates or use macros
9or inline functions from this file, or you compile this file and link it
10with other works to produce a work based on this file, this file
11does not by itself cause the resulting work to be covered
12by the GNU General Public License.
13
14However the source code for this file must still be made available
15in accordance with section (3) of the GNU General Public License.
16
17This exception does not invalidate any other reasons why a work based
18on this file might be covered by the GNU General Public License.
19*/
20
a72f06b6 21#define BOOST_TEST_MAIN
ee48e2b2
GMF
22#define BOOST_TEST_DYN_LINK
23
24#include <streambuf>
25
26#include <boost/test/unit_test.hpp>
27
28#include "icmp/icmptype.h"
447f9ac5
CH
29#include "icmp/icmpheader.h"
30#include "icmp/icmpechodata.h"
31#include "icmp/icmpdestinationunreachabledata.h"
ee48e2b2
GMF
32
33BOOST_AUTO_TEST_SUITE( TestIcmpv4Header )
34
35BOOST_AUTO_TEST_CASE( echo_reply )
36{
37 uint8_t raw_packet_stream[] = {
38 0x00, 0x00, 0x78, 0x7d, 0x09, 0x0f, 0x00, 0x01, 0xc7, 0x85, 0x0b, 0x4f,
39 0xb3, 0x9a, 0x0d, 0x00, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
40 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b,
41 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
42 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33,
43 0x34, 0x35, 0x36, 0x37
44 };
45
46 std::basic_stringbuf<uint8_t> sb;
47 sb.pubsetbuf( raw_packet_stream, sizeof(raw_packet_stream) );
48 std::basic_istream<uint8_t> is( &sb );
49
447f9ac5
CH
50 IcmpHeader icmp_header;
51 IcmpEchoData icmp_data(64 - 4);
52 reinterpret_cast<std::istream&>(is) >> icmp_header >> icmp_data;
ee48e2b2
GMF
53
54 BOOST_CHECK_EQUAL( icmp_header.get_type(), Icmpv4Type_EchoReply );
55 BOOST_CHECK_EQUAL( icmp_header.get_code(), 0 );
56 BOOST_CHECK_EQUAL( icmp_header.get_checksum(), 0x787D );
447f9ac5
CH
57 BOOST_CHECK_EQUAL( icmp_data.get_identifier(), 0x090F );
58 BOOST_CHECK_EQUAL( icmp_data.get_sequence_number(), 1 );
ee48e2b2
GMF
59}
60
61BOOST_AUTO_TEST_CASE( echo_request )
62{
63 uint8_t raw_packet_stream[] = {
64 0x08, 0x00, 0x28, 0xd1, 0x09, 0x21, 0x00, 0x02, 0xaa, 0x86, 0x0b, 0x4f,
65 0x22, 0x33, 0x03, 0x00, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
66 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x1b,
67 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
68 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, 0x30, 0x31, 0x32, 0x33,
69 0x34, 0x35, 0x36, 0x37
70 };
71
72 std::basic_stringbuf<uint8_t> sb;
73 sb.pubsetbuf( raw_packet_stream, sizeof(raw_packet_stream) );
74 std::basic_istream<uint8_t> is( &sb );
75
447f9ac5
CH
76 IcmpHeader icmp_header;
77 IcmpEchoData icmp_data(64 - 4);
78 reinterpret_cast<std::istream&>(is) >> icmp_header >> icmp_data;
ee48e2b2
GMF
79
80 BOOST_CHECK_EQUAL( icmp_header.get_type(), Icmpv4Type_EchoRequest );
81 BOOST_CHECK_EQUAL( icmp_header.get_code(), 0 );
82 BOOST_CHECK_EQUAL( icmp_header.get_checksum(), 0x28D1 );
447f9ac5
CH
83 BOOST_CHECK_EQUAL( icmp_data.get_identifier(), 0x0921 );
84 BOOST_CHECK_EQUAL( icmp_data.get_sequence_number(), 2 );
ee48e2b2
GMF
85}
86
87BOOST_AUTO_TEST_CASE( destination_unreachable )
88{
89 uint8_t raw_packet_stream[] = {
90 0x03, 0x01, 0xfc, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x54,
91 0x00, 0x00, 0x40, 0x00, 0x40, 0x01, 0xf9, 0x99, 0xc0, 0xa8, 0x01, 0x66,
92 0x7f, 0x00, 0x00, 0x01, 0x08, 0x00, 0x37, 0xd4, 0x0b, 0x6e, 0x00, 0x02,
93 0xef, 0x8b, 0x0b, 0x4f, 0xc5, 0xdd, 0x09, 0x00, 0x08, 0x09, 0x0a, 0x0b,
94 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
95 0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21, 0x22, 0x23,
96 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
97 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37
98 };
99
100 std::basic_stringbuf<uint8_t> sb;
101 sb.pubsetbuf( raw_packet_stream, sizeof(raw_packet_stream) );
102 std::basic_istream<uint8_t> is( &sb );
103
447f9ac5
CH
104 IcmpHeader icmp_header;
105 IcmpDestinationUnreachableData icmp_data(92-4);
106 reinterpret_cast<std::istream&>(is) >> icmp_header >> icmp_data;
ee48e2b2
GMF
107
108 BOOST_CHECK_EQUAL( icmp_header.get_type(), Icmpv4Type_DestinationUnreachable );
109 BOOST_CHECK_EQUAL( icmp_header.get_code(), 1 );
110 BOOST_CHECK_EQUAL( icmp_header.get_checksum(), 0xFCFE );
111}
112
113BOOST_AUTO_TEST_SUITE_END()