blob: a4e76a8f523bc04b79db4a5b4601fc2043870934 [file] [log] [blame]
Minsheng Zhang03152692015-07-28 11:53:21 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
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.
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"
Junxiao Shi0de23a22015-12-03 20:07:02 +000027#include "table/cs.hpp"
Minsheng Zhang03152692015-07-28 11:53:21 -050028#include <ndn-cxx/util/crypto.hpp>
29
30#include "tests/test-common.hpp"
31
32namespace nfd {
33namespace cs {
34namespace tests {
35
36using namespace nfd::tests;
Minsheng Zhang03152692015-07-28 11:53:21 -050037
38BOOST_AUTO_TEST_SUITE(CsLru)
39
40BOOST_FIXTURE_TEST_CASE(EvictOneLRU, UnitTestTimeFixture)
41{
42 Cs cs(3);
Davide Pesavento01f8dba2015-09-19 21:11:45 +020043 cs.setPolicy(make_unique<LruPolicy>());
Minsheng Zhang03152692015-07-28 11:53:21 -050044
45 cs.insert(*makeData("ndn:/A"));
46 cs.insert(*makeData("ndn:/B"));
47 cs.insert(*makeData("ndn:/C"));
48 BOOST_CHECK_EQUAL(cs.size(), 3);
49
50 // evict A
51 cs.insert(*makeData("ndn:/D"));
52 BOOST_CHECK_EQUAL(cs.size(), 3);
53 cs.find(Interest("ndn:/A"),
54 bind([] { BOOST_CHECK(false); }),
55 bind([] { BOOST_CHECK(true); }));
56
57 // use C then B
58 cs.find(Interest("ndn:/C"),
59 bind([] { BOOST_CHECK(true); }),
60 bind([] { BOOST_CHECK(false); }));
61 cs.find(Interest("ndn:/B"),
62 bind([] { BOOST_CHECK(true); }),
63 bind([] { BOOST_CHECK(false); }));
64
65 // evict D then C
66 cs.insert(*makeData("ndn:/E"));
67 BOOST_CHECK_EQUAL(cs.size(), 3);
68 cs.find(Interest("ndn:/D"),
69 bind([] { BOOST_CHECK(false); }),
70 bind([] { BOOST_CHECK(true); }));
71 cs.insert(*makeData("ndn:/F"));
72 BOOST_CHECK_EQUAL(cs.size(), 3);
73 cs.find(Interest("ndn:/C"),
74 bind([] { BOOST_CHECK(false); }),
75 bind([] { BOOST_CHECK(true); }));
76
77 // refresh B
78 cs.insert(*makeData("ndn:/B"));
79 // evict E
80 cs.insert(*makeData("ndn:/G"));
81 BOOST_CHECK_EQUAL(cs.size(), 3);
82 cs.find(Interest("ndn:/E"),
83 bind([] { BOOST_CHECK(false); }),
84 bind([] { BOOST_CHECK(true); }));
85}
86
87BOOST_AUTO_TEST_SUITE_END()
88
89} // namespace tests
90} // namespace cs
91} // namespace nfd