created arg recursion_count to async_resolve and many other to avoid infinite loops
[pingcheck] / test / test_icmppacket.cpp
CommitLineData
1669ea26
CH
1/*
2 The software in this package is distributed under the GNU General
3 Public License version 2 (with a special exception described below).
4
5 A copy of GNU General Public License (GPL) is included in this distribution,
6 in the file COPYING.GPL.
7
8 As a special exception, if other files instantiate templates or use macros
9 or inline functions from this file, or you compile this file and link it
10 with other works to produce a work based on this file, this file
11 does not by itself cause the resulting work to be covered
12 by the GNU General Public License.
13
14 However the source code for this file must still be made available
15 in accordance with section (3) of the GNU General Public License.
16
17 This exception does not invalidate any other reasons why a work based
18 on this file might be covered by the GNU General Public License.
19
20 Christian Herdtweck, Intra2net AG 2015
21 */
22
23#define BOOST_TEST_MAIN
24#define BOOST_TEST_DYN_LINK
25
26#include <fstream>
394a0537 27#include <sstream>
1669ea26
CH
28#include <ios>
29#include <boost/test/unit_test.hpp>
30#include <boost/asio.hpp>
31
32#include "icmp/icmppacketfactory.h"
33#include "icmp/icmptype.h"
688d4b27 34#include "tools/pcap.h"
1669ea26
CH
35
36//------------------------------------------------------------------------------
37// helper function and consts
38//------------------------------------------------------------------------------
39
1669ea26
CH
40const int DUMP_MODE_NO_DUMP = 0;
41
688d4b27 42IcmpPacketItem read_packet(const std::string &file_name);
1669ea26 43
1669ea26
CH
44
45IcmpPacketItem read_packet(const std::string &file_name)
46{
688d4b27
CH
47 std::stringstream full_name;
48 full_name << DATA_DIR_STRING << "/" << file_name;
49 BOOST_TEST_MESSAGE( "Opening file " << full_name.str() );
50 std::ifstream file_stream(full_name.str().c_str(), std::ios::in |
1669ea26
CH
51 std::ios::binary);
52 // could open?
53 BOOST_REQUIRE( file_stream );
54
55 // recognized pcap file?
688d4b27 56 bool is_pcap = consume_single_packet_pcap(file_stream);
1669ea26
CH
57 if ( !is_pcap )
58 {
59 file_stream.close();
60 BOOST_FAIL( "Failed to recognize/consume pcap header!" );
61 }
62
63 IcmpPacketItem packet = IcmpPacketFactory::create_icmp_packet(
64 boost::asio::ip::icmp::v4(), file_stream, DUMP_MODE_NO_DUMP);
65 file_stream.close();
66
67 // managed to create packet from rest of file contents?
68 BOOST_REQUIRE( packet );
69 //BOOST_REQUIRE( packet->check_integrity() ); not implemented yet
70 return packet;
71}
72
73//------------------------------------------------------------------------------
74// TEST SUITE
75//------------------------------------------------------------------------------
76
77BOOST_AUTO_TEST_SUITE( TestIcmpPacket )
78
1669ea26
CH
79BOOST_AUTO_TEST_CASE( EchoRequest )
80{
394a0537
CH
81 std::string request_file = "icmp_echorequest.pcap";
82
83 // read request file
84 IcmpPacketItem packet = read_packet(request_file);
1669ea26
CH
85 BOOST_REQUIRE( packet );
86 BOOST_CHECK_EQUAL( packet->get_type_v4(), Icmpv4Type_EchoRequest );
87 BOOST_CHECK_EQUAL( packet->get_source_address().to_string(),
cd71d095 88 "11.22.33.44");
1669ea26
CH
89 BOOST_CHECK_EQUAL( packet->get_destination_address().to_string(),
90 "38.100.128.10");
91 BOOST_CHECK_EQUAL( packet->get_icmp_code(), 0 );
92 BOOST_CHECK_EQUAL( packet->get_icmp_size(), 20 );
93}
94
394a0537
CH
95
96BOOST_AUTO_TEST_CASE( EchoReply )
97{
98 std::string reply_file = "icmp_echoreply.pcap";
99
100 // read reply file
101 IcmpPacketItem packet = read_packet(reply_file);
102 BOOST_REQUIRE( packet );
103 BOOST_CHECK_EQUAL( packet->get_type_v4(), Icmpv4Type_EchoReply );
104 BOOST_CHECK_EQUAL( packet->get_source_address().to_string(),
105 "38.100.128.10");
106 BOOST_CHECK_EQUAL( packet->get_destination_address().to_string(),
cd71d095 107 "11.22.33.44");
394a0537
CH
108 BOOST_CHECK_EQUAL( packet->get_icmp_code(), 0 );
109 BOOST_CHECK_EQUAL( packet->get_icmp_size(), 20 );
110 BOOST_CHECK( packet->match_echo_reply(0xaf36, 1,
111 boost::asio::ip::address_v4::from_string("38.100.128.10")) );
112}
113
114BOOST_AUTO_TEST_CASE( TimeExceeded )
115{
116 std::string file_name = "icmp_timeexceeded.pcap";
117
118 // read file
119 IcmpPacketItem packet = read_packet(file_name);
120 BOOST_REQUIRE( packet );
121 BOOST_CHECK_EQUAL( packet->get_type_v4(), Icmpv4Type_TimeExceeded );
122 BOOST_CHECK_EQUAL( packet->get_source_address().to_string(),
123 "193.186.7.1");
124 BOOST_CHECK_EQUAL( packet->get_destination_address().to_string(),
cd71d095 125 "11.22.33.44");
394a0537
CH
126 BOOST_CHECK_EQUAL( packet->get_icmp_code(), 0 );
127 BOOST_CHECK_EQUAL( packet->get_icmp_size(), 48 );
128 BOOST_CHECK( packet->match_time_exceeded(0x4ae3, 1,
24fdf496 129 boost::asio::ip::address_v4::from_string("216.218.186.2")) );
394a0537
CH
130}
131
132BOOST_AUTO_TEST_CASE( DestinationUnreachable )
133{
134 std::string file_name = "icmp_destinationunreachable.pcap";
135
136 // read file
137 IcmpPacketItem packet = read_packet(file_name);
138 BOOST_REQUIRE( packet );
139 BOOST_CHECK_EQUAL( packet->get_type_v4(), Icmpv4Type_DestinationUnreachable );
140 BOOST_CHECK_EQUAL( packet->get_source_address().to_string(),
cd71d095 141 "11.22.33.254");
394a0537 142 BOOST_CHECK_EQUAL( packet->get_destination_address().to_string(),
cd71d095 143 "11.22.33.44");
394a0537
CH
144 BOOST_CHECK_EQUAL( packet->get_icmp_code(), 3 );
145 BOOST_CHECK_EQUAL( packet->get_icmp_size(), 92 );
146 BOOST_CHECK( packet->match_destination_unreachable(0x077b, 1,
147 boost::asio::ip::address_v4::from_string("85.214.66.2")) );
148}
149
1669ea26
CH
150BOOST_AUTO_TEST_SUITE_END()
151// (created using vim -- the world's best text editor)
152