blob: c059756676b2186e64d966eee152d01105cbeecc [file] [log] [blame]
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -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 Zhangcb6e05f2015-04-20 15:51:47 -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 Zhangcb6e05f2015-04-20 15:51:47 -050026#include "table/cs-policy-priority-fifo.hpp"
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050027
Junxiao Shi9222f362019-04-16 15:15:23 +000028#include "tests/daemon/table/cs-fixture.hpp"
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050029
30namespace nfd {
31namespace cs {
32namespace tests {
33
Davide Pesavento97210d52016-10-14 15:45:48 +020034BOOST_AUTO_TEST_SUITE(Table)
35BOOST_AUTO_TEST_SUITE(TestCsPriorityFifo)
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -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("priority_fifo"), 1);
41}
42
Junxiao Shi9222f362019-04-16 15:15:23 +000043BOOST_FIXTURE_TEST_CASE(EvictOne, CsFixture)
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050044{
Davide Pesavento01f8dba2015-09-19 21:11:45 +020045 cs.setPolicy(make_unique<PriorityFifoPolicy>());
Junxiao Shi9222f362019-04-16 15:15:23 +000046 cs.setLimit(3);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050047
Junxiao Shi9222f362019-04-16 15:15:23 +000048 insert(1, "/A", [] (Data& data) { data.setFreshnessPeriod(99999_ms); });
49 insert(2, "/B", [] (Data& data) { data.setFreshnessPeriod(10_ms); });
50 insert(3, "/C", [] (Data& data) { data.setFreshnessPeriod(99999_ms); }, true);
51 advanceClocks(11_ms);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050052
Junxiao Shi9222f362019-04-16 15:15:23 +000053 // evict /C (unsolicited)
54 insert(4, "/D", [] (Data& data) { data.setFreshnessPeriod(99999_ms); });
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050055 BOOST_CHECK_EQUAL(cs.size(), 3);
Junxiao Shi9222f362019-04-16 15:15:23 +000056 startInterest("/C");
57 CHECK_CS_FIND(0);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050058
Junxiao Shi9222f362019-04-16 15:15:23 +000059 // evict /B (stale)
60 insert(5, "/E", [] (Data& data) { data.setFreshnessPeriod(99999_ms); });
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050061 BOOST_CHECK_EQUAL(cs.size(), 3);
Junxiao Shi9222f362019-04-16 15:15:23 +000062 startInterest("/B");
63 CHECK_CS_FIND(0);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050064
Junxiao Shi9222f362019-04-16 15:15:23 +000065 // evict /F (fresh)
66 insert(6, "/F", [] (Data& data) { data.setFreshnessPeriod(99999_ms); });
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050067 BOOST_CHECK_EQUAL(cs.size(), 3);
Junxiao Shi9222f362019-04-16 15:15:23 +000068 startInterest("/A");
69 CHECK_CS_FIND(0);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050070}
71
Junxiao Shi9222f362019-04-16 15:15:23 +000072BOOST_FIXTURE_TEST_CASE(Refresh, CsFixture)
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050073{
Davide Pesavento01f8dba2015-09-19 21:11:45 +020074 cs.setPolicy(make_unique<PriorityFifoPolicy>());
Junxiao Shi9222f362019-04-16 15:15:23 +000075 cs.setLimit(3);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050076
Junxiao Shi9222f362019-04-16 15:15:23 +000077 insert(1, "/A", [] (Data& data) { data.setFreshnessPeriod(99999_ms); });
78 insert(2, "/B", [] (Data& data) { data.setFreshnessPeriod(10_ms); });
79 insert(3, "/C", [] (Data& data) { data.setFreshnessPeriod(10_ms); });
80 advanceClocks(11_ms);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050081
Junxiao Shi9222f362019-04-16 15:15:23 +000082 // refresh /B
83 insert(12, "/B", [] (Data& data) { data.setFreshnessPeriod(0_ms); });
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050084 BOOST_CHECK_EQUAL(cs.size(), 3);
Junxiao Shi9222f362019-04-16 15:15:23 +000085 startInterest("/A");
86 CHECK_CS_FIND(1);
87 startInterest("/B");
88 CHECK_CS_FIND(12);
89 startInterest("/C");
90 CHECK_CS_FIND(3);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050091
Junxiao Shi9222f362019-04-16 15:15:23 +000092 // evict /C from stale queue
93 insert(4, "/D", [] (Data& data) { data.setFreshnessPeriod(99999_ms); });
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050094 BOOST_CHECK_EQUAL(cs.size(), 3);
Junxiao Shi9222f362019-04-16 15:15:23 +000095 startInterest("/C");
96 CHECK_CS_FIND(0);
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -050097}
98
Davide Pesavento97210d52016-10-14 15:45:48 +020099BOOST_AUTO_TEST_SUITE_END() // TestCsPriorityFifo
100BOOST_AUTO_TEST_SUITE_END() // Table
Minsheng Zhangcb6e05f2015-04-20 15:51:47 -0500101
102} // namespace tests
103} // namespace cs
104} // namespace nfd