Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | 478d338 | 2021-03-17 12:46:08 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2021 Regents of the University of California. |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 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 | |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 22 | #include "ndn-cxx/security/certificate-cache.hpp" |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 23 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 24 | #include "tests/boost-test.hpp" |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 25 | #include "tests/key-chain-fixture.hpp" |
| 26 | #include "tests/unit/clock-fixture.hpp" |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 27 | |
| 28 | namespace ndn { |
| 29 | namespace security { |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 30 | inline namespace v2 { |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 31 | namespace tests { |
| 32 | |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 33 | using namespace ndn::tests; |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 34 | |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 35 | class CertificateCacheFixture : public ClockFixture, public KeyChainFixture |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 36 | { |
| 37 | public: |
| 38 | CertificateCacheFixture() |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 39 | : certCache(10_s) |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 40 | { |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 41 | identity = m_keyChain.createIdentity("/TestCertificateCache"); |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 42 | cert = identity.getDefaultKey().getDefaultCertificate(); |
| 43 | } |
| 44 | |
| 45 | public: |
| 46 | CertificateCache certCache; |
| 47 | Identity identity; |
| 48 | Certificate cert; |
| 49 | }; |
| 50 | |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 51 | BOOST_AUTO_TEST_SUITE(Security) |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 52 | BOOST_FIXTURE_TEST_SUITE(TestCertificateCache, CertificateCacheFixture) |
| 53 | |
| 54 | BOOST_AUTO_TEST_CASE(RemovalTime) |
| 55 | { |
| 56 | // Cache lifetime is capped to 10 seconds during cache construction |
| 57 | |
| 58 | BOOST_CHECK_NO_THROW(certCache.insert(cert)); |
| 59 | BOOST_CHECK(certCache.find(cert.getName()) != nullptr); |
| 60 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 61 | advanceClocks(11_s, 1); |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 62 | BOOST_CHECK(certCache.find(cert.getName()) == nullptr); |
| 63 | |
| 64 | BOOST_CHECK_NO_THROW(certCache.insert(cert)); |
| 65 | BOOST_CHECK(certCache.find(cert.getName()) != nullptr); |
| 66 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 67 | advanceClocks(5_s); |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 68 | BOOST_CHECK(certCache.find(cert.getName()) != nullptr); |
| 69 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 70 | advanceClocks(15_s); |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 71 | BOOST_CHECK(certCache.find(cert.getName()) == nullptr); |
| 72 | } |
| 73 | |
| 74 | BOOST_AUTO_TEST_CASE(FindByInterest) |
| 75 | { |
| 76 | BOOST_CHECK_NO_THROW(certCache.insert(cert)); |
| 77 | |
Davide Pesavento | 478d338 | 2021-03-17 12:46:08 -0400 | [diff] [blame] | 78 | Interest i; |
| 79 | i.setCanBePrefix(true); |
| 80 | i.setName(cert.getIdentity()); |
| 81 | BOOST_CHECK(certCache.find(i) != nullptr); |
| 82 | i.setName(cert.getKeyName()); |
| 83 | BOOST_CHECK(certCache.find(i) != nullptr); |
| 84 | i.setName(Name(cert.getName()).appendVersion()); |
| 85 | BOOST_CHECK(certCache.find(i) == nullptr); |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 86 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 87 | advanceClocks(12_s); |
Davide Pesavento | 478d338 | 2021-03-17 12:46:08 -0400 | [diff] [blame] | 88 | i.setName(cert.getIdentity()); |
| 89 | BOOST_CHECK(certCache.find(i) == nullptr); |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | BOOST_AUTO_TEST_SUITE_END() // TestCertificateCache |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 93 | BOOST_AUTO_TEST_SUITE_END() // Security |
| 94 | |
| 95 | } // namespace tests |
Alexander Afanasyev | 09236c2 | 2020-06-03 13:42:38 -0400 | [diff] [blame] | 96 | } // inline namespace v2 |
Qiuhan Ding | 609f061 | 2015-11-04 14:07:14 -0800 | [diff] [blame] | 97 | } // namespace security |
| 98 | } // namespace ndn |