blob: d91f7ad3ab3c9ee5a6e0c0eab9db7e46411bdc96 [file] [log] [blame]
Jiewen Tan99135962014-09-20 02:18:53 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2014 Regents of the University of California.
4 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
7 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20 */
21
22#include "util/in-memory-storage-lru.hpp"
23#include "security/key-chain.hpp"
24
25#include "boost-test.hpp"
26#include "../test-make-interest-data.hpp"
27
28namespace ndn {
29namespace util {
30
Alexander Afanasyev3ccc6f72014-10-12 12:19:09 -070031BOOST_AUTO_TEST_SUITE(UtilInMemoryStorage)
32BOOST_AUTO_TEST_SUITE(Lru)
Jiewen Tan99135962014-09-20 02:18:53 -070033
34BOOST_AUTO_TEST_CASE(UsedTimeQueue)
35{
36 InMemoryStorageLru ims;
37
38 Name name1("/insert/1");
39 shared_ptr<Data> data1 = makeData(name1);
40 ims.insert(*data1);
41
42 Name name2("/insert/2");
43 shared_ptr<Data> data2 = makeData(name2);
44 ims.insert(*data2);
45
46 Name name3("/insert/3");
47 shared_ptr<Data> data3 = makeData(name3);
48 ims.insert(*data3);
49
50 shared_ptr<Interest> interest1 = makeInterest(name1);
51 shared_ptr<Interest> interest2 = makeInterest(name2);
52 shared_ptr<Interest> interest3 = makeInterest(name3);
53
54 ims.find(*interest1);
55 ims.find(*interest2);
56 ims.find(*interest3);
57 ims.find(*interest1);
58 ims.find(*interest3);
59 ims.find(*interest3);
60
61 ims.evictItem();
62 BOOST_CHECK_EQUAL(ims.size(), 2);
63
64 shared_ptr<const Data> found2 = ims.find(*interest2);
65 BOOST_CHECK(!static_cast<bool>(found2));
66
67 shared_ptr<const Data> found1 = ims.find(*interest1);
68 BOOST_CHECK_EQUAL(found1->getName(), name1);
69 shared_ptr<const Data> found3 = ims.find(*interest3);
70 BOOST_CHECK_EQUAL(found3->getName(), name3);
71}
72
73BOOST_AUTO_TEST_CASE(UsedTimeQueue2)
74{
75 InMemoryStorageLru ims;
76
77 Name name1("/insert/1");
78 shared_ptr<Data> data = makeData(name1);
79 ims.insert(*data);
80
81 Name name2("/insert/2");
82 shared_ptr<Data> data2 = makeData(name2);
83 ims.insert(*data2);
84
85 Name name3("/insert/3");
86 shared_ptr<Data> data3 = makeData(name3);
87 ims.insert(*data3);
88
89 shared_ptr<Interest> interest1 = makeInterest(name1);
90 shared_ptr<Interest> interest2 = makeInterest(name2);
91 shared_ptr<Interest> interest3 = makeInterest(name3);
92
93 ims.find(*interest1);
94 ims.find(*interest2);
95 ims.find(*interest3);
96 ims.find(*interest1);
97 ims.find(*interest3);
98 ims.find(*interest3);
99
100 ims.evictItem();
101 BOOST_CHECK_EQUAL(ims.size(), 2);
102
103 shared_ptr<const Data> found2 = ims.find(*interest2);
104 BOOST_CHECK(!static_cast<bool>(found2));
105
106 shared_ptr<const Data> found1 = ims.find(*interest1);
107 BOOST_CHECK_EQUAL(found1->getName(), name1);
108 shared_ptr<const Data> found3 = ims.find(*interest3);
109 BOOST_CHECK_EQUAL(found3->getName(), name3);
110
111 Name name4("/insert/4");
112 shared_ptr<Data> data4 = makeData(name4);
113 ims.insert(*data4);
114
115 shared_ptr<Interest> interest4 = makeInterest(name4);
116 ims.find(*interest4);
117 ims.find(*interest1);
118 ims.find(*interest3);
119
120 ims.evictItem();
121 BOOST_CHECK_EQUAL(ims.size(), 2);
122
123 shared_ptr<const Data> found4 = ims.find(*interest4);
124 BOOST_CHECK(!static_cast<bool>(found4));
125
126 found1 = ims.find(*interest1);
127 BOOST_CHECK_EQUAL(found1->getName(), name1);
128 found3 = ims.find(*interest3);
129 BOOST_CHECK_EQUAL(found3->getName(), name3);
130}
131
Alexander Afanasyev3ccc6f72014-10-12 12:19:09 -0700132BOOST_AUTO_TEST_SUITE_END() // Lru
133BOOST_AUTO_TEST_SUITE_END() // UtilInMemoryStorage
Jiewen Tan99135962014-09-20 02:18:53 -0700134
135} // namespace util
136} // namespace ndn