blob: 771de00ed99e04b5f841c081d5f1b2d2acf5e1d6 [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 Pesaventof9126532018-08-04 18:31:06 -04003 * Copyright (c) 2014-2018, University of Memphis,
4 * 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 Pesaventof9126532018-08-04 18:31:06 -0400170 ndn::Interest interest("/test");
Vince Lehman277ecf02016-02-10 16:37:48 -0600171 interest.setNonce(0);
172
173 this->receive(interest);
174
Davide Pesaventof9126532018-08-04 18:31:06 -0400175 BOOST_CHECK(output.is_equal("0.000000 Ethernet, INTEREST: /test?ndn.Nonce=0\n"));
Vince Lehman277ecf02016-02-10 16:37:48 -0600176}
177
Davide Pesaventof9126532018-08-04 18:31:06 -0400178BOOST_AUTO_TEST_CASE(Data)
Vince Lehman277ecf02016-02-10 16:37:48 -0600179{
Davide Pesaventof9126532018-08-04 18:31:06 -0400180 ndn::Data data("/test");
Junxiao Shi20b22972017-05-24 21:04:16 +0000181 m_keyChain.sign(data);
Vince Lehman277ecf02016-02-10 16:37:48 -0600182
183 this->receive(data);
184
Davide Pesaventof9126532018-08-04 18:31:06 -0400185 BOOST_CHECK(output.is_equal("0.000000 Ethernet, DATA: /test\n"));
Vince Lehman277ecf02016-02-10 16:37:48 -0600186}
187
Davide Pesaventof9126532018-08-04 18:31:06 -0400188BOOST_AUTO_TEST_CASE(Nack)
Vince Lehman277ecf02016-02-10 16:37:48 -0600189{
Davide Pesaventof9126532018-08-04 18:31:06 -0400190 ndn::Interest interest("/test");
Vince Lehman277ecf02016-02-10 16:37:48 -0600191 interest.setNonce(0);
Junxiao Shi20b22972017-05-24 21:04:16 +0000192 lp::Nack nack(interest);
193 nack.setReason(lp::NackReason::DUPLICATE);
Vince Lehman277ecf02016-02-10 16:37:48 -0600194 lp::Packet lpPacket(interest.wireEncode());
195 lpPacket.add<lp::NackField>(nack.getHeader());
196
197 this->receive(lpPacket);
198
Davide Pesaventof9126532018-08-04 18:31:06 -0400199 BOOST_CHECK(output.is_equal("0.000000 Ethernet, NDNLPv2, NACK (Duplicate): /test?ndn.Nonce=0\n"));
Vince Lehman277ecf02016-02-10 16:37:48 -0600200}
201
Davide Pesaventof9126532018-08-04 18:31:06 -0400202BOOST_AUTO_TEST_CASE(LpFragment)
Vince Lehman277ecf02016-02-10 16:37:48 -0600203{
204 const uint8_t data[10] = {
205 0x06, 0x08, // Data packet
206 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
207 };
208
Junxiao Shi20b22972017-05-24 21:04:16 +0000209 Buffer buffer(data, 4);
Vince Lehman277ecf02016-02-10 16:37:48 -0600210 lp::Packet lpPacket;
211 lpPacket.add<lp::FragmentField>(std::make_pair(buffer.begin(), buffer.end()));
212 lpPacket.add<lp::FragIndexField>(0);
213 lpPacket.add<lp::FragCountField>(2);
214 lpPacket.add<lp::SequenceField>(1000);
215
216 this->receive(lpPacket);
217
Davide Pesaventof9126532018-08-04 18:31:06 -0400218 BOOST_CHECK(output.is_equal("0.000000 Ethernet, NDNLPv2 fragment\n"));
Vince Lehman277ecf02016-02-10 16:37:48 -0600219}
220
Davide Pesaventof9126532018-08-04 18:31:06 -0400221BOOST_AUTO_TEST_CASE(LpIdle)
Vince Lehman277ecf02016-02-10 16:37:48 -0600222{
223 lp::Packet lpPacket;
224
225 this->receive(lpPacket);
226
Davide Pesaventof9126532018-08-04 18:31:06 -0400227 BOOST_CHECK(output.is_equal("0.000000 Ethernet, NDNLPv2 idle\n"));
Vince Lehman277ecf02016-02-10 16:37:48 -0600228}
229
Davide Pesaventof9126532018-08-04 18:31:06 -0400230BOOST_AUTO_TEST_CASE(IncompleteNdnPacket)
Vince Lehman277ecf02016-02-10 16:37:48 -0600231{
232 const uint8_t interest[] = {
233 0x05, 0x0E, // Interest
234 0x07, 0x06, // Name
235 0x08, 0x04, // NameComponent
236 0x74, 0x65, 0x73, 0x74,
237 0x0a, 0x04, // Nonce
238 0x00, 0x00, 0x00, 0x01
239 };
240
241 EncodingBuffer buffer;
242 buffer.prependByteArray(interest, 4);
243
Davide Pesaventof9126532018-08-04 18:31:06 -0400244 this->receiveEthernet(buffer);
Vince Lehman277ecf02016-02-10 16:37:48 -0600245
Davide Pesaventof9126532018-08-04 18:31:06 -0400246 BOOST_CHECK(output.is_equal("0.000000 Ethernet, NDN truncated packet, length 4\n"));
Vince Lehman277ecf02016-02-10 16:37:48 -0600247}
248
Davide Pesaventof9126532018-08-04 18:31:06 -0400249BOOST_AUTO_TEST_CASE(UnsupportedNdnPacket)
Vince Lehman277ecf02016-02-10 16:37:48 -0600250{
Junxiao Shi20b22972017-05-24 21:04:16 +0000251 EncodingBuffer buffer(encoding::makeEmptyBlock(tlv::Name));
Vince Lehman277ecf02016-02-10 16:37:48 -0600252
Davide Pesaventof9126532018-08-04 18:31:06 -0400253 this->receiveEthernet(buffer);
Vince Lehman277ecf02016-02-10 16:37:48 -0600254
Davide Pesaventof9126532018-08-04 18:31:06 -0400255 BOOST_CHECK(output.is_equal("0.000000 Ethernet, [Unsupported NDN packet type 7]\n"));
256}
257
258BOOST_AUTO_TEST_CASE(UnsupportedEtherType)
259{
260 EncodingBuffer pkt;
261 uint16_t type = ETHERTYPE_ARP;
262 endian::native_to_big_inplace(type);
263
264 this->receiveEthernet(pkt, type);
265
266 BOOST_CHECK(output.is_equal("0.000000 [Unsupported ethertype 0x806]\n"));
267}
268
269BOOST_AUTO_TEST_CASE(MalformedIpv4Header)
270{
271 dump.wantTimestamp = false;
272
273 uint8_t theAnswer = 42;
274
275 EncodingBuffer pkt1;
276 pkt1.prependByte(theAnswer);
277 this->receiveEthernet(pkt1, s_ethertypeIp4);
278 BOOST_CHECK(output.is_equal("IP truncated header, length 1\n"));
279
280 ip ipHdr2{};
281 ipHdr2.ip_v = 7;
282
283 EncodingBuffer pkt2;
284 this->receiveIp4(pkt2, &ipHdr2);
285 BOOST_CHECK(output.is_equal("IP bad version 7\n"));
286
287 ip ipHdr3{};
288 ipHdr3.ip_v = 4;
289 ipHdr3.ip_hl = 2;
290
291 EncodingBuffer pkt3;
292 this->receiveIp4(pkt3, &ipHdr3);
293 BOOST_CHECK(output.is_equal("IP bad header length 8\n"));
294
295 ip ipHdr4{};
296 ipHdr4.ip_v = 4;
297 ipHdr4.ip_hl = 5;
298 ipHdr4.ip_len = 10;
299 endian::native_to_big_inplace(ipHdr4.ip_len);
300
301 EncodingBuffer pkt4;
302 this->receiveIp4(pkt4, &ipHdr4);
303 BOOST_CHECK(output.is_equal("IP bad length 10\n"));
304
305 ip ipHdr5{};
306 ipHdr5.ip_v = 4;
307 ipHdr5.ip_hl = 5;
308 ipHdr5.ip_len = 1000;
309 endian::native_to_big_inplace(ipHdr5.ip_len);
310
311 EncodingBuffer pkt5;
312 this->receiveIp4(pkt5, &ipHdr5);
313 BOOST_CHECK(output.is_equal("IP truncated packet, 980 bytes missing\n"));
314}
315
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400316BOOST_AUTO_TEST_CASE(MalformedIpv6Header)
317{
318 dump.wantTimestamp = false;
319
320 uint8_t theAnswer = 42;
321
322 EncodingBuffer pkt1;
323 pkt1.prependByte(theAnswer);
324 this->receiveEthernet(pkt1, s_ethertypeIp6);
325 BOOST_CHECK(output.is_equal("IP6 truncated header, length 1\n"));
326
327 ip6_hdr ip6Hdr2{};
328 ip6Hdr2.ip6_vfc = 10 << 4;
329
330 EncodingBuffer pkt2;
331 this->receiveIp6(pkt2, &ip6Hdr2);
332 BOOST_CHECK(output.is_equal("IP6 bad version 10\n"));
333
334 ip6_hdr ip6Hdr3{};
335 ip6Hdr3.ip6_vfc = 6 << 4;
336 ip6Hdr3.ip6_plen = 1400;
337 endian::native_to_big_inplace(ip6Hdr3.ip6_plen);
338
339 EncodingBuffer pkt3;
340 this->receiveIp6(pkt3, &ip6Hdr3);
341 BOOST_CHECK(output.is_equal("IP6 truncated payload, 1400 bytes missing\n"));
342}
343
Davide Pesaventof9126532018-08-04 18:31:06 -0400344BOOST_AUTO_TEST_CASE(UnsupportedIpProto)
345{
346 dump.wantTimestamp = false;
347
348 ip ipHdr{};
349 ipHdr.ip_v = 4;
350 ipHdr.ip_hl = 5;
351 ipHdr.ip_len = sizeof(ipHdr);
352 endian::native_to_big_inplace(ipHdr.ip_len);
353 ipHdr.ip_p = IPPROTO_SCTP;
354
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400355 EncodingBuffer pkt1;
356 this->receiveIp4(pkt1, &ipHdr);
Davide Pesaventof9126532018-08-04 18:31:06 -0400357 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 -0400358
359 ip6_hdr ip6Hdr{};
360 ip6Hdr.ip6_vfc = 6 << 4;
361 ip6Hdr.ip6_nxt = IPPROTO_NONE;
362
363 EncodingBuffer pkt2;
364 this->receiveIp6(pkt2, &ip6Hdr);
365 BOOST_CHECK(output.is_equal("IP6 :: > ::, [No next header]\n"));
Davide Pesaventof9126532018-08-04 18:31:06 -0400366}
367
368BOOST_AUTO_TEST_CASE(MalformedTcpHeader)
369{
370 dump.wantTimestamp = false;
371
372 tcphdr tcpHdr1{};
373 tcpHdr1.th_off = 0x2;
374
375 EncodingBuffer pkt1;
376 this->receiveTcp4(pkt1, &tcpHdr1);
377 BOOST_CHECK(output.is_equal("IP 0.0.0.0 > 0.0.0.0, TCP bad header length 8\n"));
378
379 tcphdr tcpHdr2{};
380 tcpHdr2.th_off = 0xf;
381
382 EncodingBuffer pkt2;
383 this->receiveTcp4(pkt2, &tcpHdr2);
384 BOOST_CHECK(output.is_equal("IP 0.0.0.0 > 0.0.0.0, TCP truncated header, 40 bytes missing\n"));
385}
386
387BOOST_AUTO_TEST_CASE(MalformedUdpHeader)
388{
389 dump.wantTimestamp = false;
390
391 udphdr udpHdr1{};
392 udpHdr1.uh_ulen = 3;
393 endian::native_to_big_inplace(udpHdr1.uh_ulen);
394
395 EncodingBuffer pkt1;
396 this->receiveUdp4(pkt1, &udpHdr1);
397 BOOST_CHECK(output.is_equal("IP 0.0.0.0 > 0.0.0.0, UDP bad length 3\n"));
398
399 udphdr udpHdr2{};
400 udpHdr2.uh_ulen = 1000;
401 endian::native_to_big_inplace(udpHdr2.uh_ulen);
402
403 EncodingBuffer pkt2;
404 this->receiveUdp4(pkt2, &udpHdr2);
405 BOOST_CHECK(output.is_equal("IP 0.0.0.0 > 0.0.0.0, UDP truncated packet, 992 bytes missing\n"));
406}
407
408BOOST_AUTO_TEST_CASE(InvalidTlvLength)
409{
410 dump.wantTimestamp = false;
411 this->readFile("tests/dump/invalid-tlv-length.pcap");
412
413 const std::string expected =
414 "IP 128.196.203.36 > 128.187.81.12, TCP, length 147, NDNLPv2 invalid packet: "
415 "TLV-LENGTH of sub-element of type 5 exceeds TLV-VALUE boundary of parent block\n";
416 BOOST_CHECK(output.is_equal(expected));
417}
418
419BOOST_AUTO_TEST_CASE(UnrecognizedLpField)
420{
421 dump.wantTimestamp = false;
422 this->readFile("tests/dump/unrecognized-lp-field.pcap");
423
424 const std::string expected = "IP 128.196.203.36 > 128.187.81.12, TCP, length 800, "
425 "NDNLPv2 invalid packet: unrecognized field 4 cannot be ignored\n";
Davide Pesaventoecd44802018-07-23 23:48:10 -0400426 BOOST_CHECK(output.is_equal(expected));
Vince Lehman277ecf02016-02-10 16:37:48 -0600427}
428
Davide Pesaventob5b8f952018-07-26 14:19:16 -0400429BOOST_AUTO_TEST_CASE(NoTimestamp)
430{
431 dump.wantTimestamp = false;
432
433 lp::Packet lpPacket;
434 this->receive(lpPacket);
435
Davide Pesaventof9126532018-08-04 18:31:06 -0400436 BOOST_CHECK(output.is_equal("Ethernet, NDNLPv2 idle\n"));
Davide Pesaventob5b8f952018-07-26 14:19:16 -0400437}
438
Davide Pesaventof9126532018-08-04 18:31:06 -0400439BOOST_AUTO_TEST_CASE(FromFile)
Vince Lehman277ecf02016-02-10 16:37:48 -0600440{
Davide Pesaventoecd44802018-07-23 23:48:10 -0400441 dump.pcapFilter = "";
Davide Pesaventof9126532018-08-04 18:31:06 -0400442 this->readFile("tests/dump/nack.pcap");
Vince Lehman277ecf02016-02-10 16:37:48 -0600443
Davide Pesaventoecd44802018-07-23 23:48:10 -0400444 const std::string expected =
Davide Pesaventof9126532018-08-04 18:31:06 -0400445 "1456768916.467099 IP 1.0.0.1 > 1.0.0.2, UDP, length 42, "
Davide Pesaventod1b1bf62018-07-26 18:05:08 -0400446 "INTEREST: /producer/nack/congestion?ndn.MustBeFresh=1&ndn.Nonce=2581361680\n"
Davide Pesaventof9126532018-08-04 18:31:06 -0400447 "1456768916.567099 IP 1.0.0.1 > 1.0.0.2, UDP, length 41, "
Davide Pesaventod1b1bf62018-07-26 18:05:08 -0400448 "INTEREST: /producer/nack/duplicate?ndn.MustBeFresh=1&ndn.Nonce=4138343109\n"
Davide Pesaventof9126532018-08-04 18:31:06 -0400449 "1456768916.667099 IP 1.0.0.1 > 1.0.0.2, UDP, length 41, "
Davide Pesaventod1b1bf62018-07-26 18:05:08 -0400450 "INTEREST: /producer/nack/no-reason?ndn.MustBeFresh=1&ndn.Nonce=4034910304\n"
Davide Pesaventof9126532018-08-04 18:31:06 -0400451 "1456768916.767099 IP 1.0.0.2 > 1.0.0.1, UDP, length 55, "
452 "NDNLPv2, NACK (Congestion): /producer/nack/congestion?ndn.MustBeFresh=1&ndn.Nonce=2581361680\n"
453 "1456768916.867099 IP 1.0.0.2 > 1.0.0.1, UDP, length 54, "
454 "NDNLPv2, NACK (Duplicate): /producer/nack/duplicate?ndn.MustBeFresh=1&ndn.Nonce=4138343109\n"
455 "1456768916.967099 IP 1.0.0.2 > 1.0.0.1, UDP, length 54, "
456 "NDNLPv2, NACK (None): /producer/nack/no-reason?ndn.MustBeFresh=1&ndn.Nonce=4034910304\n"
457 "1456768917.067099 IP 1.0.0.1 > 1.0.0.2, TCP, length 42, "
Davide Pesaventod1b1bf62018-07-26 18:05:08 -0400458 "INTEREST: /producer/nack/congestion?ndn.MustBeFresh=1&ndn.Nonce=3192497423\n"
Davide Pesaventof9126532018-08-04 18:31:06 -0400459 "1456768917.267099 IP 1.0.0.2 > 1.0.0.1, TCP, length 55, "
460 "NDNLPv2, NACK (Congestion): /producer/nack/congestion?ndn.MustBeFresh=1&ndn.Nonce=3192497423\n"
461 "1456768917.367099 IP 1.0.0.1 > 1.0.0.2, TCP, length 82, "
Davide Pesaventod1b1bf62018-07-26 18:05:08 -0400462 "INTEREST: /producer/nack/duplicate?ndn.MustBeFresh=1&ndn.Nonce=522390724\n"
Davide Pesaventof9126532018-08-04 18:31:06 -0400463 "1456768917.567099 IP 1.0.0.2 > 1.0.0.1, TCP, length 54, "
464 "NDNLPv2, NACK (Duplicate): /producer/nack/duplicate?ndn.MustBeFresh=1&ndn.Nonce=522390724\n"
465 "1456768917.767099 IP 1.0.0.2 > 1.0.0.1, TCP, length 54, "
466 "NDNLPv2, NACK (None): /producer/nack/no-reason?ndn.MustBeFresh=1&ndn.Nonce=2002441365\n"
467 "1456768917.967099 IP 1.0.0.1 > 1.0.0.2, TCP, length 41, "
Davide Pesaventod1b1bf62018-07-26 18:05:08 -0400468 "INTEREST: /producer/nack/no-reason?ndn.MustBeFresh=1&ndn.Nonce=3776824408\n"
Davide Pesaventof9126532018-08-04 18:31:06 -0400469 "1456768918.067099 IP 1.0.0.2 > 1.0.0.1, TCP, length 54, "
470 "NDNLPv2, NACK (None): /producer/nack/no-reason?ndn.MustBeFresh=1&ndn.Nonce=3776824408\n";
Davide Pesaventoecd44802018-07-23 23:48:10 -0400471 BOOST_CHECK(output.is_equal(expected));
Vince Lehman277ecf02016-02-10 16:37:48 -0600472}
473
Davide Pesavento0ca7e692018-08-05 02:21:06 -0400474BOOST_AUTO_TEST_CASE(LinuxSllTcp4)
475{
476 dump.wantTimestamp = false;
477 this->readFile("tests/dump/linux-sll-tcp4.pcap");
478
479 const std::string expected =
480 "IP 162.211.64.84 > 131.179.196.46, TCP, length 57, "
481 "INTEREST: /ndn/edu/ucla/ping/4436024701616433461?ndn.MustBeFresh=1&ndn.Nonce=1827520902\n"
482 "IP 162.211.64.84 > 131.179.196.46, TCP, length 41, "
483 "INTEREST: /ndn/edu/arizona/ping/8202?ndn.Nonce=1059849935\n"
484 "IP 131.179.196.46 > 162.211.64.84, TCP, length 403, "
485 "DATA: /ndn/edu/arizona/ping/8202\n"
486 "IP 131.179.196.46 > 162.211.64.84, TCP, length 57, "
487 "INTEREST: /ndn/edu/ucla/ping/4436024701616433462?ndn.MustBeFresh=1&ndn.Nonce=4082468009\n"
488 "IP 162.211.64.84 > 131.179.196.46, TCP, length 57, "
489 "INTEREST: /ndn/edu/ucla/ping/4436024701616433462?ndn.MustBeFresh=1&ndn.Nonce=4082468009\n";
490 BOOST_CHECK(output.is_equal(expected));
491}
492
493BOOST_AUTO_TEST_CASE(LinuxSllUdp4)
494{
495 dump.wantTimestamp = false;
496 this->readFile("tests/dump/linux-sll-udp4.pcap");
497
498 const std::string expected =
499 "IP 162.211.64.84 > 131.179.196.46, UDP, length 42, "
500 "INTEREST: /ndn/edu/arizona/ping/31044?ndn.Nonce=3171630323\n"
501 "IP 131.179.196.46 > 162.211.64.84, UDP, length 404, "
502 "DATA: /ndn/edu/arizona/ping/31044\n";
503 BOOST_CHECK(output.is_equal(expected));
504}
505
506BOOST_AUTO_TEST_CASE(LinuxSllTcp6)
507{
508 dump.wantTimestamp = false;
509 this->readFile("tests/dump/linux-sll-tcp6.pcap");
510
511 const std::string expected =
512 "IP6 2602:fff6:d:b317::39f8 > 2001:660:3302:282c:160::163, TCP, length 42, "
513 "INTEREST: /ndn/edu/arizona/ping/19573?ndn.Nonce=777756283\n"
514 "IP6 2001:660:3302:282c:160::163 > 2602:fff6:d:b317::39f8, TCP, length 404, "
515 "DATA: /ndn/edu/arizona/ping/19573\n"
516 "IP6 2001:660:3302:282c:160::163 > 2602:fff6:d:b317::39f8, TCP, length 56, "
517 "INTEREST: /ndn/fr/lip6/ping/7847878851635149046?ndn.MustBeFresh=1&ndn.Nonce=1836363210\n";
518 BOOST_CHECK(output.is_equal(expected));
519}
520
521BOOST_AUTO_TEST_CASE(LinuxSllUdp6)
522{
523 dump.wantTimestamp = false;
524 this->readFile("tests/dump/linux-sll-udp6.pcap");
525
526 const std::string expected =
527 "IP6 2602:fff6:d:b317::39f8 > 2001:660:3302:282c:160::163, UDP, length 39, "
528 "INTEREST: /ndn/edu/arizona/ping/18?ndn.Nonce=571618686\n"
529 "IP6 2001:660:3302:282c:160::163 > 2602:fff6:d:b317::39f8, UDP, length 401, "
530 "DATA: /ndn/edu/arizona/ping/18\n"
531 "IP6 2001:660:3302:282c:160::163 > 2602:fff6:d:b317::39f8, UDP, length 56, "
532 "INTEREST: /ndn/fr/lip6/ping/7847878851635149038?ndn.MustBeFresh=1&ndn.Nonce=192371114\n";
533 BOOST_CHECK(output.is_equal(expected));
534}
535
Davide Pesaventoecd44802018-07-23 23:48:10 -0400536BOOST_AUTO_TEST_SUITE_END() // TestNdnDump
537BOOST_AUTO_TEST_SUITE_END() // Dump
Vince Lehman277ecf02016-02-10 16:37:48 -0600538
539} // namespace tests
540} // namespace dump
541} // namespace ndn