Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | b283128 | 2015-01-09 14:55:58 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2015, Regents of the University of California, |
| 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. |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -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/>. |
| 24 | */ |
| 25 | |
| 26 | #include "table/dead-nonce-list.hpp" |
| 27 | |
| 28 | #include "tests/test-common.hpp" |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 29 | |
| 30 | namespace nfd { |
| 31 | namespace tests { |
| 32 | |
| 33 | BOOST_FIXTURE_TEST_SUITE(TableDeadNonceList, BaseFixture) |
| 34 | |
| 35 | BOOST_AUTO_TEST_CASE(Basic) |
| 36 | { |
| 37 | Name nameA("ndn:/A"); |
| 38 | Name nameB("ndn:/B"); |
| 39 | const uint32_t nonce1 = 0x53b4eaa8; |
| 40 | const uint32_t nonce2 = 0x1f46372b; |
| 41 | |
| 42 | DeadNonceList dnl; |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 43 | BOOST_CHECK_EQUAL(dnl.size(), 0); |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 44 | BOOST_CHECK_EQUAL(dnl.has(nameA, nonce1), false); |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 45 | |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 46 | dnl.add(nameA, nonce1); |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 47 | BOOST_CHECK_EQUAL(dnl.size(), 1); |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 48 | BOOST_CHECK_EQUAL(dnl.has(nameA, nonce1), true); |
| 49 | BOOST_CHECK_EQUAL(dnl.has(nameA, nonce2), false); |
| 50 | BOOST_CHECK_EQUAL(dnl.has(nameB, nonce1), false); |
| 51 | } |
| 52 | |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 53 | BOOST_AUTO_TEST_CASE(MinLifetime) |
| 54 | { |
| 55 | BOOST_CHECK_THROW(DeadNonceList dnl(time::milliseconds::zero()), std::invalid_argument); |
| 56 | } |
| 57 | |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 58 | /// A Fixture that periodically inserts Nonces |
Junxiao Shi | b283128 | 2015-01-09 14:55:58 -0700 | [diff] [blame] | 59 | class PeriodicalInsertionFixture : public UnitTestTimeFixture |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 60 | { |
| 61 | protected: |
| 62 | PeriodicalInsertionFixture() |
| 63 | : dnl(LIFETIME) |
| 64 | , name("ndn:/N") |
| 65 | , addNonceBatch(0) |
| 66 | , addNonceInterval(LIFETIME / DeadNonceList::EXPECTED_MARK_COUNT) |
Junxiao Shi | b283128 | 2015-01-09 14:55:58 -0700 | [diff] [blame] | 67 | , timeUnit(addNonceInterval / 2) |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 68 | { |
| 69 | this->addNonce(); |
| 70 | } |
| 71 | |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 72 | void |
| 73 | setRate(size_t nNoncesPerLifetime) |
| 74 | { |
| 75 | addNonceBatch = nNoncesPerLifetime / DeadNonceList::EXPECTED_MARK_COUNT; |
| 76 | } |
| 77 | |
| 78 | void |
| 79 | addNonce() |
| 80 | { |
| 81 | for (size_t i = 0; i < addNonceBatch; ++i) { |
| 82 | dnl.add(name, ++lastNonce); |
| 83 | } |
| 84 | |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 85 | if (addNonceInterval > time::nanoseconds::zero()) { |
| 86 | addNonceEvent = scheduler::schedule(addNonceInterval, |
| 87 | bind(&PeriodicalInsertionFixture::addNonce, this)); |
| 88 | } |
| 89 | } |
| 90 | |
Junxiao Shi | b283128 | 2015-01-09 14:55:58 -0700 | [diff] [blame] | 91 | /** \brief advance clocks by LIFETIME*t |
| 92 | */ |
| 93 | void |
| 94 | advanceClocksByLifetime(float t) |
| 95 | { |
| 96 | this->advanceClocks(timeUnit, time::duration_cast<time::nanoseconds>(LIFETIME * t)); |
| 97 | } |
| 98 | |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 99 | protected: |
| 100 | static const time::nanoseconds LIFETIME; |
| 101 | DeadNonceList dnl; |
| 102 | Name name; |
| 103 | uint32_t lastNonce; |
| 104 | size_t addNonceBatch; |
| 105 | time::nanoseconds addNonceInterval; |
Junxiao Shi | b283128 | 2015-01-09 14:55:58 -0700 | [diff] [blame] | 106 | time::nanoseconds timeUnit; |
| 107 | scheduler::ScopedEventId addNonceEvent; |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 108 | }; |
| 109 | const time::nanoseconds PeriodicalInsertionFixture::LIFETIME = time::milliseconds(200); |
| 110 | |
| 111 | BOOST_FIXTURE_TEST_CASE(Lifetime, PeriodicalInsertionFixture) |
| 112 | { |
Junxiao Shi | a110f26 | 2014-10-12 12:35:20 -0700 | [diff] [blame] | 113 | BOOST_CHECK_EQUAL(dnl.getLifetime(), LIFETIME); |
| 114 | |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 115 | const int RATE = DeadNonceList::INITIAL_CAPACITY / 2; |
| 116 | this->setRate(RATE); |
Junxiao Shi | b283128 | 2015-01-09 14:55:58 -0700 | [diff] [blame] | 117 | this->advanceClocksByLifetime(10.0); |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 118 | |
| 119 | Name nameC("ndn:/C"); |
| 120 | const uint32_t nonceC = 0x25390656; |
| 121 | BOOST_CHECK_EQUAL(dnl.has(nameC, nonceC), false); |
| 122 | dnl.add(nameC, nonceC); |
| 123 | BOOST_CHECK_EQUAL(dnl.has(nameC, nonceC), true); |
| 124 | |
Junxiao Shi | b283128 | 2015-01-09 14:55:58 -0700 | [diff] [blame] | 125 | this->advanceClocksByLifetime(0.5); // -50%, entry should exist |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 126 | BOOST_CHECK_EQUAL(dnl.has(nameC, nonceC), true); |
| 127 | |
Junxiao Shi | b283128 | 2015-01-09 14:55:58 -0700 | [diff] [blame] | 128 | this->advanceClocksByLifetime(1.0); // +50%, entry should be gone |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 129 | BOOST_CHECK_EQUAL(dnl.has(nameC, nonceC), false); |
| 130 | } |
| 131 | |
| 132 | BOOST_FIXTURE_TEST_CASE(CapacityDown, PeriodicalInsertionFixture) |
| 133 | { |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 134 | ssize_t cap0 = dnl.m_capacity; |
| 135 | |
| 136 | const int RATE = DeadNonceList::INITIAL_CAPACITY / 3; |
| 137 | this->setRate(RATE); |
Junxiao Shi | b283128 | 2015-01-09 14:55:58 -0700 | [diff] [blame] | 138 | this->advanceClocksByLifetime(10.0); |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 139 | |
| 140 | ssize_t cap1 = dnl.m_capacity; |
| 141 | BOOST_CHECK_LT(std::abs(cap1 - RATE), std::abs(cap0 - RATE)); |
| 142 | } |
| 143 | |
| 144 | BOOST_FIXTURE_TEST_CASE(CapacityUp, PeriodicalInsertionFixture) |
| 145 | { |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 146 | ssize_t cap0 = dnl.m_capacity; |
| 147 | |
| 148 | const int RATE = DeadNonceList::INITIAL_CAPACITY * 3; |
| 149 | this->setRate(RATE); |
Junxiao Shi | b283128 | 2015-01-09 14:55:58 -0700 | [diff] [blame] | 150 | this->advanceClocksByLifetime(10.0); |
Junxiao Shi | 0e42c57 | 2014-10-05 20:33:48 -0700 | [diff] [blame] | 151 | |
| 152 | ssize_t cap1 = dnl.m_capacity; |
| 153 | BOOST_CHECK_LT(std::abs(cap1 - RATE), std::abs(cap0 - RATE)); |
| 154 | } |
| 155 | |
| 156 | BOOST_AUTO_TEST_SUITE_END() |
| 157 | |
| 158 | } // namespace tests |
| 159 | } // namespace nfd |