blob: ed4fa7ca27c4bd99a212023b2ff40419c81765a4 [file] [log] [blame]
Minsheng Zhang03152692015-07-28 11:53:21 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shibb6146e2017-07-26 23:07:52 +00002/*
Davide Pesaventocf7db2f2019-03-24 23:17:28 -04003 * Copyright (c) 2014-2019, Regents of the University of California,
Minsheng Zhang03152692015-07-28 11:53:21 -05004 * 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 Zhang03152692015-07-28 11:53:21 -050026#include "table/cs-policy-lru.hpp"
Minsheng Zhang03152692015-07-28 11:53:21 -050027
Junxiao Shi9222f362019-04-16 15:15:23 +000028#include "tests/daemon/table/cs-fixture.hpp"
Minsheng Zhang03152692015-07-28 11:53:21 -050029
30namespace nfd {
31namespace cs {
32namespace tests {
33
Davide Pesavento97210d52016-10-14 15:45:48 +020034BOOST_AUTO_TEST_SUITE(Table)
35BOOST_AUTO_TEST_SUITE(TestCsLru)
Minsheng Zhang03152692015-07-28 11:53:21 -050036
Junxiao Shi7ee00fb2016-12-04 21:23:00 +000037BOOST_AUTO_TEST_CASE(Registration)
38{
39 std::set<std::string> policyNames = Policy::getPolicyNames();
40 BOOST_CHECK_EQUAL(policyNames.count("lru"), 1);
41}
42
Junxiao Shi9222f362019-04-16 15:15:23 +000043BOOST_FIXTURE_TEST_CASE(EvictOne, CsFixture)
Minsheng Zhang03152692015-07-28 11:53:21 -050044{
Davide Pesavento01f8dba2015-09-19 21:11:45 +020045 cs.setPolicy(make_unique<LruPolicy>());
Junxiao Shi9222f362019-04-16 15:15:23 +000046 cs.setLimit(3);
Minsheng Zhang03152692015-07-28 11:53:21 -050047
Junxiao Shi9222f362019-04-16 15:15:23 +000048 insert(1, "/A");
49 insert(2, "/B");
50 insert(3, "/C");
Minsheng Zhang03152692015-07-28 11:53:21 -050051 BOOST_CHECK_EQUAL(cs.size(), 3);
52
53 // evict A
Junxiao Shi9222f362019-04-16 15:15:23 +000054 insert(4, "/D");
Minsheng Zhang03152692015-07-28 11:53:21 -050055 BOOST_CHECK_EQUAL(cs.size(), 3);
Junxiao Shi9222f362019-04-16 15:15:23 +000056 startInterest("/A");
57 CHECK_CS_FIND(0);
Minsheng Zhang03152692015-07-28 11:53:21 -050058
59 // use C then B
Junxiao Shi9222f362019-04-16 15:15:23 +000060 startInterest("/C");
61 CHECK_CS_FIND(3);
62 startInterest("/B");
63 CHECK_CS_FIND(2);
Minsheng Zhang03152692015-07-28 11:53:21 -050064
65 // evict D then C
Junxiao Shi9222f362019-04-16 15:15:23 +000066 insert(5, "/E");
Minsheng Zhang03152692015-07-28 11:53:21 -050067 BOOST_CHECK_EQUAL(cs.size(), 3);
Junxiao Shi9222f362019-04-16 15:15:23 +000068 startInterest("/D");
69 CHECK_CS_FIND(0);
70 insert(6, "/F");
Minsheng Zhang03152692015-07-28 11:53:21 -050071 BOOST_CHECK_EQUAL(cs.size(), 3);
Junxiao Shi9222f362019-04-16 15:15:23 +000072 startInterest("/C");
73 CHECK_CS_FIND(0);
Minsheng Zhang03152692015-07-28 11:53:21 -050074
75 // refresh B
Junxiao Shi9222f362019-04-16 15:15:23 +000076 insert(12, "/B");
Minsheng Zhang03152692015-07-28 11:53:21 -050077 // evict E
Junxiao Shi9222f362019-04-16 15:15:23 +000078 insert(7, "/G");
Minsheng Zhang03152692015-07-28 11:53:21 -050079 BOOST_CHECK_EQUAL(cs.size(), 3);
Junxiao Shi9222f362019-04-16 15:15:23 +000080 startInterest("/E");
81 CHECK_CS_FIND(0);
Minsheng Zhang03152692015-07-28 11:53:21 -050082}
83
Davide Pesavento97210d52016-10-14 15:45:48 +020084BOOST_AUTO_TEST_SUITE_END() // TestCsLru
85BOOST_AUTO_TEST_SUITE_END() // Table
Minsheng Zhang03152692015-07-28 11:53:21 -050086
87} // namespace tests
88} // namespace cs
89} // namespace nfd