blob: 65614ac170e8db165cb9caf4d067a8a25c4336ae [file] [log] [blame]
Qiuhan Ding609f0612015-11-04 14:07:14 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento0f830802018-01-16 23:58:58 -05002/*
Alexander Afanasyev09236c22020-06-03 13:42:38 -04003 * Copyright (c) 2013-2020 Regents of the University of California.
Qiuhan Ding609f0612015-11-04 14:07:14 -08004 *
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
Alexander Afanasyev09236c22020-06-03 13:42:38 -040022#include "ndn-cxx/security/certificate-cache.hpp"
Qiuhan Ding609f0612015-11-04 14:07:14 -080023
Davide Pesavento7e780642018-11-24 15:51:34 -050024#include "tests/boost-test.hpp"
25#include "tests/unit/identity-management-time-fixture.hpp"
Qiuhan Ding609f0612015-11-04 14:07:14 -080026
27namespace ndn {
28namespace security {
Alexander Afanasyev09236c22020-06-03 13:42:38 -040029inline namespace v2 {
Qiuhan Ding609f0612015-11-04 14:07:14 -080030namespace tests {
31
32BOOST_AUTO_TEST_SUITE(Security)
Qiuhan Ding609f0612015-11-04 14:07:14 -080033
34class CertificateCacheFixture : public ndn::tests::IdentityManagementTimeFixture
35{
36public:
37 CertificateCacheFixture()
Davide Pesavento0f830802018-01-16 23:58:58 -050038 : certCache(10_s)
Qiuhan Ding609f0612015-11-04 14:07:14 -080039 {
40 identity = addIdentity("/TestCertificateCache/");
41 cert = identity.getDefaultKey().getDefaultCertificate();
42 }
43
44public:
45 CertificateCache certCache;
46 Identity identity;
47 Certificate cert;
48};
49
50BOOST_FIXTURE_TEST_SUITE(TestCertificateCache, CertificateCacheFixture)
51
52BOOST_AUTO_TEST_CASE(RemovalTime)
53{
54 // Cache lifetime is capped to 10 seconds during cache construction
55
56 BOOST_CHECK_NO_THROW(certCache.insert(cert));
57 BOOST_CHECK(certCache.find(cert.getName()) != nullptr);
58
Davide Pesavento0f830802018-01-16 23:58:58 -050059 advanceClocks(11_s, 1);
Qiuhan Ding609f0612015-11-04 14:07:14 -080060 BOOST_CHECK(certCache.find(cert.getName()) == nullptr);
61
62 BOOST_CHECK_NO_THROW(certCache.insert(cert));
63 BOOST_CHECK(certCache.find(cert.getName()) != nullptr);
64
Davide Pesavento0f830802018-01-16 23:58:58 -050065 advanceClocks(5_s);
Qiuhan Ding609f0612015-11-04 14:07:14 -080066 BOOST_CHECK(certCache.find(cert.getName()) != nullptr);
67
Davide Pesavento0f830802018-01-16 23:58:58 -050068 advanceClocks(15_s);
Qiuhan Ding609f0612015-11-04 14:07:14 -080069 BOOST_CHECK(certCache.find(cert.getName()) == nullptr);
70}
71
72BOOST_AUTO_TEST_CASE(FindByInterest)
73{
74 BOOST_CHECK_NO_THROW(certCache.insert(cert));
75
76 // Find by interest
77 BOOST_CHECK(certCache.find(Interest(cert.getIdentity())) != nullptr);
78 BOOST_CHECK(certCache.find(Interest(cert.getKeyName())) != nullptr);
79 BOOST_CHECK(certCache.find(Interest(Name(cert.getName()).appendVersion())) == nullptr);
80
Davide Pesavento0f830802018-01-16 23:58:58 -050081 advanceClocks(12_s);
Qiuhan Ding609f0612015-11-04 14:07:14 -080082 BOOST_CHECK(certCache.find(Interest(cert.getIdentity())) == nullptr);
Qiuhan Ding609f0612015-11-04 14:07:14 -080083}
84
85BOOST_AUTO_TEST_SUITE_END() // TestCertificateCache
Qiuhan Ding609f0612015-11-04 14:07:14 -080086BOOST_AUTO_TEST_SUITE_END() // Security
87
88} // namespace tests
Alexander Afanasyev09236c22020-06-03 13:42:38 -040089} // inline namespace v2
Qiuhan Ding609f0612015-11-04 14:07:14 -080090} // namespace security
91} // namespace ndn