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