blob: cd56f12b6d1724128fc09bc964f22189c7704349 [file] [log] [blame]
Vince Lehman277ecf02016-02-10 16:37:48 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento60f8cc12018-05-10 22:05:21 -04002/*
Davide Pesavento7b9837b2019-02-23 19:07:50 -05003 * Copyright (c) 2014-2019, University of Memphis,
Davide Pesaventof9126532018-08-04 18:31:06 -04004 * University Pierre & Marie Curie, Sorbonne University.
Vince Lehman277ecf02016-02-10 16:37:48 -06005 *
6 * This file is part of ndn-tools (Named Data Networking Essential Tools).
7 * See AUTHORS.md for complete list of ndn-tools authors and contributors.
8 *
9 * ndn-tools is free software: you can redistribute it and/or modify it under the terms
10 * of the GNU General Public License as published by the Free Software Foundation,
11 * either version 3 of the License, or (at your option) any later version.
12 *
13 * ndn-tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
14 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * ndn-tools, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include "tools/dump/ndndump.hpp"
22
Davide Pesavento60f8cc12018-05-10 22:05:21 -040023#include "tests/identity-management-fixture.hpp"
24#include "tests/test-common.hpp"
25
Davide Pesaventof9126532018-08-04 18:31:06 -040026#include <net/ethernet.h>
27#include <netinet/ip.h>
28#include <netinet/ip6.h>
29#include <netinet/tcp.h>
30#include <netinet/udp.h>
31
32#include <boost/endian/conversion.hpp>
33
34#include <ndn-cxx/encoding/encoding-buffer.hpp>
Vince Lehman277ecf02016-02-10 16:37:48 -060035#include <ndn-cxx/lp/packet.hpp>
Junxiao Shic9575a62017-07-01 06:16:02 +000036#include <ndn-cxx/net/ethernet.hpp>
Junxiao Shi20b22972017-05-24 21:04:16 +000037
Vince Lehman277ecf02016-02-10 16:37:48 -060038namespace ndn {
39namespace dump {
40namespace tests {
41
Davide Pesaventof9126532018-08-04 18:31:06 -040042namespace endian = boost::endian;
Vince Lehman277ecf02016-02-10 16:37:48 -060043using namespace ndn::tests;
44
45class StdCoutRedirector
46{
47public:
48 StdCoutRedirector(std::ostream& os)
49 {
50 // Redirect std::cout to the specified output stream
51 originalBuffer = std::cout.rdbuf(os.rdbuf());
52 }
53
54 ~StdCoutRedirector()
55 {
56 // Revert state for std::cout
57 std::cout.rdbuf(originalBuffer);
58 }
59
60private:
61 std::streambuf* originalBuffer;
62};
63
Junxiao Shi20b22972017-05-24 21:04:16 +000064class NdnDumpFixture : public IdentityManagementFixture
Vince Lehman277ecf02016-02-10 16:37:48 -060065{
66protected:
67 NdnDumpFixture()
68 {
69 dump.m_dataLinkType = DLT_EN10MB;
70 }
71
Junxiao Shi20b22972017-05-24 21:04:16 +000072 template<typename Packet>
Vince Lehman277ecf02016-02-10 16:37:48 -060073 void
74 receive(const Packet& packet)
75 {
Junxiao Shi20b22972017-05-24 21:04:16 +000076 EncodingBuffer buffer(packet.wireEncode());
Davide Pesaventof9126532018-08-04 18:31:06 -040077 receiveEthernet(buffer);
Vince Lehman277ecf02016-02-10 16:37:48 -060078 }
79
80 void
Davide Pesaventof9126532018-08-04 18:31:06 -040081 receiveEthernet(EncodingBuffer& buffer, uint16_t ethertype = s_ethertypeNdn)
Vince Lehman277ecf02016-02-10 16:37:48 -060082 {
Junxiao Shic9575a62017-07-01 06:16:02 +000083 ethernet::Address host;
Vince Lehman277ecf02016-02-10 16:37:48 -060084
85 // Ethernet header
Davide Pesaventof9126532018-08-04 18:31:06 -040086 buffer.prependByteArray(reinterpret_cast<const uint8_t*>(&ethertype), ethernet::TYPE_LEN);
Vince Lehman277ecf02016-02-10 16:37:48 -060087 buffer.prependByteArray(host.data(), host.size());
88 buffer.prependByteArray(host.data(), host.size());
89
Davide Pesaventof9126532018-08-04 18:31:06 -040090 // pcap header
Davide Pesaventoecd44802018-07-23 23:48:10 -040091 pcap_pkthdr pkthdr{};
92 pkthdr.caplen = pkthdr.len = buffer.size();
Vince Lehman277ecf02016-02-10 16:37:48 -060093
94 {
95 StdCoutRedirector redirect(output);
Davide Pesaventoecd44802018-07-23 23:48:10 -040096 dump.printPacket(&pkthdr, buffer.buf());
Vince Lehman277ecf02016-02-10 16:37:48 -060097 }
98 }
99
Davide Pesaventof9126532018-08-04 18:31:06 -0400100 void
101 receiveIp4(EncodingBuffer& buffer, const ip* ipHeader)
102 {
103 buffer.prependByteArray(reinterpret_cast<const uint8_t*>(ipHeader), sizeof(ip));
104 receiveEthernet(buffer, s_ethertypeIp4);
105 }
106
107 void
108 receiveIp6(EncodingBuffer& buffer, const ip6_hdr* ip6Header)
109 {
110 buffer.prependByteArray(reinterpret_cast<const uint8_t*>(ip6Header), sizeof(ip6_hdr));
111 receiveEthernet(buffer, s_ethertypeIp6);
112 }
113
114 void
115 receiveTcp4(EncodingBuffer& buffer, const tcphdr* tcpHeader)
116 {
117 buffer.prependByteArray(reinterpret_cast<const uint8_t*>(tcpHeader), sizeof(tcphdr));
118
119 ip ipHeader{};
120 ipHeader.ip_v = 4;
121 ipHeader.ip_hl = 5;
122 ipHeader.ip_len = endian::native_to_big(static_cast<uint16_t>(buffer.size() + sizeof(ipHeader)));
123 ipHeader.ip_ttl = 1;
124 ipHeader.ip_p = IPPROTO_TCP;
125
126 receiveIp4(buffer, &ipHeader);
127 }
128
129 void
130 receiveUdp4(EncodingBuffer& buffer, const udphdr* udpHeader)
131 {
132 buffer.prependByteArray(reinterpret_cast<const uint8_t*>(udpHeader), sizeof(udphdr));
133
134 ip ipHeader{};
135 ipHeader.ip_v = 4;
136 ipHeader.ip_hl = 5;
137 ipHeader.ip_len = endian::native_to_big(static_cast<uint16_t>(buffer.size() + sizeof(ipHeader)));
138 ipHeader.ip_ttl = 1;
139 ipHeader.ip_p = IPPROTO_UDP;
140
141 receiveIp4(buffer, &ipHeader);
142 }
143
144 void
145 readFile(const std::string& filename)
146 {
147 StdCoutRedirector redirect(output);
148 dump.inputFile = filename;
149 dump.run();
150 }
151
Vince Lehman277ecf02016-02-10 16:37:48 -0600152protected:
Davide Pesaventoecd44802018-07-23 23:48:10 -0400153 NdnDump dump;
Vince Lehman277ecf02016-02-10 16:37:48 -0600154 boost::test_tools::output_test_stream output;
Davide Pesaventof9126532018-08-04 18:31:06 -0400155
156 static const uint16_t s_ethertypeNdn;
157 static const uint16_t s_ethertypeIp4;
158 static const uint16_t s_ethertypeIp6;
Vince Lehman277ecf02016-02-10 16:37:48 -0600159};
160
Davide Pesaventof9126532018-08-04 18:31:06 -0400161const uint16_t NdnDumpFixture::s_ethertypeNdn = endian::native_to_big(ethernet::ETHERTYPE_NDN);
162const uint16_t NdnDumpFixture::s_ethertypeIp4 = endian::native_to_big(uint16_t(ETHERTYPE_IP));
163const uint16_t NdnDumpFixture::s_ethertypeIp6 = endian::native_to_big(uint16_t(ETHERTYPE_IPV6));
164
Davide Pesaventoecd44802018-07-23 23:48:10 -0400165BOOST_AUTO_TEST_SUITE(Dump)
166BOOST_FIXTURE_TEST_SUITE(TestNdnDump, NdnDumpFixture)
Vince Lehman277ecf02016-02-10 16:37:48 -0600167
Davide Pesaventof9126532018-08-04 18:31:06 -0400168BOOST_AUTO_TEST_CASE(Interest)
Vince Lehman277ecf02016-02-10 16:37:48 -0600169{
Davide Pesavento327fb4b2019-10-14 19:01:27 -0400170 auto interest = makeInterest("/test", false, DEFAULT_INTEREST_LIFETIME, 1);
171 this->receive(*interest);
172 BOOST_CHECK(output.is_equal("0.000000 Ethernet, INTEREST: /test?Nonce=1\n"));
173 this->receive(interest->setCanBePrefix(true));
174 BOOST_CHECK(output.is_equal("0.000000 Ethernet, INTEREST: /test?CanBePrefix&Nonce=1\n"));
175 this->receive(interest->setInterestLifetime(50_ms));
176 BOOST_CHECK(output.is_equal("0.000000 Ethernet, INTEREST: /test?CanBePrefix&Nonce=1&Lifetime=50\n"));
Vince Lehman277ecf02016-02-10 16:37:48 -0600177}
178
Davide Pesaventof9126532018-08-04 18:31:06 -0400179BOOST_AUTO_TEST_CASE(Data)
Vince Lehman277ecf02016-02-10 16:37:48 -0600180{
Davide Pesavento327fb4b2019-10-14 19:01:27 -0400181 auto data = makeData("/test");
182 this->receive(*data);
183 BOOST_CHECK(output.is_equal("0.000000 Ethernet, DATA: /test\n"));
184 this->receive(data->setContentType(tlv::ContentType_Key));
185 BOOST_CHECK(output.is_equal("0.000000 Ethernet, DATA: /test\n"));
186 this->receive(data->setFreshnessPeriod(42_h));
Davide Pesaventof9126532018-08-04 18:31:06 -0400187 BOOST_CHECK(output.is_equal("0.000000 Ethernet, DATA: /test\n"));
Vince Lehman277ecf02016-02-10 16:37:48 -0600188}
189
Davide Pesaventof9126532018-08-04 18:31:06 -0400190BOOST_AUTO_TEST_CASE(Nack)
Vince Lehman277ecf02016-02-10 16:37:48 -0600191{
Davide Pesavento327fb4b2019-10-14 19:01:27 -0400192 auto interest = makeInterest("/test", false, DEFAULT_INTEREST_LIFETIME, 1);
Junxiao Shi20d5a0b2018-08-14 09:26:11 -0600193 auto nack = makeNack(*interest, lp::NackReason::DUPLICATE);
194 lp::Packet lpPacket(interest->wireEncode());
Vince Lehman277ecf02016-02-10 16:37:48 -0600195 lpPacket.add<lp::NackField>(nack.getHeader());
196
197 this->receive(lpPacket);
Davide Pesavento327fb4b2019-10-14 19:01:27 -0400198 BOOST_CHECK(output.is_equal("0.000000 Ethernet, NDNLPv2, NACK (Duplicate): /test?Nonce=1\n"));
Vince Lehman277ecf02016-02-10 16:37:48 -0600199}
200
Davide Pesaventof9126532018-08-04 18:31:06 -0400201BOOST_AUTO_TEST_CASE(LpFragment)
Vince Lehman277ecf02016-02-10 16:37:48 -0600202{
203 const uint8_t data[10] = {
204 0x06, 0x08, // Data packet
205 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
206 };
207
Junxiao Shi20b22972017-05-24 21:04:16 +0000208 Buffer buffer(data, 4);
Vince Lehman277ecf02016-02-10 16:37:48 -0600209 lp::Packet lpPacket;
210 lpPacket.add<lp::FragmentField>(std::make_pair(buffer.begin(), buffer.end()));
211 lpPacket.add<lp::FragIndexField>(0);
212 lpPacket.add<lp::FragCountField>(2);
213 lpPacket.add<lp::SequenceField>(1000);
214
215 this->receive(lpPacket);
Davide Pesaventof9126532018-08-04 18:31:06 -0400216 BOOST_CHECK(output.is_equal("0.000000 Ethernet, NDNLPv2 fragment\n"));
Vince Lehman277ecf02016-02-10 16:37:48 -0600217}
218
Davide Pesaventof9126532018-08-04 18:31:06 -0400219BOOST_AUTO_TEST_CASE(LpIdle)
Vince Lehman277ecf02016-02-10 16:37:48 -0600220{
221 lp::Packet lpPacket;
Vince Lehman277ecf02016-02-10 16:37:48 -0600222 this->receive(lpPacket);
Davide Pesaventof9126532018-08-04 18:31:06 -0400223 BOOST_CHECK(output.is_equal("0.000000 Ethernet, NDNLPv2 idle\n"));
Vince Lehman277ecf02016-02-10 16:37:48 -0600224}
225
Davide Pesaventof9126532018-08-04 18:31:06 -0400226BOOST_AUTO_TEST_CASE(IncompleteNdnPacket)
Vince Lehman277ecf02016-02-10 16:37:48 -0600227{
228 const uint8_t interest[] = {
229 0x05, 0x0E, // Interest
230 0x07, 0x06, // Name
231 0x08, 0x04, // NameComponent
232 0x74, 0x65, 0x73, 0x74,
233 0x0a, 0x04, // Nonce
234 0x00, 0x00, 0x00, 0x01
235 };
Vince Lehman277ecf02016-02-10 16:37:48 -0600236 EncodingBuffer buffer;
237 buffer.prependByteArray(interest, 4);
238
Davide Pesaventof9126532018-08-04 18:31:06 -0400239 this->receiveEthernet(buffer);
Davide Pesaventof9126532018-08-04 18:31:06 -0400240 BOOST_CHECK(output.is_equal("0.000000 Ethernet, NDN truncated packet, length 4\n"));
Vince Lehman277ecf02016-02-10 16:37:48 -0600241}
242
Davide Pesaventof9126532018-08-04 18:31:06 -0400243BOOST_AUTO_TEST_CASE(UnsupportedNdnPacket)
Vince Lehman277ecf02016-02-10 16:37:48 -0600244{
Junxiao Shi20b22972017-05-24 21:04:16 +0000245 EncodingBuffer buffer(encoding::makeEmptyBlock(tlv::Name));
Davide Pesaventof9126532018-08-04 18:31:06 -0400246 this->receiveEthernet(buffer);
Davide Pesaventof9126532018-08-04 18:31:06 -0400247 BOOST_CHECK(output.is_equal("0.000000 Ethernet, [Unsupported NDN packet type 7]\n"));
248}
249
250BOOST_AUTO_TEST_CASE(UnsupportedEtherType)
251{
252 EncodingBuffer pkt;
253 uint16_t type = ETHERTYPE_ARP;
254 endian::native_to_big_inplace(type);
255
256 this->receiveEthernet(pkt, type);
Davide Pesaventof9126532018-08-04 18:31:06 -0400257 BOOST_CHECK(output.is_equal("0.000000 [Unsupported ethertype 0x806]\n"));
258}
259
260BOOST_AUTO_TEST_CASE(MalformedIpv4Header)
261{
262 dump.wantTimestamp = false;
263
264 uint8_t theAnswer = 42;
265
266 EncodingBuffer pkt1;
267 pkt1.prependByte(theAnswer);
268 this->receiveEthernet(pkt1, s_ethertypeIp4);
269 BOOST_CHECK(output.is_equal("IP truncated header, length 1\n"));
270
271 ip ipHdr2{};
272 ipHdr2.ip_v = 7;
273
274 EncodingBuffer pkt2;
275 this->receiveIp4(pkt2, &ipHdr2);
276 BOOST_CHECK(output.is_equal("IP bad version 7\n"));
277
278 ip ipHdr3{};
279 ipHdr3.ip_v = 4;
280 ipHdr3.ip_hl = 2;
281
282 EncodingBuffer pkt3;
283 this->receiveIp4(pkt3, &ipHdr3);
284 BOOST_CHECK(output.is_equal("IP bad header length 8\n"));
285
286 ip ipHdr4{};
287 ipHdr4.ip_v = 4;
288 ipHdr4.ip_hl = 5;
289 ipHdr4.ip_len = 10;
290 endian::native_to_big_inplace(ipHdr4.ip_len);
291
292 EncodingBuffer pkt4;
293 this->receiveIp4(pkt4, &ipHdr4);
294 BOOST_CHECK(output.is_equal("IP bad length 10\n"));
295
296 ip ipHdr5{};
297 ipHdr5.ip_v = 4;
298 ipHdr5.ip_hl = 5;
299 ipHdr5.ip_len = 1000;
300 endian::native_to_big_inplace(ipHdr5.ip_len);
301
302 EncodingBuffer pkt5;
303 this->receiveIp4(pkt5, &ipHdr5);
304 BOOST_CHECK(output.is_equal("IP truncated packet, 980 bytes missing\n"));
305}
306
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400307BOOST_AUTO_TEST_CASE(MalformedIpv6Header)
308{
309 dump.wantTimestamp = false;
310
311 uint8_t theAnswer = 42;
312
313 EncodingBuffer pkt1;
314 pkt1.prependByte(theAnswer);
315 this->receiveEthernet(pkt1, s_ethertypeIp6);
316 BOOST_CHECK(output.is_equal("IP6 truncated header, length 1\n"));
317
318 ip6_hdr ip6Hdr2{};
319 ip6Hdr2.ip6_vfc = 10 << 4;
320
321 EncodingBuffer pkt2;
322 this->receiveIp6(pkt2, &ip6Hdr2);
323 BOOST_CHECK(output.is_equal("IP6 bad version 10\n"));
324
325 ip6_hdr ip6Hdr3{};
326 ip6Hdr3.ip6_vfc = 6 << 4;
327 ip6Hdr3.ip6_plen = 1400;
328 endian::native_to_big_inplace(ip6Hdr3.ip6_plen);
329
330 EncodingBuffer pkt3;
331 this->receiveIp6(pkt3, &ip6Hdr3);
332 BOOST_CHECK(output.is_equal("IP6 truncated payload, 1400 bytes missing\n"));
333}
334
Davide Pesaventof9126532018-08-04 18:31:06 -0400335BOOST_AUTO_TEST_CASE(UnsupportedIpProto)
336{
337 dump.wantTimestamp = false;
338
339 ip ipHdr{};
340 ipHdr.ip_v = 4;
341 ipHdr.ip_hl = 5;
342 ipHdr.ip_len = sizeof(ipHdr);
343 endian::native_to_big_inplace(ipHdr.ip_len);
344 ipHdr.ip_p = IPPROTO_SCTP;
345
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400346 EncodingBuffer pkt1;
347 this->receiveIp4(pkt1, &ipHdr);
Davide Pesaventof9126532018-08-04 18:31:06 -0400348 BOOST_CHECK(output.is_equal("IP 0.0.0.0 > 0.0.0.0, [Unsupported IP proto 132]\n"));
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400349
350 ip6_hdr ip6Hdr{};
351 ip6Hdr.ip6_vfc = 6 << 4;
352 ip6Hdr.ip6_nxt = IPPROTO_NONE;
353
354 EncodingBuffer pkt2;
355 this->receiveIp6(pkt2, &ip6Hdr);
356 BOOST_CHECK(output.is_equal("IP6 :: > ::, [No next header]\n"));
Davide Pesaventof9126532018-08-04 18:31:06 -0400357}
358
359BOOST_AUTO_TEST_CASE(MalformedTcpHeader)
360{
361 dump.wantTimestamp = false;
362
363 tcphdr tcpHdr1{};
Davide Pesavento7b9837b2019-02-23 19:07:50 -0500364 tcpHdr1.TH_OFF = 0x2;
Davide Pesaventof9126532018-08-04 18:31:06 -0400365
366 EncodingBuffer pkt1;
367 this->receiveTcp4(pkt1, &tcpHdr1);
368 BOOST_CHECK(output.is_equal("IP 0.0.0.0 > 0.0.0.0, TCP bad header length 8\n"));
369
370 tcphdr tcpHdr2{};
Davide Pesavento7b9837b2019-02-23 19:07:50 -0500371 tcpHdr2.TH_OFF = 0xf;
Davide Pesaventof9126532018-08-04 18:31:06 -0400372
373 EncodingBuffer pkt2;
374 this->receiveTcp4(pkt2, &tcpHdr2);
375 BOOST_CHECK(output.is_equal("IP 0.0.0.0 > 0.0.0.0, TCP truncated header, 40 bytes missing\n"));
376}
377
378BOOST_AUTO_TEST_CASE(MalformedUdpHeader)
379{
380 dump.wantTimestamp = false;
381
382 udphdr udpHdr1{};
Davide Pesavento7b9837b2019-02-23 19:07:50 -0500383 udpHdr1.UH_LEN = 3;
384 endian::native_to_big_inplace(udpHdr1.UH_LEN);
Davide Pesaventof9126532018-08-04 18:31:06 -0400385
386 EncodingBuffer pkt1;
387 this->receiveUdp4(pkt1, &udpHdr1);
388 BOOST_CHECK(output.is_equal("IP 0.0.0.0 > 0.0.0.0, UDP bad length 3\n"));
389
390 udphdr udpHdr2{};
Davide Pesavento7b9837b2019-02-23 19:07:50 -0500391 udpHdr2.UH_LEN = 1000;
392 endian::native_to_big_inplace(udpHdr2.UH_LEN);
Davide Pesaventof9126532018-08-04 18:31:06 -0400393
394 EncodingBuffer pkt2;
395 this->receiveUdp4(pkt2, &udpHdr2);
396 BOOST_CHECK(output.is_equal("IP 0.0.0.0 > 0.0.0.0, UDP truncated packet, 992 bytes missing\n"));
397}
398
399BOOST_AUTO_TEST_CASE(InvalidTlvLength)
400{
401 dump.wantTimestamp = false;
402 this->readFile("tests/dump/invalid-tlv-length.pcap");
403
404 const std::string expected =
405 "IP 128.196.203.36 > 128.187.81.12, TCP, length 147, NDNLPv2 invalid packet: "
406 "TLV-LENGTH of sub-element of type 5 exceeds TLV-VALUE boundary of parent block\n";
407 BOOST_CHECK(output.is_equal(expected));
408}
409
410BOOST_AUTO_TEST_CASE(UnrecognizedLpField)
411{
412 dump.wantTimestamp = false;
413 this->readFile("tests/dump/unrecognized-lp-field.pcap");
414
Davide Pesavento327fb4b2019-10-14 19:01:27 -0400415 const std::string expected =
416 "IP 128.196.203.36 > 128.187.81.12, TCP, length 800, "
417 "NDNLPv2 invalid packet: unrecognized field 4 cannot be ignored\n";
Davide Pesaventoecd44802018-07-23 23:48:10 -0400418 BOOST_CHECK(output.is_equal(expected));
Vince Lehman277ecf02016-02-10 16:37:48 -0600419}
420
Davide Pesaventob5b8f952018-07-26 14:19:16 -0400421BOOST_AUTO_TEST_CASE(NoTimestamp)
422{
423 dump.wantTimestamp = false;
424
425 lp::Packet lpPacket;
426 this->receive(lpPacket);
427
Davide Pesaventof9126532018-08-04 18:31:06 -0400428 BOOST_CHECK(output.is_equal("Ethernet, NDNLPv2 idle\n"));
Davide Pesaventob5b8f952018-07-26 14:19:16 -0400429}
430
Davide Pesaventof9126532018-08-04 18:31:06 -0400431BOOST_AUTO_TEST_CASE(FromFile)
Vince Lehman277ecf02016-02-10 16:37:48 -0600432{
Davide Pesaventoecd44802018-07-23 23:48:10 -0400433 dump.pcapFilter = "";
Davide Pesaventof9126532018-08-04 18:31:06 -0400434 this->readFile("tests/dump/nack.pcap");
Vince Lehman277ecf02016-02-10 16:37:48 -0600435
Davide Pesaventoecd44802018-07-23 23:48:10 -0400436 const std::string expected =
Davide Pesavento327fb4b2019-10-14 19:01:27 -0400437 "1571091605.129263 IP 127.0.0.1 > 127.0.0.1, TCP, length 36, "
438 "INTEREST: /producer/nack/no-route?Nonce=3301604226\n"
439 "1571091605.129702 IP 127.0.0.1 > 127.0.0.1, TCP, length 49, "
440 "NDNLPv2, NACK (NoRoute): /producer/nack/no-route?Nonce=3301604226\n";
Davide Pesaventoecd44802018-07-23 23:48:10 -0400441 BOOST_CHECK(output.is_equal(expected));
Vince Lehman277ecf02016-02-10 16:37:48 -0600442}
443
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400444BOOST_AUTO_TEST_CASE(LinuxSllTcp4)
445{
446 dump.wantTimestamp = false;
447 this->readFile("tests/dump/linux-sll-tcp4.pcap");
448
449 const std::string expected =
Davide Pesavento327fb4b2019-10-14 19:01:27 -0400450 "IP 162.211.64.84 > 131.179.196.46, TCP, length 41, INTEREST: /ndn/edu/arizona/ping/8202?Nonce=1059849935\n"
451 "IP 131.179.196.46 > 162.211.64.84, TCP, length 403, DATA: /ndn/edu/arizona/ping/8202\n";
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400452 BOOST_CHECK(output.is_equal(expected));
453}
454
455BOOST_AUTO_TEST_CASE(LinuxSllUdp4)
456{
457 dump.wantTimestamp = false;
458 this->readFile("tests/dump/linux-sll-udp4.pcap");
459
460 const std::string expected =
Davide Pesavento327fb4b2019-10-14 19:01:27 -0400461 "IP 162.211.64.84 > 131.179.196.46, UDP, length 42, INTEREST: /ndn/edu/arizona/ping/31044?Nonce=3171630323\n"
462 "IP 131.179.196.46 > 162.211.64.84, UDP, length 404, DATA: /ndn/edu/arizona/ping/31044\n";
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400463 BOOST_CHECK(output.is_equal(expected));
464}
465
466BOOST_AUTO_TEST_CASE(LinuxSllTcp6)
467{
468 dump.wantTimestamp = false;
469 this->readFile("tests/dump/linux-sll-tcp6.pcap");
470
471 const std::string expected =
472 "IP6 2602:fff6:d:b317::39f8 > 2001:660:3302:282c:160::163, TCP, length 42, "
Davide Pesavento327fb4b2019-10-14 19:01:27 -0400473 "INTEREST: /ndn/edu/arizona/ping/19573?Nonce=777756283\n"
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400474 "IP6 2001:660:3302:282c:160::163 > 2602:fff6:d:b317::39f8, TCP, length 404, "
475 "DATA: /ndn/edu/arizona/ping/19573\n"
476 "IP6 2001:660:3302:282c:160::163 > 2602:fff6:d:b317::39f8, TCP, length 56, "
Davide Pesavento327fb4b2019-10-14 19:01:27 -0400477 "invalid network packet: Unrecognized element of critical type 9\n";
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400478 BOOST_CHECK(output.is_equal(expected));
479}
480
481BOOST_AUTO_TEST_CASE(LinuxSllUdp6)
482{
483 dump.wantTimestamp = false;
484 this->readFile("tests/dump/linux-sll-udp6.pcap");
485
486 const std::string expected =
487 "IP6 2602:fff6:d:b317::39f8 > 2001:660:3302:282c:160::163, UDP, length 39, "
Davide Pesavento327fb4b2019-10-14 19:01:27 -0400488 "INTEREST: /ndn/edu/arizona/ping/18?Nonce=571618686\n"
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400489 "IP6 2001:660:3302:282c:160::163 > 2602:fff6:d:b317::39f8, UDP, length 401, "
490 "DATA: /ndn/edu/arizona/ping/18\n"
491 "IP6 2001:660:3302:282c:160::163 > 2602:fff6:d:b317::39f8, UDP, length 56, "
Davide Pesavento327fb4b2019-10-14 19:01:27 -0400492 "invalid network packet: Unrecognized element of critical type 9\n";
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400493 BOOST_CHECK(output.is_equal(expected));
494}
495
Davide Pesaventoecd44802018-07-23 23:48:10 -0400496BOOST_AUTO_TEST_SUITE_END() // TestNdnDump
497BOOST_AUTO_TEST_SUITE_END() // Dump
Vince Lehman277ecf02016-02-10 16:37:48 -0600498
499} // namespace tests
500} // namespace dump
501} // namespace ndn