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