Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | bb6146e | 2017-07-26 23:07:52 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [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. |
| 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 | |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 26 | #include "table/cs-policy-lru.hpp" |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 27 | |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 28 | #include "tests/daemon/table/cs-fixture.hpp" |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 29 | |
| 30 | namespace nfd { |
| 31 | namespace cs { |
| 32 | namespace tests { |
| 33 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 34 | BOOST_AUTO_TEST_SUITE(Table) |
| 35 | BOOST_AUTO_TEST_SUITE(TestCsLru) |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 36 | |
Junxiao Shi | 7ee00fb | 2016-12-04 21:23:00 +0000 | [diff] [blame] | 37 | BOOST_AUTO_TEST_CASE(Registration) |
| 38 | { |
| 39 | std::set<std::string> policyNames = Policy::getPolicyNames(); |
| 40 | BOOST_CHECK_EQUAL(policyNames.count("lru"), 1); |
| 41 | } |
| 42 | |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 43 | BOOST_FIXTURE_TEST_CASE(EvictOne, CsFixture) |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 44 | { |
Davide Pesavento | 01f8dba | 2015-09-19 21:11:45 +0200 | [diff] [blame] | 45 | cs.setPolicy(make_unique<LruPolicy>()); |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 46 | cs.setLimit(3); |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 47 | |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 48 | insert(1, "/A"); |
| 49 | insert(2, "/B"); |
| 50 | insert(3, "/C"); |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 51 | BOOST_CHECK_EQUAL(cs.size(), 3); |
| 52 | |
| 53 | // evict A |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 54 | insert(4, "/D"); |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 55 | BOOST_CHECK_EQUAL(cs.size(), 3); |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 56 | startInterest("/A"); |
| 57 | CHECK_CS_FIND(0); |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 58 | |
| 59 | // use C then B |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 60 | startInterest("/C"); |
| 61 | CHECK_CS_FIND(3); |
| 62 | startInterest("/B"); |
| 63 | CHECK_CS_FIND(2); |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 64 | |
| 65 | // evict D then C |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 66 | insert(5, "/E"); |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 67 | BOOST_CHECK_EQUAL(cs.size(), 3); |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 68 | startInterest("/D"); |
| 69 | CHECK_CS_FIND(0); |
| 70 | insert(6, "/F"); |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 71 | BOOST_CHECK_EQUAL(cs.size(), 3); |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 72 | startInterest("/C"); |
| 73 | CHECK_CS_FIND(0); |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 74 | |
| 75 | // refresh B |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 76 | insert(12, "/B"); |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 77 | // evict E |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 78 | insert(7, "/G"); |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 79 | BOOST_CHECK_EQUAL(cs.size(), 3); |
Junxiao Shi | 9222f36 | 2019-04-16 15:15:23 +0000 | [diff] [blame^] | 80 | startInterest("/E"); |
| 81 | CHECK_CS_FIND(0); |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 82 | } |
| 83 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 84 | BOOST_AUTO_TEST_SUITE_END() // TestCsLru |
| 85 | BOOST_AUTO_TEST_SUITE_END() // Table |
Minsheng Zhang | 0315269 | 2015-07-28 11:53:21 -0500 | [diff] [blame] | 86 | |
| 87 | } // namespace tests |
| 88 | } // namespace cs |
| 89 | } // namespace nfd |