Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 74daf74 | 2018-11-23 18:14:13 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2023 Regents of the University of California. |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [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 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 22 | #include "ndn-cxx/security/pib/certificate-container.hpp" |
Davide Pesavento | 4fb35d8 | 2019-10-31 19:33:10 -0400 | [diff] [blame] | 23 | #include "ndn-cxx/security/pib/impl/pib-memory.hpp" |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame] | 24 | #include "ndn-cxx/util/concepts.hpp" |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 25 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 26 | #include "tests/boost-test.hpp" |
| 27 | #include "tests/unit/security/pib/pib-data-fixture.hpp" |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 28 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 29 | namespace ndn::tests { |
| 30 | |
| 31 | using namespace ndn::security::pib; |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 32 | |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame] | 33 | NDN_CXX_ASSERT_FORWARD_ITERATOR(CertificateContainer::const_iterator); |
| 34 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 35 | BOOST_AUTO_TEST_SUITE(Security) |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 36 | BOOST_FIXTURE_TEST_SUITE(TestCertificateContainer, PibDataFixture) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 37 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 38 | BOOST_AUTO_TEST_CASE(AddGetRemove) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 39 | { |
Yingdi Yu | 3bf91f5 | 2015-06-12 19:39:40 -0700 | [diff] [blame] | 40 | auto pibImpl = make_shared<PibMemory>(); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 41 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 42 | { |
| 43 | // start with an empty container |
| 44 | CertificateContainer container(id1Key1Name, pibImpl); |
| 45 | BOOST_CHECK_EQUAL(container.size(), 0); |
| 46 | BOOST_CHECK_EQUAL(container.m_certs.size(), 0); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 47 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 48 | // add one cert |
| 49 | container.add(id1Key1Cert1); |
| 50 | BOOST_CHECK_EQUAL(container.size(), 1); |
| 51 | BOOST_CHECK_EQUAL(container.m_certs.size(), 1); |
| 52 | BOOST_CHECK(container.find(id1Key1Cert1.getName()) != container.end()); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 53 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 54 | // add the same cert again |
| 55 | container.add(id1Key1Cert1); |
| 56 | BOOST_CHECK_EQUAL(container.size(), 1); |
| 57 | BOOST_CHECK_EQUAL(container.m_certs.size(), 1); |
| 58 | BOOST_CHECK(container.find(id1Key1Cert1.getName()) != container.end()); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 59 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 60 | // add another cert |
| 61 | container.add(id1Key1Cert2); |
| 62 | BOOST_CHECK_EQUAL(container.size(), 2); |
| 63 | BOOST_CHECK_EQUAL(container.m_certs.size(), 2); |
| 64 | BOOST_CHECK(container.find(id1Key1Cert1.getName()) != container.end()); |
| 65 | BOOST_CHECK(container.find(id1Key1Cert2.getName()) != container.end()); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 66 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 67 | // check certs |
| 68 | Certificate cert1 = container.get(id1Key1Cert1.getName()); |
| 69 | Certificate cert2 = container.get(id1Key1Cert2.getName()); |
| 70 | BOOST_CHECK_EQUAL(cert1, id1Key1Cert1); |
| 71 | BOOST_CHECK_EQUAL(cert2, id1Key1Cert2); |
| 72 | Name id1Key1Cert3Name = Name(id1Key1Name).append("issuer").appendVersion(3); |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 73 | BOOST_CHECK_THROW(container.get(id1Key1Cert3Name), Pib::Error); |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 74 | } |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 75 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 76 | { |
| 77 | // create a container from an existing (non-empty) PibImpl |
| 78 | // names are loaded immediately but the certificate cache should initially be empty |
| 79 | CertificateContainer container2(id1Key1Name, pibImpl); |
| 80 | BOOST_CHECK_EQUAL(container2.size(), 2); |
| 81 | BOOST_CHECK_EQUAL(container2.m_certs.size(), 0); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 82 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 83 | // fetching the certificates should populate the cache |
| 84 | BOOST_CHECK_EQUAL(container2.get(id1Key1Cert1.getName()), id1Key1Cert1); |
| 85 | BOOST_CHECK_EQUAL(container2.size(), 2); |
| 86 | BOOST_CHECK_EQUAL(container2.m_certs.size(), 1); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 87 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 88 | BOOST_CHECK_EQUAL(container2.get(id1Key1Cert2.getName()), id1Key1Cert2); |
| 89 | BOOST_CHECK_EQUAL(container2.size(), 2); |
| 90 | BOOST_CHECK_EQUAL(container2.m_certs.size(), 2); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 91 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 92 | // remove a certificate |
| 93 | container2.remove(id1Key1Cert1.getName()); |
| 94 | BOOST_CHECK_EQUAL(container2.size(), 1); |
| 95 | BOOST_CHECK_EQUAL(container2.m_certs.size(), 1); |
| 96 | BOOST_CHECK(container2.find(id1Key1Cert1.getName()) == container2.end()); |
| 97 | BOOST_CHECK(container2.find(id1Key1Cert2.getName()) != container2.end()); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 98 | |
Davide Pesavento | 07db073 | 2022-05-06 15:20:26 -0400 | [diff] [blame] | 99 | // removing the same certificate again is a no-op |
| 100 | container2.remove(id1Key1Cert1.getName()); |
| 101 | BOOST_CHECK_EQUAL(container2.size(), 1); |
| 102 | BOOST_CHECK_EQUAL(container2.m_certs.size(), 1); |
| 103 | BOOST_CHECK(container2.find(id1Key1Cert1.getName()) == container2.end()); |
| 104 | BOOST_CHECK(container2.find(id1Key1Cert2.getName()) != container2.end()); |
| 105 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 106 | // remove another certificate |
| 107 | container2.remove(id1Key1Cert2.getName()); |
| 108 | BOOST_CHECK_EQUAL(container2.size(), 0); |
| 109 | BOOST_CHECK_EQUAL(container2.m_certs.size(), 0); |
| 110 | BOOST_CHECK(container2.find(id1Key1Cert2.getName()) == container2.end()); |
| 111 | } |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | BOOST_AUTO_TEST_CASE(Errors) |
| 115 | { |
| 116 | auto pibImpl = make_shared<PibMemory>(); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 117 | CertificateContainer container(id1Key1Name, pibImpl); |
| 118 | |
| 119 | BOOST_CHECK_THROW(container.add(id1Key2Cert1), std::invalid_argument); |
| 120 | BOOST_CHECK_THROW(container.remove(id1Key2Cert1.getName()), std::invalid_argument); |
| 121 | BOOST_CHECK_THROW(container.get(id1Key2Cert1.getName()), std::invalid_argument); |
| 122 | } |
| 123 | |
| 124 | BOOST_AUTO_TEST_CASE(Iterator) |
| 125 | { |
| 126 | auto pibImpl = make_shared<PibMemory>(); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 127 | CertificateContainer container(id1Key1Name, pibImpl); |
| 128 | container.add(id1Key1Cert1); |
| 129 | container.add(id1Key1Cert2); |
| 130 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 131 | const std::set<Name> certNames{id1Key1Cert1.getName(), id1Key1Cert2.getName()}; |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 132 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 133 | CertificateContainer::const_iterator it = container.begin(); |
Davide Pesavento | f2cae61 | 2021-03-24 18:47:05 -0400 | [diff] [blame] | 134 | auto testIt = certNames.begin(); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 135 | BOOST_CHECK_EQUAL((*it).getName(), *testIt); |
| 136 | it++; |
| 137 | testIt++; |
| 138 | BOOST_CHECK_EQUAL((*it).getName(), *testIt); |
| 139 | ++it; |
| 140 | testIt++; |
| 141 | BOOST_CHECK(it == container.end()); |
| 142 | |
Davide Pesavento | b99c711 | 2022-05-01 18:53:23 -0400 | [diff] [blame] | 143 | // test range-based for |
| 144 | int count = 0; |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 145 | testIt = certNames.begin(); |
| 146 | for (const auto& cert : container) { |
| 147 | BOOST_CHECK_EQUAL(cert.getName(), *testIt); |
| 148 | testIt++; |
| 149 | count++; |
| 150 | } |
| 151 | BOOST_CHECK_EQUAL(count, 2); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 152 | |
| 153 | BOOST_CHECK(CertificateContainer::const_iterator() == CertificateContainer::const_iterator()); |
| 154 | BOOST_CHECK(CertificateContainer::const_iterator() == container.end()); |
| 155 | BOOST_CHECK(container.end() == CertificateContainer::const_iterator()); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 158 | BOOST_AUTO_TEST_SUITE_END() // TestCertificateContainer |
| 159 | BOOST_AUTO_TEST_SUITE_END() // Security |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 160 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 161 | } // namespace ndn::tests |