Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, Regents of the University of California, |
Alexander Afanasyev | 319f2c8 | 2015-01-07 14:56:53 -0800 | [diff] [blame] | 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Alexander Afanasyev | c026d25 | 2014-06-16 11:14:15 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 25 | |
| 26 | #include "table/pit.hpp" |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 27 | #include "tests/daemon/face/dummy-face.hpp" |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 28 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 29 | #include "tests/test-common.hpp" |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 30 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 31 | namespace nfd { |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 32 | namespace pit { |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 33 | namespace tests { |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 34 | |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 35 | using namespace nfd::tests; |
| 36 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 37 | BOOST_AUTO_TEST_SUITE(Table) |
| 38 | BOOST_FIXTURE_TEST_SUITE(TestPit, BaseFixture) |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 39 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 40 | BOOST_AUTO_TEST_SUITE(PitEntry) |
| 41 | |
| 42 | BOOST_AUTO_TEST_CASE(InOutRecords) |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 43 | { |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 44 | shared_ptr<Face> face1 = make_shared<DummyFace>(); |
| 45 | shared_ptr<Face> face2 = make_shared<DummyFace>(); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 46 | Name name("ndn:/KuYfjtRq"); |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 47 | shared_ptr<Interest> interest = makeInterest(name); |
| 48 | shared_ptr<Interest> interest1 = makeInterest(name); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 49 | interest1->setInterestLifetime(time::milliseconds(2528)); |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 50 | interest1->setNonce(25559); |
| 51 | shared_ptr<Interest> interest2 = makeInterest(name); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 52 | interest2->setInterestLifetime(time::milliseconds(6464)); |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 53 | interest2->setNonce(19004); |
| 54 | shared_ptr<Interest> interest3 = makeInterest(name); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 55 | interest3->setInterestLifetime(time::milliseconds(3585)); |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 56 | interest3->setNonce(24216); |
| 57 | shared_ptr<Interest> interest4 = makeInterest(name); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 58 | interest4->setInterestLifetime(time::milliseconds(8795)); |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 59 | interest4->setNonce(17365); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 60 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 61 | Entry entry(*interest); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 62 | |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 63 | BOOST_CHECK_EQUAL(entry.getInterest().getName(), name); |
| 64 | BOOST_CHECK_EQUAL(entry.getName(), name); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 65 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 66 | const InRecordCollection& inRecords1 = entry.getInRecords(); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 67 | BOOST_CHECK_EQUAL(inRecords1.size(), 0); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 68 | const OutRecordCollection& outRecords1 = entry.getOutRecords(); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 69 | BOOST_CHECK_EQUAL(outRecords1.size(), 0); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 70 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 71 | // insert in-record |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 72 | time::steady_clock::TimePoint before1 = time::steady_clock::now(); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 73 | InRecordCollection::iterator in1 = entry.insertOrUpdateInRecord(*face1, *interest1); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 74 | time::steady_clock::TimePoint after1 = time::steady_clock::now(); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 75 | const InRecordCollection& inRecords2 = entry.getInRecords(); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 76 | BOOST_CHECK_EQUAL(inRecords2.size(), 1); |
| 77 | BOOST_CHECK(in1 == inRecords2.begin()); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 78 | BOOST_CHECK_EQUAL(&in1->getFace(), face1.get()); |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 79 | BOOST_CHECK_EQUAL(in1->getLastNonce(), interest1->getNonce()); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 80 | BOOST_CHECK_GE(in1->getLastRenewed(), before1); |
| 81 | BOOST_CHECK_LE(in1->getLastRenewed(), after1); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 82 | BOOST_CHECK_LE(in1->getExpiry() - in1->getLastRenewed() |
| 83 | - interest1->getInterestLifetime(), |
| 84 | (after1 - before1)); |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 85 | BOOST_CHECK(in1 == entry.getInRecord(*face1)); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 86 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 87 | // insert out-record |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 88 | time::steady_clock::TimePoint before2 = time::steady_clock::now(); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 89 | OutRecordCollection::iterator out1 = entry.insertOrUpdateOutRecord(*face1, *interest1); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 90 | time::steady_clock::TimePoint after2 = time::steady_clock::now(); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 91 | const OutRecordCollection& outRecords2 = entry.getOutRecords(); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 92 | BOOST_CHECK_EQUAL(outRecords2.size(), 1); |
| 93 | BOOST_CHECK(out1 == outRecords2.begin()); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 94 | BOOST_CHECK_EQUAL(&out1->getFace(), face1.get()); |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 95 | BOOST_CHECK_EQUAL(out1->getLastNonce(), interest1->getNonce()); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 96 | BOOST_CHECK_GE(out1->getLastRenewed(), before2); |
| 97 | BOOST_CHECK_LE(out1->getLastRenewed(), after2); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 98 | BOOST_CHECK_LE(out1->getExpiry() - out1->getLastRenewed() |
| 99 | - interest1->getInterestLifetime(), |
| 100 | (after2 - before2)); |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 101 | BOOST_CHECK(out1 == entry.getOutRecord(*face1)); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 102 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 103 | // update in-record |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 104 | time::steady_clock::TimePoint before3 = time::steady_clock::now(); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 105 | InRecordCollection::iterator in2 = entry.insertOrUpdateInRecord(*face1, *interest2); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 106 | time::steady_clock::TimePoint after3 = time::steady_clock::now(); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 107 | const InRecordCollection& inRecords3 = entry.getInRecords(); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 108 | BOOST_CHECK_EQUAL(inRecords3.size(), 1); |
| 109 | BOOST_CHECK(in2 == inRecords3.begin()); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 110 | BOOST_CHECK_EQUAL(&in2->getFace(), face1.get()); |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 111 | BOOST_CHECK_EQUAL(in2->getLastNonce(), interest2->getNonce()); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 112 | BOOST_CHECK_LE(in2->getExpiry() - in2->getLastRenewed() |
| 113 | - interest2->getInterestLifetime(), |
| 114 | (after3 - before3)); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 115 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 116 | // insert another in-record |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 117 | InRecordCollection::iterator in3 = entry.insertOrUpdateInRecord(*face2, *interest3); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 118 | const InRecordCollection& inRecords4 = entry.getInRecords(); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 119 | BOOST_CHECK_EQUAL(inRecords4.size(), 2); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 120 | BOOST_CHECK_EQUAL(&in3->getFace(), face2.get()); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 121 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 122 | // get in-record |
| 123 | InRecordCollection::iterator in4 = entry.getInRecord(*face1); |
| 124 | BOOST_REQUIRE(in4 != entry.in_end()); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 125 | BOOST_CHECK_EQUAL(&in4->getFace(), face1.get()); |
Junxiao Shi | 66f91f8 | 2014-05-10 17:28:58 -0700 | [diff] [blame] | 126 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 127 | // clear in-records |
| 128 | entry.clearInRecords(); |
| 129 | const InRecordCollection& inRecords5 = entry.getInRecords(); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 130 | BOOST_CHECK_EQUAL(inRecords5.size(), 0); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 131 | BOOST_CHECK(entry.getInRecord(*face1) == entry.in_end()); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 132 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 133 | // insert another out-record |
| 134 | OutRecordCollection::iterator out2 = |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 135 | entry.insertOrUpdateOutRecord(*face2, *interest4); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 136 | const OutRecordCollection& outRecords3 = entry.getOutRecords(); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 137 | BOOST_CHECK_EQUAL(outRecords3.size(), 2); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 138 | BOOST_CHECK_EQUAL(&out2->getFace(), face2.get()); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 139 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 140 | // get out-record |
| 141 | OutRecordCollection::iterator out3 = entry.getOutRecord(*face1); |
| 142 | BOOST_REQUIRE(out3 != entry.out_end()); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 143 | BOOST_CHECK_EQUAL(&out3->getFace(), face1.get()); |
Junxiao Shi | 66f91f8 | 2014-05-10 17:28:58 -0700 | [diff] [blame] | 144 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 145 | // delete out-record |
Junxiao Shi | b2bcbcd | 2014-11-08 09:30:28 -0700 | [diff] [blame] | 146 | entry.deleteOutRecord(*face2); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 147 | const OutRecordCollection& outRecords4 = entry.getOutRecords(); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 148 | BOOST_REQUIRE_EQUAL(outRecords4.size(), 1); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 149 | BOOST_CHECK_EQUAL(&outRecords4.begin()->getFace(), face1.get()); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 150 | BOOST_CHECK(entry.getOutRecord(*face2) == entry.out_end()); |
Junxiao Shi | d3c792f | 2014-01-30 00:46:13 -0700 | [diff] [blame] | 151 | } |
| 152 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 153 | BOOST_AUTO_TEST_CASE(Lifetime) |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 154 | { |
| 155 | shared_ptr<Interest> interest = makeInterest("ndn:/7oIEurbgy6"); |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 156 | // library uses -1 to indicate unset lifetime |
| 157 | BOOST_ASSERT(interest->getInterestLifetime() < time::milliseconds::zero()); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 158 | |
| 159 | shared_ptr<Face> face = make_shared<DummyFace>(); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 160 | Entry entry(*interest); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 161 | |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 162 | InRecordCollection::iterator inIt = entry.insertOrUpdateInRecord(*face, *interest); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 163 | BOOST_CHECK_GT(inIt->getExpiry(), time::steady_clock::now()); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 164 | |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 165 | OutRecordCollection::iterator outIt = entry.insertOrUpdateOutRecord(*face, *interest); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 166 | BOOST_CHECK_GT(outIt->getExpiry(), time::steady_clock::now()); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 167 | } |
| 168 | |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 169 | BOOST_AUTO_TEST_CASE(OutRecordNack) |
| 170 | { |
| 171 | shared_ptr<Face> face1 = make_shared<DummyFace>(); |
Junxiao Shi | 9cff779 | 2016-08-01 21:45:11 +0000 | [diff] [blame] | 172 | OutRecord outR(*face1); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 173 | BOOST_CHECK(outR.getIncomingNack() == nullptr); |
| 174 | |
| 175 | shared_ptr<Interest> interest1 = makeInterest("ndn:/uWiapGjYL"); |
| 176 | interest1->setNonce(165); |
| 177 | outR.update(*interest1); |
| 178 | BOOST_CHECK(outR.getIncomingNack() == nullptr); |
| 179 | |
| 180 | shared_ptr<Interest> interest2 = makeInterest("ndn:/uWiapGjYL"); |
| 181 | interest2->setNonce(996); |
| 182 | lp::Nack nack2(*interest2); |
| 183 | nack2.setReason(lp::NackReason::CONGESTION); |
| 184 | BOOST_CHECK_EQUAL(outR.setIncomingNack(nack2), false); |
| 185 | BOOST_CHECK(outR.getIncomingNack() == nullptr); |
| 186 | |
| 187 | lp::Nack nack1(*interest1); |
| 188 | nack1.setReason(lp::NackReason::DUPLICATE); |
| 189 | BOOST_CHECK_EQUAL(outR.setIncomingNack(nack1), true); |
| 190 | BOOST_REQUIRE(outR.getIncomingNack() != nullptr); |
| 191 | BOOST_CHECK_EQUAL(outR.getIncomingNack()->getReason(), lp::NackReason::DUPLICATE); |
| 192 | |
| 193 | outR.clearIncomingNack(); |
| 194 | BOOST_CHECK(outR.getIncomingNack() == nullptr); |
| 195 | } |
| 196 | |
| 197 | BOOST_AUTO_TEST_SUITE_END() // PitEntry |
| 198 | |
| 199 | |
Junxiao Shi | 2879779 | 2016-05-26 18:10:18 +0000 | [diff] [blame] | 200 | BOOST_AUTO_TEST_CASE(Find) |
| 201 | { |
| 202 | shared_ptr<Interest> interest1 = makeInterest("/6hNwxJjw"); |
| 203 | shared_ptr<Interest> interest2 = makeInterest("/v65zqxm4d"); |
| 204 | |
| 205 | NameTree nameTree(16); |
| 206 | Pit pit(nameTree); |
| 207 | |
| 208 | pit.insert(*interest1); |
| 209 | shared_ptr<pit::Entry> found1a = pit.find(*interest1); |
| 210 | shared_ptr<pit::Entry> found1b = pit.find(*interest1); |
| 211 | BOOST_CHECK(found1a != nullptr); |
| 212 | BOOST_CHECK(found1a == found1b); |
| 213 | |
| 214 | shared_ptr<pit::Entry> found2 = pit.find(*interest2); |
| 215 | BOOST_CHECK(found2 == nullptr); |
| 216 | BOOST_CHECK(nameTree.findExactMatch(interest2->getName()) == nullptr); |
| 217 | } |
| 218 | |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 219 | BOOST_AUTO_TEST_CASE(Insert) |
| 220 | { |
| 221 | Name name1("ndn:/5vzBNnMst"); |
| 222 | Name name2("ndn:/igSGfEIM62"); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 223 | Exclude exclude1; |
| 224 | exclude1.excludeOne(Name::Component("u26p47oep")); |
| 225 | Exclude exclude2; |
Junxiao Shi | 30d3599 | 2014-04-03 14:51:58 -0700 | [diff] [blame] | 226 | exclude2.excludeBefore(Name::Component("u26p47oep")); |
| 227 | ndn::KeyLocator keyLocator1("ndn:/sGAE3peMHA"); |
| 228 | ndn::KeyLocator keyLocator2("ndn:/nIJH6pr4"); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 229 | |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 230 | NameTree nameTree(16); |
| 231 | Pit pit(nameTree); |
Junxiao Shi | 30d3599 | 2014-04-03 14:51:58 -0700 | [diff] [blame] | 232 | BOOST_CHECK_EQUAL(pit.size(), 0); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 233 | std::pair<shared_ptr<Entry>, bool> insertResult; |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 234 | |
Junxiao Shi | 30d3599 | 2014-04-03 14:51:58 -0700 | [diff] [blame] | 235 | // base |
| 236 | shared_ptr<Interest> interestA = make_shared<Interest>(name1); |
| 237 | insertResult = pit.insert(*interestA); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 238 | BOOST_CHECK_EQUAL(insertResult.second, true); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 239 | BOOST_CHECK_EQUAL(pit.size(), 1); |
| 240 | |
Junxiao Shi | 30d3599 | 2014-04-03 14:51:58 -0700 | [diff] [blame] | 241 | // A+MinSuffixComponents |
| 242 | shared_ptr<Interest> interestB = make_shared<Interest>(*interestA); |
| 243 | interestB->setMinSuffixComponents(2); |
| 244 | insertResult = pit.insert(*interestB); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 245 | BOOST_CHECK_EQUAL(insertResult.second, true); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 246 | BOOST_CHECK_EQUAL(pit.size(), 2); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 247 | |
Junxiao Shi | 30d3599 | 2014-04-03 14:51:58 -0700 | [diff] [blame] | 248 | // A+MaxSuffixComponents |
| 249 | shared_ptr<Interest> interestC = make_shared<Interest>(*interestA); |
| 250 | interestC->setMaxSuffixComponents(4); |
| 251 | insertResult = pit.insert(*interestC); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 252 | BOOST_CHECK_EQUAL(insertResult.second, true); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 253 | BOOST_CHECK_EQUAL(pit.size(), 3); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 254 | |
Junxiao Shi | 30d3599 | 2014-04-03 14:51:58 -0700 | [diff] [blame] | 255 | // A+KeyLocator1 |
| 256 | shared_ptr<Interest> interestD = make_shared<Interest>(*interestA); |
| 257 | interestD->setPublisherPublicKeyLocator(keyLocator1); |
| 258 | insertResult = pit.insert(*interestD); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 259 | BOOST_CHECK_EQUAL(insertResult.second, true); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 260 | BOOST_CHECK_EQUAL(pit.size(), 4); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 261 | |
Junxiao Shi | 30d3599 | 2014-04-03 14:51:58 -0700 | [diff] [blame] | 262 | // A+KeyLocator2 |
| 263 | shared_ptr<Interest> interestE = make_shared<Interest>(*interestA); |
| 264 | interestE->setPublisherPublicKeyLocator(keyLocator2); |
| 265 | insertResult = pit.insert(*interestE); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 266 | BOOST_CHECK_EQUAL(insertResult.second, true); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 267 | BOOST_CHECK_EQUAL(pit.size(), 5); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 268 | |
Junxiao Shi | 30d3599 | 2014-04-03 14:51:58 -0700 | [diff] [blame] | 269 | // A+Exclude1 |
| 270 | shared_ptr<Interest> interestF = make_shared<Interest>(*interestA); |
| 271 | interestF->setExclude(exclude1); |
| 272 | insertResult = pit.insert(*interestF); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 273 | BOOST_CHECK_EQUAL(insertResult.second, true); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 274 | BOOST_CHECK_EQUAL(pit.size(), 6); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 275 | |
Junxiao Shi | 30d3599 | 2014-04-03 14:51:58 -0700 | [diff] [blame] | 276 | // A+Exclude2 |
| 277 | shared_ptr<Interest> interestG = make_shared<Interest>(*interestA); |
| 278 | interestG->setExclude(exclude2); |
| 279 | insertResult = pit.insert(*interestG); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 280 | BOOST_CHECK_EQUAL(insertResult.second, true); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 281 | BOOST_CHECK_EQUAL(pit.size(), 7); |
| 282 | |
Junxiao Shi | 30d3599 | 2014-04-03 14:51:58 -0700 | [diff] [blame] | 283 | // A+ChildSelector0 |
| 284 | shared_ptr<Interest> interestH = make_shared<Interest>(*interestA); |
| 285 | interestH->setChildSelector(0); |
| 286 | insertResult = pit.insert(*interestH); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 287 | BOOST_CHECK_EQUAL(insertResult.second, true); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 288 | BOOST_CHECK_EQUAL(pit.size(), 8); |
Junxiao Shi | 30d3599 | 2014-04-03 14:51:58 -0700 | [diff] [blame] | 289 | |
| 290 | // A+ChildSelector1 |
| 291 | shared_ptr<Interest> interestI = make_shared<Interest>(*interestA); |
| 292 | interestI->setChildSelector(1); |
| 293 | insertResult = pit.insert(*interestI); |
| 294 | BOOST_CHECK_EQUAL(insertResult.second, true); |
| 295 | BOOST_CHECK_EQUAL(pit.size(), 9); |
| 296 | |
| 297 | // A+MustBeFresh |
| 298 | shared_ptr<Interest> interestJ = make_shared<Interest>(*interestA); |
| 299 | interestJ->setMustBeFresh(true); |
| 300 | insertResult = pit.insert(*interestJ); |
| 301 | BOOST_CHECK_EQUAL(insertResult.second, true); |
| 302 | BOOST_CHECK_EQUAL(pit.size(), 10); |
| 303 | |
| 304 | // A+InterestLifetime |
| 305 | shared_ptr<Interest> interestK = make_shared<Interest>(*interestA); |
| 306 | interestK->setInterestLifetime(time::milliseconds(1000)); |
| 307 | insertResult = pit.insert(*interestK); |
| 308 | BOOST_CHECK_EQUAL(insertResult.second, false);// only guiders differ |
| 309 | BOOST_CHECK_EQUAL(pit.size(), 10); |
| 310 | |
| 311 | // A+Nonce |
| 312 | shared_ptr<Interest> interestL = make_shared<Interest>(*interestA); |
| 313 | interestL->setNonce(2192); |
| 314 | insertResult = pit.insert(*interestL); |
| 315 | BOOST_CHECK_EQUAL(insertResult.second, false);// only guiders differ |
| 316 | BOOST_CHECK_EQUAL(pit.size(), 10); |
| 317 | |
| 318 | // different Name+Exclude1 |
| 319 | shared_ptr<Interest> interestM = make_shared<Interest>(name2); |
| 320 | interestM->setExclude(exclude1); |
| 321 | insertResult = pit.insert(*interestM); |
| 322 | BOOST_CHECK_EQUAL(insertResult.second, true); |
| 323 | BOOST_CHECK_EQUAL(pit.size(), 11); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 324 | } |
| 325 | |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 326 | BOOST_AUTO_TEST_CASE(Erase) |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 327 | { |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 328 | shared_ptr<Interest> interest = makeInterest("/z88Admz6A2"); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 329 | |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 330 | NameTree nameTree(16); |
| 331 | Pit pit(nameTree); |
| 332 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 333 | std::pair<shared_ptr<Entry>, bool> insertResult; |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 334 | |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 335 | BOOST_CHECK_EQUAL(pit.size(), 0); |
| 336 | |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 337 | insertResult = pit.insert(*interest); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 338 | BOOST_CHECK_EQUAL(insertResult.second, true); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 339 | BOOST_CHECK_EQUAL(pit.size(), 1); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 340 | BOOST_CHECK(pit.find(*interest) != nullptr); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 341 | |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 342 | insertResult = pit.insert(*interest); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 343 | BOOST_CHECK_EQUAL(insertResult.second, false); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 344 | BOOST_CHECK_EQUAL(pit.size(), 1); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 345 | BOOST_CHECK(pit.find(*interest) != nullptr); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 346 | |
Junxiao Shi | dbef6dc | 2016-08-15 02:58:36 +0000 | [diff] [blame] | 347 | pit.erase(insertResult.first.get()); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 348 | BOOST_CHECK_EQUAL(pit.size(), 0); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 349 | BOOST_CHECK(pit.find(*interest) == nullptr); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 350 | |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 351 | insertResult = pit.insert(*interest); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 352 | BOOST_CHECK_EQUAL(insertResult.second, true); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 353 | BOOST_CHECK_EQUAL(pit.size(), 1); |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 354 | BOOST_CHECK(pit.find(*interest) != nullptr); |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 355 | } |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 356 | |
Junxiao Shi | ee5a444 | 2014-07-27 17:13:43 -0700 | [diff] [blame] | 357 | BOOST_AUTO_TEST_CASE(EraseNameTreeEntry) |
| 358 | { |
| 359 | NameTree nameTree; |
| 360 | Pit pit(nameTree); |
| 361 | size_t nNameTreeEntriesBefore = nameTree.size(); |
| 362 | |
| 363 | shared_ptr<Interest> interest = makeInterest("/37xWVvQ2K"); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 364 | shared_ptr<Entry> entry = pit.insert(*interest).first; |
Junxiao Shi | dbef6dc | 2016-08-15 02:58:36 +0000 | [diff] [blame] | 365 | pit.erase(entry.get()); |
Junxiao Shi | ee5a444 | 2014-07-27 17:13:43 -0700 | [diff] [blame] | 366 | BOOST_CHECK_EQUAL(nameTree.size(), nNameTreeEntriesBefore); |
| 367 | } |
| 368 | |
spirosmastorakis | ff92030 | 2016-05-26 18:09:31 +0000 | [diff] [blame] | 369 | BOOST_AUTO_TEST_CASE(EraseWithFullName) |
| 370 | { |
| 371 | shared_ptr<Data> data = makeData("/test"); |
| 372 | shared_ptr<Interest> interest = makeInterest(data->getFullName()); |
| 373 | |
| 374 | NameTree nameTree(16); |
| 375 | Pit pit(nameTree); |
| 376 | |
| 377 | BOOST_CHECK_EQUAL(pit.size(), 0); |
| 378 | |
| 379 | BOOST_CHECK_EQUAL(pit.insert(*interest).second, true); |
| 380 | BOOST_CHECK_EQUAL(pit.size(), 1); |
| 381 | BOOST_CHECK(pit.find(*interest) != nullptr); |
| 382 | |
| 383 | BOOST_CHECK_EQUAL(pit.insert(*interest).second, false); |
| 384 | BOOST_CHECK_EQUAL(pit.size(), 1); |
| 385 | shared_ptr<pit::Entry> pitEntry = pit.find(*interest); |
| 386 | BOOST_REQUIRE(pitEntry != nullptr); |
| 387 | |
Junxiao Shi | dbef6dc | 2016-08-15 02:58:36 +0000 | [diff] [blame] | 388 | pit.erase(pitEntry.get()); |
spirosmastorakis | ff92030 | 2016-05-26 18:09:31 +0000 | [diff] [blame] | 389 | BOOST_CHECK_EQUAL(pit.size(), 0); |
| 390 | BOOST_CHECK(pit.find(*interest) == nullptr); |
| 391 | |
| 392 | BOOST_CHECK_EQUAL(pit.insert(*interest).second, true); |
| 393 | BOOST_CHECK_EQUAL(pit.size(), 1); |
| 394 | BOOST_CHECK(pit.find(*interest) != nullptr); |
| 395 | } |
| 396 | |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 397 | BOOST_AUTO_TEST_CASE(FindAllDataMatches) |
| 398 | { |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 399 | Name nameA ("ndn:/A"); |
| 400 | Name nameAB ("ndn:/A/B"); |
| 401 | Name nameABC ("ndn:/A/B/C"); |
| 402 | Name nameABCD("ndn:/A/B/C/D"); |
| 403 | Name nameD ("ndn:/D"); |
| 404 | |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 405 | shared_ptr<Interest> interestA = makeInterest(nameA ); |
| 406 | shared_ptr<Interest> interestABC = makeInterest(nameABC); |
| 407 | shared_ptr<Interest> interestD = makeInterest(nameD ); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 408 | |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 409 | NameTree nameTree(16); |
| 410 | Pit pit(nameTree); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 411 | int count = 0; |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 412 | |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 413 | BOOST_CHECK_EQUAL(pit.size(), 0); |
| 414 | |
Alexander Afanasyev | 28d586a | 2014-07-10 20:10:54 -0700 | [diff] [blame] | 415 | pit.insert(*interestA ); |
| 416 | pit.insert(*interestABC); |
| 417 | pit.insert(*interestD ); |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 418 | |
| 419 | nameTree.lookup(nameABCD); // make sure /A/B/C/D is in nameTree |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 420 | |
Haowei Yuan | 78c84d1 | 2014-02-27 15:35:13 -0600 | [diff] [blame] | 421 | BOOST_CHECK_EQUAL(pit.size(), 3); |
| 422 | |
Alexander Afanasyev | c026d25 | 2014-06-16 11:14:15 -0700 | [diff] [blame] | 423 | shared_ptr<Data> data = makeData(nameABCD); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 424 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 425 | DataMatchResult matches = pit.findAllDataMatches(*data); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 426 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 427 | bool hasA = false; |
| 428 | bool hasAB = false; |
| 429 | bool hasABC = false; |
| 430 | bool hasD = false; |
| 431 | |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 432 | for (const shared_ptr<Entry>& entry : matches) { |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 433 | ++count; |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 434 | |
| 435 | if (entry->getName().equals(nameA )) |
| 436 | hasA = true; |
| 437 | |
| 438 | if (entry->getName().equals(nameAB)) |
| 439 | hasAB = true; |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 440 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 441 | if (entry->getName().equals(nameABC)) |
| 442 | hasABC = true; |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 443 | |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 444 | if (entry->getName().equals(nameD)) |
| 445 | hasD = true; |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 446 | } |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 447 | BOOST_CHECK_EQUAL(hasA , true); |
| 448 | BOOST_CHECK_EQUAL(hasAB , false); |
| 449 | BOOST_CHECK_EQUAL(hasABC, true); |
| 450 | BOOST_CHECK_EQUAL(hasD , false); |
| 451 | |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 452 | BOOST_CHECK_EQUAL(count, 2); |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 453 | } |
Haowei Yuan | e1079fc | 2014-03-08 14:41:25 -0600 | [diff] [blame] | 454 | |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 455 | BOOST_AUTO_TEST_CASE(MatchFullName) // Bug 3363 |
| 456 | { |
| 457 | NameTree nameTree(16); |
| 458 | Pit pit(nameTree); |
| 459 | |
| 460 | shared_ptr<Data> data = makeData("/A"); |
| 461 | Name fullName = data->getFullName(); |
| 462 | shared_ptr<Interest> interest = makeInterest(fullName); |
| 463 | |
| 464 | pit.insert(*interest); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 465 | DataMatchResult matches = pit.findAllDataMatches(*data); |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 466 | |
| 467 | BOOST_REQUIRE_EQUAL(std::distance(matches.begin(), matches.end()), 1); |
Junxiao Shi | 4846f37 | 2016-04-05 13:39:30 -0700 | [diff] [blame] | 468 | shared_ptr<Entry> found = *matches.begin(); |
Junxiao Shi | 4370fde | 2016-02-24 12:20:46 -0700 | [diff] [blame] | 469 | BOOST_CHECK_EQUAL(found->getName(), fullName); |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 470 | } |
| 471 | |
Alexander Afanasyev | 750fa1c | 2015-01-03 17:28:31 -0800 | [diff] [blame] | 472 | BOOST_AUTO_TEST_CASE(Iterator) |
| 473 | { |
| 474 | NameTree nameTree(16); |
| 475 | Pit pit(nameTree); |
| 476 | |
| 477 | shared_ptr<Interest> interestA = makeInterest("/A"); |
| 478 | shared_ptr<Interest> interestABC1 = makeInterest("/A/B/C"); |
| 479 | shared_ptr<Interest> interestABC2 = makeInterest("/A/B/C"); |
| 480 | interestABC2->setSelectors(ndn::Selectors().setMinSuffixComponents(10)); |
| 481 | shared_ptr<Interest> interestD = makeInterest("/D"); |
| 482 | |
| 483 | BOOST_CHECK_EQUAL(pit.size(), 0); |
| 484 | BOOST_CHECK(pit.begin() == pit.end()); |
| 485 | |
| 486 | pit.insert(*interestABC1); |
| 487 | BOOST_CHECK_EQUAL(pit.size(), 1); |
| 488 | BOOST_CHECK(pit.begin() != pit.end()); |
| 489 | BOOST_CHECK(pit.begin()->getInterest() == *interestABC1); |
| 490 | BOOST_CHECK((*pit.begin()).getInterest() == *interestABC1); |
| 491 | |
| 492 | auto i = pit.begin(); |
| 493 | auto j = pit.begin(); |
| 494 | BOOST_CHECK(++i == pit.end()); |
| 495 | BOOST_CHECK(j++ == pit.begin()); |
| 496 | BOOST_CHECK(j == pit.end()); |
| 497 | |
| 498 | pit.insert(*interestA); |
| 499 | pit.insert(*interestABC2); |
| 500 | pit.insert(*interestD); |
| 501 | |
| 502 | std::set<const Interest*> expected = {&*interestA, &*interestABC1, &*interestABC2, &*interestD}; |
| 503 | std::set<const Interest*> actual; |
| 504 | for (const auto& pitEntry : pit) { |
| 505 | actual.insert(&pitEntry.getInterest()); |
| 506 | } |
| 507 | BOOST_CHECK(actual == expected); |
| 508 | for (auto actualIt = actual.begin(), expectedIt = expected.begin(); |
| 509 | actualIt != actual.end() && expectedIt != expected.end(); ++actualIt, ++expectedIt) { |
| 510 | BOOST_CHECK_EQUAL(**actualIt, **expectedIt); |
| 511 | } |
| 512 | } |
| 513 | |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 514 | BOOST_AUTO_TEST_SUITE_END() |
Junxiao Shi | 5e5e445 | 2015-09-24 16:56:52 -0700 | [diff] [blame] | 515 | BOOST_AUTO_TEST_SUITE_END() |
Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 516 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 517 | } // namespace tests |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 518 | } // namespace pit |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 519 | } // namespace nfd |