blob: 01f063d59f2a5aa6a5820d9019d3cbbec78e06a3 [file] [log] [blame]
Junxiao Shicbba04c2014-01-26 14:21:22 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi4370fde2016-02-24 12:20:46 -07003 * Copyright (c) 2014-2016, Regents of the University of California,
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08004 * 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 Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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 Afanasyevc026d252014-06-16 11:14:15 -070024 */
Junxiao Shicbba04c2014-01-26 14:21:22 -070025
26#include "table/pit.hpp"
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070027#include "tests/daemon/face/dummy-face.hpp"
Junxiao Shicbba04c2014-01-26 14:21:22 -070028
Junxiao Shid9ee45c2014-02-27 15:38:11 -070029#include "tests/test-common.hpp"
Junxiao Shicbba04c2014-01-26 14:21:22 -070030
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080031namespace nfd {
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -080032namespace pit {
Junxiao Shid9ee45c2014-02-27 15:38:11 -070033namespace tests {
Junxiao Shicbba04c2014-01-26 14:21:22 -070034
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -080035using namespace nfd::tests;
36
Junxiao Shi5e5e4452015-09-24 16:56:52 -070037BOOST_AUTO_TEST_SUITE(Table)
38BOOST_FIXTURE_TEST_SUITE(TestPit, BaseFixture)
Junxiao Shicbba04c2014-01-26 14:21:22 -070039
Junxiao Shi5e5e4452015-09-24 16:56:52 -070040BOOST_AUTO_TEST_SUITE(PitEntry)
41
42BOOST_AUTO_TEST_CASE(InOutRecords)
Junxiao Shicbba04c2014-01-26 14:21:22 -070043{
Junxiao Shi8c8d2182014-01-30 22:33:00 -070044 shared_ptr<Face> face1 = make_shared<DummyFace>();
45 shared_ptr<Face> face2 = make_shared<DummyFace>();
Junxiao Shicbba04c2014-01-26 14:21:22 -070046 Name name("ndn:/KuYfjtRq");
Junxiao Shif3c07812014-03-11 21:48:49 -070047 shared_ptr<Interest> interest = makeInterest(name);
48 shared_ptr<Interest> interest1 = makeInterest(name);
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070049 interest1->setInterestLifetime(time::milliseconds(2528));
Junxiao Shif3c07812014-03-11 21:48:49 -070050 interest1->setNonce(25559);
51 shared_ptr<Interest> interest2 = makeInterest(name);
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070052 interest2->setInterestLifetime(time::milliseconds(6464));
Junxiao Shif3c07812014-03-11 21:48:49 -070053 interest2->setNonce(19004);
54 shared_ptr<Interest> interest3 = makeInterest(name);
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070055 interest3->setInterestLifetime(time::milliseconds(3585));
Junxiao Shif3c07812014-03-11 21:48:49 -070056 interest3->setNonce(24216);
57 shared_ptr<Interest> interest4 = makeInterest(name);
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070058 interest4->setInterestLifetime(time::milliseconds(8795));
Junxiao Shif3c07812014-03-11 21:48:49 -070059 interest4->setNonce(17365);
Junxiao Shi57f0f312014-03-16 11:52:20 -070060
Junxiao Shi4846f372016-04-05 13:39:30 -070061 Entry entry(*interest);
Junxiao Shi57f0f312014-03-16 11:52:20 -070062
Junxiao Shif3c07812014-03-11 21:48:49 -070063 BOOST_CHECK_EQUAL(entry.getInterest().getName(), name);
64 BOOST_CHECK_EQUAL(entry.getName(), name);
Haowei Yuan78c84d12014-02-27 15:35:13 -060065
Junxiao Shi4846f372016-04-05 13:39:30 -070066 const InRecordCollection& inRecords1 = entry.getInRecords();
Junxiao Shicbba04c2014-01-26 14:21:22 -070067 BOOST_CHECK_EQUAL(inRecords1.size(), 0);
Junxiao Shi4846f372016-04-05 13:39:30 -070068 const OutRecordCollection& outRecords1 = entry.getOutRecords();
Junxiao Shicbba04c2014-01-26 14:21:22 -070069 BOOST_CHECK_EQUAL(outRecords1.size(), 0);
Junxiao Shi57f0f312014-03-16 11:52:20 -070070
Junxiao Shi4846f372016-04-05 13:39:30 -070071 // insert in-record
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070072 time::steady_clock::TimePoint before1 = time::steady_clock::now();
Junxiao Shi4846f372016-04-05 13:39:30 -070073 InRecordCollection::iterator in1 = entry.insertOrUpdateInRecord(face1, *interest1);
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070074 time::steady_clock::TimePoint after1 = time::steady_clock::now();
Junxiao Shi4846f372016-04-05 13:39:30 -070075 const InRecordCollection& inRecords2 = entry.getInRecords();
Junxiao Shicbba04c2014-01-26 14:21:22 -070076 BOOST_CHECK_EQUAL(inRecords2.size(), 1);
77 BOOST_CHECK(in1 == inRecords2.begin());
78 BOOST_CHECK_EQUAL(in1->getFace(), face1);
Junxiao Shif3c07812014-03-11 21:48:49 -070079 BOOST_CHECK_EQUAL(in1->getLastNonce(), interest1->getNonce());
Junxiao Shicbba04c2014-01-26 14:21:22 -070080 BOOST_CHECK_GE(in1->getLastRenewed(), before1);
81 BOOST_CHECK_LE(in1->getLastRenewed(), after1);
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070082 BOOST_CHECK_LE(in1->getExpiry() - in1->getLastRenewed()
83 - interest1->getInterestLifetime(),
84 (after1 - before1));
Junxiao Shib2bcbcd2014-11-08 09:30:28 -070085 BOOST_CHECK(in1 == entry.getInRecord(*face1));
Junxiao Shi57f0f312014-03-16 11:52:20 -070086
Junxiao Shi4846f372016-04-05 13:39:30 -070087 // insert out-record
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070088 time::steady_clock::TimePoint before2 = time::steady_clock::now();
Junxiao Shi4846f372016-04-05 13:39:30 -070089 OutRecordCollection::iterator out1 = entry.insertOrUpdateOutRecord(face1, *interest1);
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070090 time::steady_clock::TimePoint after2 = time::steady_clock::now();
Junxiao Shi4846f372016-04-05 13:39:30 -070091 const OutRecordCollection& outRecords2 = entry.getOutRecords();
Junxiao Shicbba04c2014-01-26 14:21:22 -070092 BOOST_CHECK_EQUAL(outRecords2.size(), 1);
93 BOOST_CHECK(out1 == outRecords2.begin());
94 BOOST_CHECK_EQUAL(out1->getFace(), face1);
Junxiao Shif3c07812014-03-11 21:48:49 -070095 BOOST_CHECK_EQUAL(out1->getLastNonce(), interest1->getNonce());
Junxiao Shicbba04c2014-01-26 14:21:22 -070096 BOOST_CHECK_GE(out1->getLastRenewed(), before2);
97 BOOST_CHECK_LE(out1->getLastRenewed(), after2);
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070098 BOOST_CHECK_LE(out1->getExpiry() - out1->getLastRenewed()
99 - interest1->getInterestLifetime(),
100 (after2 - before2));
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700101 BOOST_CHECK(out1 == entry.getOutRecord(*face1));
Junxiao Shi57f0f312014-03-16 11:52:20 -0700102
Junxiao Shi4846f372016-04-05 13:39:30 -0700103 // update in-record
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700104 time::steady_clock::TimePoint before3 = time::steady_clock::now();
Junxiao Shi4846f372016-04-05 13:39:30 -0700105 InRecordCollection::iterator in2 = entry.insertOrUpdateInRecord(face1, *interest2);
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700106 time::steady_clock::TimePoint after3 = time::steady_clock::now();
Junxiao Shi4846f372016-04-05 13:39:30 -0700107 const InRecordCollection& inRecords3 = entry.getInRecords();
Junxiao Shicbba04c2014-01-26 14:21:22 -0700108 BOOST_CHECK_EQUAL(inRecords3.size(), 1);
109 BOOST_CHECK(in2 == inRecords3.begin());
110 BOOST_CHECK_EQUAL(in2->getFace(), face1);
Junxiao Shif3c07812014-03-11 21:48:49 -0700111 BOOST_CHECK_EQUAL(in2->getLastNonce(), interest2->getNonce());
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700112 BOOST_CHECK_LE(in2->getExpiry() - in2->getLastRenewed()
113 - interest2->getInterestLifetime(),
114 (after3 - before3));
Junxiao Shicbba04c2014-01-26 14:21:22 -0700115
Junxiao Shi4846f372016-04-05 13:39:30 -0700116 // insert another in-record
117 InRecordCollection::iterator in3 = entry.insertOrUpdateInRecord(face2, *interest3);
118 const InRecordCollection& inRecords4 = entry.getInRecords();
Junxiao Shicbba04c2014-01-26 14:21:22 -0700119 BOOST_CHECK_EQUAL(inRecords4.size(), 2);
120 BOOST_CHECK_EQUAL(in3->getFace(), face2);
Junxiao Shi57f0f312014-03-16 11:52:20 -0700121
Junxiao Shi4846f372016-04-05 13:39:30 -0700122 // get in-record
123 InRecordCollection::iterator in4 = entry.getInRecord(*face1);
124 BOOST_REQUIRE(in4 != entry.in_end());
Junxiao Shi66f91f82014-05-10 17:28:58 -0700125 BOOST_CHECK_EQUAL(in4->getFace(), face1);
126
Junxiao Shi4846f372016-04-05 13:39:30 -0700127 // clear in-records
128 entry.clearInRecords();
129 const InRecordCollection& inRecords5 = entry.getInRecords();
Junxiao Shicbba04c2014-01-26 14:21:22 -0700130 BOOST_CHECK_EQUAL(inRecords5.size(), 0);
Junxiao Shi4846f372016-04-05 13:39:30 -0700131 BOOST_CHECK(entry.getInRecord(*face1) == entry.in_end());
Junxiao Shicbba04c2014-01-26 14:21:22 -0700132
Junxiao Shi4846f372016-04-05 13:39:30 -0700133 // insert another out-record
134 OutRecordCollection::iterator out2 =
Junxiao Shif3c07812014-03-11 21:48:49 -0700135 entry.insertOrUpdateOutRecord(face2, *interest4);
Junxiao Shi4846f372016-04-05 13:39:30 -0700136 const OutRecordCollection& outRecords3 = entry.getOutRecords();
Junxiao Shicbba04c2014-01-26 14:21:22 -0700137 BOOST_CHECK_EQUAL(outRecords3.size(), 2);
138 BOOST_CHECK_EQUAL(out2->getFace(), face2);
Junxiao Shi57f0f312014-03-16 11:52:20 -0700139
Junxiao Shi4846f372016-04-05 13:39:30 -0700140 // get out-record
141 OutRecordCollection::iterator out3 = entry.getOutRecord(*face1);
142 BOOST_REQUIRE(out3 != entry.out_end());
Junxiao Shi66f91f82014-05-10 17:28:58 -0700143 BOOST_CHECK_EQUAL(out3->getFace(), face1);
144
Junxiao Shi4846f372016-04-05 13:39:30 -0700145 // delete out-record
Junxiao Shib2bcbcd2014-11-08 09:30:28 -0700146 entry.deleteOutRecord(*face2);
Junxiao Shi4846f372016-04-05 13:39:30 -0700147 const OutRecordCollection& outRecords4 = entry.getOutRecords();
Junxiao Shicbba04c2014-01-26 14:21:22 -0700148 BOOST_REQUIRE_EQUAL(outRecords4.size(), 1);
149 BOOST_CHECK_EQUAL(outRecords4.begin()->getFace(), face1);
Junxiao Shi4846f372016-04-05 13:39:30 -0700150 BOOST_CHECK(entry.getOutRecord(*face2) == entry.out_end());
Junxiao Shid3c792f2014-01-30 00:46:13 -0700151}
152
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700153BOOST_AUTO_TEST_CASE(Lifetime)
Junxiao Shi57f0f312014-03-16 11:52:20 -0700154{
155 shared_ptr<Interest> interest = makeInterest("ndn:/7oIEurbgy6");
Junxiao Shia110f262014-10-12 12:35:20 -0700156 // library uses -1 to indicate unset lifetime
157 BOOST_ASSERT(interest->getInterestLifetime() < time::milliseconds::zero());
Junxiao Shi57f0f312014-03-16 11:52:20 -0700158
159 shared_ptr<Face> face = make_shared<DummyFace>();
Junxiao Shi4846f372016-04-05 13:39:30 -0700160 Entry entry(*interest);
Junxiao Shi57f0f312014-03-16 11:52:20 -0700161
Junxiao Shi4846f372016-04-05 13:39:30 -0700162 InRecordCollection::iterator inIt = entry.insertOrUpdateInRecord(face, *interest);
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700163 BOOST_CHECK_GT(inIt->getExpiry(), time::steady_clock::now());
Junxiao Shi57f0f312014-03-16 11:52:20 -0700164
Junxiao Shi4846f372016-04-05 13:39:30 -0700165 OutRecordCollection::iterator outIt = entry.insertOrUpdateOutRecord(face, *interest);
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700166 BOOST_CHECK_GT(outIt->getExpiry(), time::steady_clock::now());
Junxiao Shi57f0f312014-03-16 11:52:20 -0700167}
168
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700169BOOST_AUTO_TEST_CASE(OutRecordNack)
170{
171 shared_ptr<Face> face1 = make_shared<DummyFace>();
Junxiao Shi4846f372016-04-05 13:39:30 -0700172 OutRecord outR(face1);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700173 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
197BOOST_AUTO_TEST_SUITE_END() // PitEntry
198
199
Junxiao Shicbba04c2014-01-26 14:21:22 -0700200BOOST_AUTO_TEST_CASE(Insert)
201{
202 Name name1("ndn:/5vzBNnMst");
203 Name name2("ndn:/igSGfEIM62");
Junxiao Shicbba04c2014-01-26 14:21:22 -0700204 Exclude exclude1;
205 exclude1.excludeOne(Name::Component("u26p47oep"));
206 Exclude exclude2;
Junxiao Shi30d35992014-04-03 14:51:58 -0700207 exclude2.excludeBefore(Name::Component("u26p47oep"));
208 ndn::KeyLocator keyLocator1("ndn:/sGAE3peMHA");
209 ndn::KeyLocator keyLocator2("ndn:/nIJH6pr4");
Junxiao Shi57f0f312014-03-16 11:52:20 -0700210
Haowei Yuan78c84d12014-02-27 15:35:13 -0600211 NameTree nameTree(16);
212 Pit pit(nameTree);
Junxiao Shi30d35992014-04-03 14:51:58 -0700213 BOOST_CHECK_EQUAL(pit.size(), 0);
Junxiao Shi4846f372016-04-05 13:39:30 -0700214 std::pair<shared_ptr<Entry>, bool> insertResult;
Junxiao Shi57f0f312014-03-16 11:52:20 -0700215
Junxiao Shi30d35992014-04-03 14:51:58 -0700216 // base
217 shared_ptr<Interest> interestA = make_shared<Interest>(name1);
218 insertResult = pit.insert(*interestA);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700219 BOOST_CHECK_EQUAL(insertResult.second, true);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600220 BOOST_CHECK_EQUAL(pit.size(), 1);
221
Junxiao Shi30d35992014-04-03 14:51:58 -0700222 // A+MinSuffixComponents
223 shared_ptr<Interest> interestB = make_shared<Interest>(*interestA);
224 interestB->setMinSuffixComponents(2);
225 insertResult = pit.insert(*interestB);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700226 BOOST_CHECK_EQUAL(insertResult.second, true);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600227 BOOST_CHECK_EQUAL(pit.size(), 2);
Junxiao Shi57f0f312014-03-16 11:52:20 -0700228
Junxiao Shi30d35992014-04-03 14:51:58 -0700229 // A+MaxSuffixComponents
230 shared_ptr<Interest> interestC = make_shared<Interest>(*interestA);
231 interestC->setMaxSuffixComponents(4);
232 insertResult = pit.insert(*interestC);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700233 BOOST_CHECK_EQUAL(insertResult.second, true);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600234 BOOST_CHECK_EQUAL(pit.size(), 3);
Junxiao Shi57f0f312014-03-16 11:52:20 -0700235
Junxiao Shi30d35992014-04-03 14:51:58 -0700236 // A+KeyLocator1
237 shared_ptr<Interest> interestD = make_shared<Interest>(*interestA);
238 interestD->setPublisherPublicKeyLocator(keyLocator1);
239 insertResult = pit.insert(*interestD);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700240 BOOST_CHECK_EQUAL(insertResult.second, true);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600241 BOOST_CHECK_EQUAL(pit.size(), 4);
Junxiao Shi57f0f312014-03-16 11:52:20 -0700242
Junxiao Shi30d35992014-04-03 14:51:58 -0700243 // A+KeyLocator2
244 shared_ptr<Interest> interestE = make_shared<Interest>(*interestA);
245 interestE->setPublisherPublicKeyLocator(keyLocator2);
246 insertResult = pit.insert(*interestE);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700247 BOOST_CHECK_EQUAL(insertResult.second, true);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600248 BOOST_CHECK_EQUAL(pit.size(), 5);
Junxiao Shi57f0f312014-03-16 11:52:20 -0700249
Junxiao Shi30d35992014-04-03 14:51:58 -0700250 // A+Exclude1
251 shared_ptr<Interest> interestF = make_shared<Interest>(*interestA);
252 interestF->setExclude(exclude1);
253 insertResult = pit.insert(*interestF);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700254 BOOST_CHECK_EQUAL(insertResult.second, true);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600255 BOOST_CHECK_EQUAL(pit.size(), 6);
Junxiao Shi57f0f312014-03-16 11:52:20 -0700256
Junxiao Shi30d35992014-04-03 14:51:58 -0700257 // A+Exclude2
258 shared_ptr<Interest> interestG = make_shared<Interest>(*interestA);
259 interestG->setExclude(exclude2);
260 insertResult = pit.insert(*interestG);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700261 BOOST_CHECK_EQUAL(insertResult.second, true);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600262 BOOST_CHECK_EQUAL(pit.size(), 7);
263
Junxiao Shi30d35992014-04-03 14:51:58 -0700264 // A+ChildSelector0
265 shared_ptr<Interest> interestH = make_shared<Interest>(*interestA);
266 interestH->setChildSelector(0);
267 insertResult = pit.insert(*interestH);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700268 BOOST_CHECK_EQUAL(insertResult.second, true);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600269 BOOST_CHECK_EQUAL(pit.size(), 8);
Junxiao Shi30d35992014-04-03 14:51:58 -0700270
271 // A+ChildSelector1
272 shared_ptr<Interest> interestI = make_shared<Interest>(*interestA);
273 interestI->setChildSelector(1);
274 insertResult = pit.insert(*interestI);
275 BOOST_CHECK_EQUAL(insertResult.second, true);
276 BOOST_CHECK_EQUAL(pit.size(), 9);
277
278 // A+MustBeFresh
279 shared_ptr<Interest> interestJ = make_shared<Interest>(*interestA);
280 interestJ->setMustBeFresh(true);
281 insertResult = pit.insert(*interestJ);
282 BOOST_CHECK_EQUAL(insertResult.second, true);
283 BOOST_CHECK_EQUAL(pit.size(), 10);
284
285 // A+InterestLifetime
286 shared_ptr<Interest> interestK = make_shared<Interest>(*interestA);
287 interestK->setInterestLifetime(time::milliseconds(1000));
288 insertResult = pit.insert(*interestK);
289 BOOST_CHECK_EQUAL(insertResult.second, false);// only guiders differ
290 BOOST_CHECK_EQUAL(pit.size(), 10);
291
292 // A+Nonce
293 shared_ptr<Interest> interestL = make_shared<Interest>(*interestA);
294 interestL->setNonce(2192);
295 insertResult = pit.insert(*interestL);
296 BOOST_CHECK_EQUAL(insertResult.second, false);// only guiders differ
297 BOOST_CHECK_EQUAL(pit.size(), 10);
298
299 // different Name+Exclude1
300 shared_ptr<Interest> interestM = make_shared<Interest>(name2);
301 interestM->setExclude(exclude1);
302 insertResult = pit.insert(*interestM);
303 BOOST_CHECK_EQUAL(insertResult.second, true);
304 BOOST_CHECK_EQUAL(pit.size(), 11);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700305}
306
Haowei Yuan78c84d12014-02-27 15:35:13 -0600307BOOST_AUTO_TEST_CASE(Erase)
Junxiao Shicbba04c2014-01-26 14:21:22 -0700308{
Alexander Afanasyev28d586a2014-07-10 20:10:54 -0700309 shared_ptr<Interest> interest = makeInterest("/z88Admz6A2");
Junxiao Shicbba04c2014-01-26 14:21:22 -0700310
Haowei Yuan78c84d12014-02-27 15:35:13 -0600311 NameTree nameTree(16);
312 Pit pit(nameTree);
313
Junxiao Shi4846f372016-04-05 13:39:30 -0700314 std::pair<shared_ptr<Entry>, bool> insertResult;
Junxiao Shi57f0f312014-03-16 11:52:20 -0700315
Haowei Yuan78c84d12014-02-27 15:35:13 -0600316 BOOST_CHECK_EQUAL(pit.size(), 0);
317
Alexander Afanasyev28d586a2014-07-10 20:10:54 -0700318 insertResult = pit.insert(*interest);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700319 BOOST_CHECK_EQUAL(insertResult.second, true);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600320 BOOST_CHECK_EQUAL(pit.size(), 1);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700321 BOOST_CHECK(pit.find(*interest) != nullptr);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700322
Alexander Afanasyev28d586a2014-07-10 20:10:54 -0700323 insertResult = pit.insert(*interest);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700324 BOOST_CHECK_EQUAL(insertResult.second, false);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600325 BOOST_CHECK_EQUAL(pit.size(), 1);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700326 BOOST_CHECK(pit.find(*interest) != nullptr);
Junxiao Shi57f0f312014-03-16 11:52:20 -0700327
Haowei Yuan78c84d12014-02-27 15:35:13 -0600328 pit.erase(insertResult.first);
329 BOOST_CHECK_EQUAL(pit.size(), 0);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700330 BOOST_CHECK(pit.find(*interest) == nullptr);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700331
Alexander Afanasyev28d586a2014-07-10 20:10:54 -0700332 insertResult = pit.insert(*interest);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700333 BOOST_CHECK_EQUAL(insertResult.second, true);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600334 BOOST_CHECK_EQUAL(pit.size(), 1);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700335 BOOST_CHECK(pit.find(*interest) != nullptr);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600336}
Junxiao Shicbba04c2014-01-26 14:21:22 -0700337
Junxiao Shiee5a4442014-07-27 17:13:43 -0700338BOOST_AUTO_TEST_CASE(EraseNameTreeEntry)
339{
340 NameTree nameTree;
341 Pit pit(nameTree);
342 size_t nNameTreeEntriesBefore = nameTree.size();
343
344 shared_ptr<Interest> interest = makeInterest("/37xWVvQ2K");
Junxiao Shi4846f372016-04-05 13:39:30 -0700345 shared_ptr<Entry> entry = pit.insert(*interest).first;
Junxiao Shiee5a4442014-07-27 17:13:43 -0700346 pit.erase(entry);
347 BOOST_CHECK_EQUAL(nameTree.size(), nNameTreeEntriesBefore);
348}
349
Junxiao Shicbba04c2014-01-26 14:21:22 -0700350BOOST_AUTO_TEST_CASE(FindAllDataMatches)
351{
Haowei Yuane1079fc2014-03-08 14:41:25 -0600352 Name nameA ("ndn:/A");
353 Name nameAB ("ndn:/A/B");
354 Name nameABC ("ndn:/A/B/C");
355 Name nameABCD("ndn:/A/B/C/D");
356 Name nameD ("ndn:/D");
357
Alexander Afanasyev28d586a2014-07-10 20:10:54 -0700358 shared_ptr<Interest> interestA = makeInterest(nameA );
359 shared_ptr<Interest> interestABC = makeInterest(nameABC);
360 shared_ptr<Interest> interestD = makeInterest(nameD );
Junxiao Shicbba04c2014-01-26 14:21:22 -0700361
Haowei Yuan78c84d12014-02-27 15:35:13 -0600362 NameTree nameTree(16);
363 Pit pit(nameTree);
Haowei Yuane1079fc2014-03-08 14:41:25 -0600364 int count = 0;
Junxiao Shi57f0f312014-03-16 11:52:20 -0700365
Haowei Yuan78c84d12014-02-27 15:35:13 -0600366 BOOST_CHECK_EQUAL(pit.size(), 0);
367
Alexander Afanasyev28d586a2014-07-10 20:10:54 -0700368 pit.insert(*interestA );
369 pit.insert(*interestABC);
370 pit.insert(*interestD );
Haowei Yuane1079fc2014-03-08 14:41:25 -0600371
372 nameTree.lookup(nameABCD); // make sure /A/B/C/D is in nameTree
Junxiao Shi57f0f312014-03-16 11:52:20 -0700373
Haowei Yuan78c84d12014-02-27 15:35:13 -0600374 BOOST_CHECK_EQUAL(pit.size(), 3);
375
Alexander Afanasyevc026d252014-06-16 11:14:15 -0700376 shared_ptr<Data> data = makeData(nameABCD);
Junxiao Shi57f0f312014-03-16 11:52:20 -0700377
Junxiao Shi4846f372016-04-05 13:39:30 -0700378 DataMatchResult matches = pit.findAllDataMatches(*data);
Junxiao Shi57f0f312014-03-16 11:52:20 -0700379
Haowei Yuane1079fc2014-03-08 14:41:25 -0600380 bool hasA = false;
381 bool hasAB = false;
382 bool hasABC = false;
383 bool hasD = false;
384
Junxiao Shi4846f372016-04-05 13:39:30 -0700385 for (const shared_ptr<Entry>& entry : matches) {
Junxiao Shicbba04c2014-01-26 14:21:22 -0700386 ++count;
Haowei Yuane1079fc2014-03-08 14:41:25 -0600387
388 if (entry->getName().equals(nameA ))
389 hasA = true;
390
391 if (entry->getName().equals(nameAB))
392 hasAB = true;
Junxiao Shi57f0f312014-03-16 11:52:20 -0700393
Haowei Yuane1079fc2014-03-08 14:41:25 -0600394 if (entry->getName().equals(nameABC))
395 hasABC = true;
Junxiao Shi57f0f312014-03-16 11:52:20 -0700396
Haowei Yuane1079fc2014-03-08 14:41:25 -0600397 if (entry->getName().equals(nameD))
398 hasD = true;
Junxiao Shicbba04c2014-01-26 14:21:22 -0700399 }
Haowei Yuane1079fc2014-03-08 14:41:25 -0600400 BOOST_CHECK_EQUAL(hasA , true);
401 BOOST_CHECK_EQUAL(hasAB , false);
402 BOOST_CHECK_EQUAL(hasABC, true);
403 BOOST_CHECK_EQUAL(hasD , false);
404
Junxiao Shicbba04c2014-01-26 14:21:22 -0700405 BOOST_CHECK_EQUAL(count, 2);
Junxiao Shi4370fde2016-02-24 12:20:46 -0700406}
Haowei Yuane1079fc2014-03-08 14:41:25 -0600407
Junxiao Shi4370fde2016-02-24 12:20:46 -0700408BOOST_AUTO_TEST_CASE(MatchFullName) // Bug 3363
409{
410 NameTree nameTree(16);
411 Pit pit(nameTree);
412
413 shared_ptr<Data> data = makeData("/A");
414 Name fullName = data->getFullName();
415 shared_ptr<Interest> interest = makeInterest(fullName);
416
417 pit.insert(*interest);
Junxiao Shi4846f372016-04-05 13:39:30 -0700418 DataMatchResult matches = pit.findAllDataMatches(*data);
Junxiao Shi4370fde2016-02-24 12:20:46 -0700419
420 BOOST_REQUIRE_EQUAL(std::distance(matches.begin(), matches.end()), 1);
Junxiao Shi4846f372016-04-05 13:39:30 -0700421 shared_ptr<Entry> found = *matches.begin();
Junxiao Shi4370fde2016-02-24 12:20:46 -0700422 BOOST_CHECK_EQUAL(found->getName(), fullName);
Junxiao Shicbba04c2014-01-26 14:21:22 -0700423}
424
Alexander Afanasyev750fa1c2015-01-03 17:28:31 -0800425BOOST_AUTO_TEST_CASE(Iterator)
426{
427 NameTree nameTree(16);
428 Pit pit(nameTree);
429
430 shared_ptr<Interest> interestA = makeInterest("/A");
431 shared_ptr<Interest> interestABC1 = makeInterest("/A/B/C");
432 shared_ptr<Interest> interestABC2 = makeInterest("/A/B/C");
433 interestABC2->setSelectors(ndn::Selectors().setMinSuffixComponents(10));
434 shared_ptr<Interest> interestD = makeInterest("/D");
435
436 BOOST_CHECK_EQUAL(pit.size(), 0);
437 BOOST_CHECK(pit.begin() == pit.end());
438
439 pit.insert(*interestABC1);
440 BOOST_CHECK_EQUAL(pit.size(), 1);
441 BOOST_CHECK(pit.begin() != pit.end());
442 BOOST_CHECK(pit.begin()->getInterest() == *interestABC1);
443 BOOST_CHECK((*pit.begin()).getInterest() == *interestABC1);
444
445 auto i = pit.begin();
446 auto j = pit.begin();
447 BOOST_CHECK(++i == pit.end());
448 BOOST_CHECK(j++ == pit.begin());
449 BOOST_CHECK(j == pit.end());
450
451 pit.insert(*interestA);
452 pit.insert(*interestABC2);
453 pit.insert(*interestD);
454
455 std::set<const Interest*> expected = {&*interestA, &*interestABC1, &*interestABC2, &*interestD};
456 std::set<const Interest*> actual;
457 for (const auto& pitEntry : pit) {
458 actual.insert(&pitEntry.getInterest());
459 }
460 BOOST_CHECK(actual == expected);
461 for (auto actualIt = actual.begin(), expectedIt = expected.begin();
462 actualIt != actual.end() && expectedIt != expected.end(); ++actualIt, ++expectedIt) {
463 BOOST_CHECK_EQUAL(**actualIt, **expectedIt);
464 }
465}
466
Junxiao Shicbba04c2014-01-26 14:21:22 -0700467BOOST_AUTO_TEST_SUITE_END()
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700468BOOST_AUTO_TEST_SUITE_END()
Junxiao Shicbba04c2014-01-26 14:21:22 -0700469
Junxiao Shid9ee45c2014-02-27 15:38:11 -0700470} // namespace tests
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -0800471} // namespace pit
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800472} // namespace nfd