blob: 9e2e1d6fe397c83f9be41a4e807909d9c184be4d [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2014-2023, Regents of the University of California,
* Arizona Board of Regents,
* Colorado State University,
* University Pierre & Marie Curie, Sorbonne University,
* Washington University in St. Louis,
* Beijing Institute of Technology,
* The University of Memphis.
*
* This file is part of NFD (Named Data Networking Forwarding Daemon).
* See AUTHORS.md for complete list of NFD authors and contributors.
*
* NFD is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Foundation,
* either version 3 of the License, or (at your option) any later version.
*
* NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with
* NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
*/
#include "tests/daemon/global-io-fixture.hpp"
#include "topology-tester.hpp"
#include <ndn-cxx/lp/fields.hpp>
#include <ndn-cxx/lp/packet.hpp>
#include <ndn-cxx/lp/pit-token.hpp>
namespace nfd::tests {
BOOST_AUTO_TEST_SUITE(Fw)
BOOST_AUTO_TEST_SUITE(TestPitToken)
// Downstream requires PIT token.
BOOST_FIXTURE_TEST_CASE(Downstream, GlobalIoTimeFixture)
{
TopologyTester topo;
TopologyNode nodeR = topo.addForwarder("R");
auto linkC = topo.addBareLink("C", nodeR, ndn::nfd::FACE_SCOPE_NON_LOCAL);
auto linkS = topo.addBareLink("S", nodeR, ndn::nfd::FACE_SCOPE_NON_LOCAL);
topo.registerPrefix(nodeR, linkS->getForwarderFace(), "/U", 5);
// Client --- Router --- Server
// Client requires PIT token; Router supports PIT token; Server disallows PIT token.
// C sends Interest /U/0 with PIT token A
lp::Packet lppI0("641A pit-token=6206A0A1A2A3A4A5 payload=5010 interest=050E 0706080155080130 0A0400000001"_block);
lp::PitToken tokenI0(lppI0.get<lp::PitTokenField>());
linkC->receivePacket(lppI0.wireEncode());
advanceClocks(5_ms, 30_ms);
// S should receive Interest without PIT token
BOOST_REQUIRE_EQUAL(linkS->sentPackets.size(), 1);
lp::Packet lppS(linkS->sentPackets.back());
BOOST_CHECK_EQUAL(lppS.count<lp::PitTokenField>(), 0);
// S responds Data
linkS->receivePacket(makeData("/U/0")->wireEncode());
advanceClocks(5_ms, 30_ms);
// C should receive Data with PIT token A
BOOST_REQUIRE_EQUAL(linkC->sentPackets.size(), 1);
lp::Packet lppD0(linkC->sentPackets.back());
lp::PitToken tokenD0(lppD0.get<lp::PitTokenField>());
BOOST_CHECK(tokenD0 == tokenI0);
// C sends Interest /U/0 again with PIT token B
lp::Packet lppI1("641C pit-token=6208B0B1B2B3B4B5B6B7 payload=5010 interest=050E 0706080155080130 0A0400000002"_block);
lp::PitToken tokenI1(lppI1.get<lp::PitTokenField>());
linkC->receivePacket(lppI1.wireEncode());
advanceClocks(5_ms, 30_ms);
// S should not receive Interest, because the Interest is satisfied by CS
BOOST_CHECK_EQUAL(linkS->sentPackets.size(), 1);
// C should receive Data with PIT token B
BOOST_REQUIRE_EQUAL(linkC->sentPackets.size(), 2);
lp::Packet lppD1(linkC->sentPackets.back());
lp::PitToken tokenD1(lppD1.get<lp::PitTokenField>());
BOOST_CHECK(tokenD1 == tokenI1);
}
BOOST_AUTO_TEST_SUITE_END() // TestPitToken
BOOST_AUTO_TEST_SUITE_END() // Fw
} // namespace nfd::tests