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 | 5d0b010 | 2017-10-07 13:43:16 -0400 | [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/key-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 | |
| 29 | namespace ndn { |
| 30 | namespace security { |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 31 | namespace pib { |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 32 | namespace tests { |
| 33 | |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame^] | 34 | NDN_CXX_ASSERT_FORWARD_ITERATOR(KeyContainer::const_iterator); |
| 35 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 36 | BOOST_AUTO_TEST_SUITE(Security) |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 37 | BOOST_AUTO_TEST_SUITE(Pib) |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 38 | BOOST_FIXTURE_TEST_SUITE(TestKeyContainer, PibDataFixture) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 39 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 40 | BOOST_AUTO_TEST_CASE(AddGetRemove) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 41 | { |
Yingdi Yu | 3bf91f5 | 2015-06-12 19:39:40 -0700 | [diff] [blame] | 42 | auto pibImpl = make_shared<PibMemory>(); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 43 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 44 | { |
| 45 | // start with an empty container |
| 46 | KeyContainer container(id1, pibImpl); |
| 47 | BOOST_CHECK_EQUAL(container.size(), 0); |
| 48 | BOOST_CHECK_EQUAL(container.m_keys.size(), 0); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 49 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 50 | // add the first key |
| 51 | Key key11 = container.add(id1Key1, id1Key1Name); |
| 52 | BOOST_CHECK_EQUAL(key11.getName(), id1Key1Name); |
| 53 | BOOST_TEST(key11.getPublicKey() == id1Key1, boost::test_tools::per_element()); |
| 54 | BOOST_CHECK_EQUAL(container.size(), 1); |
| 55 | BOOST_CHECK_EQUAL(container.m_keys.size(), 1); |
| 56 | BOOST_CHECK(container.find(id1Key1Name) != container.end()); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 57 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 58 | // add the same key again |
| 59 | Key key12 = container.add(id1Key1, id1Key1Name); |
| 60 | BOOST_CHECK_EQUAL(key12.getName(), id1Key1Name); |
| 61 | BOOST_TEST(key12.getPublicKey() == id1Key1, boost::test_tools::per_element()); |
| 62 | BOOST_CHECK_EQUAL(container.size(), 1); |
| 63 | BOOST_CHECK_EQUAL(container.m_keys.size(), 1); |
| 64 | BOOST_CHECK(container.find(id1Key1Name) != container.end()); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 65 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 66 | // add the second key |
| 67 | Key key21 = container.add(id1Key2, id1Key2Name); |
| 68 | BOOST_CHECK_EQUAL(key21.getName(), id1Key2Name); |
| 69 | BOOST_TEST(key21.getPublicKey() == id1Key2, boost::test_tools::per_element()); |
| 70 | BOOST_CHECK_EQUAL(container.size(), 2); |
| 71 | BOOST_CHECK_EQUAL(container.m_keys.size(), 2); |
| 72 | BOOST_CHECK(container.find(id1Key1Name) != container.end()); |
| 73 | BOOST_CHECK(container.find(id1Key2Name) != container.end()); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 74 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 75 | // check keys |
| 76 | Key key1 = container.get(id1Key1Name); |
| 77 | Key key2 = container.get(id1Key2Name); |
| 78 | BOOST_CHECK_EQUAL(key1.getName(), id1Key1Name); |
| 79 | BOOST_TEST(key1.getPublicKey() == id1Key1, boost::test_tools::per_element()); |
| 80 | BOOST_CHECK_EQUAL(key2.getName(), id1Key2Name); |
| 81 | BOOST_TEST(key2.getPublicKey() == id1Key2, boost::test_tools::per_element()); |
| 82 | Name id1Key3Name = constructKeyName(id1, name::Component("non-existing-id")); |
| 83 | BOOST_CHECK_THROW(container.get(id1Key3Name), pib::Pib::Error); |
| 84 | } |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 85 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 86 | { |
| 87 | // create a container from an existing (non-empty) PibImpl |
| 88 | // names are loaded immediately but the key cache should initially be empty |
| 89 | KeyContainer container2(id1, pibImpl); |
| 90 | BOOST_CHECK_EQUAL(container2.size(), 2); |
| 91 | BOOST_CHECK_EQUAL(container2.m_keys.size(), 0); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 92 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 93 | // fetching the keys should populate the cache |
| 94 | BOOST_CHECK_EQUAL(container2.get(id1Key1Name).getName(), id1Key1Name); |
| 95 | BOOST_CHECK_EQUAL(container2.size(), 2); |
| 96 | BOOST_CHECK_EQUAL(container2.m_keys.size(), 1); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 97 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 98 | BOOST_CHECK_EQUAL(container2.get(id1Key2Name).getName(), id1Key2Name); |
| 99 | BOOST_CHECK_EQUAL(container2.size(), 2); |
| 100 | BOOST_CHECK_EQUAL(container2.m_keys.size(), 2); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 101 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 102 | // remove a key |
| 103 | container2.remove(id1Key1Name); |
| 104 | BOOST_CHECK_EQUAL(container2.size(), 1); |
| 105 | BOOST_CHECK_EQUAL(container2.m_keys.size(), 1); |
| 106 | BOOST_CHECK(container2.find(id1Key1Name) == container2.end()); |
| 107 | BOOST_CHECK(container2.find(id1Key2Name) != container2.end()); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 108 | |
Davide Pesavento | 07db073 | 2022-05-06 15:20:26 -0400 | [diff] [blame] | 109 | // removing the same key again is a no-op |
| 110 | container2.remove(id1Key1Name); |
| 111 | BOOST_CHECK_EQUAL(container2.size(), 1); |
| 112 | BOOST_CHECK_EQUAL(container2.m_keys.size(), 1); |
| 113 | BOOST_CHECK(container2.find(id1Key1Name) == container2.end()); |
| 114 | BOOST_CHECK(container2.find(id1Key2Name) != container2.end()); |
| 115 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 116 | // remove another key |
| 117 | container2.remove(id1Key2Name); |
| 118 | BOOST_CHECK_EQUAL(container2.size(), 0); |
| 119 | BOOST_CHECK_EQUAL(container2.m_keys.size(), 0); |
| 120 | BOOST_CHECK(container2.find(id1Key2Name) == container2.end()); |
| 121 | } |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | BOOST_AUTO_TEST_CASE(Errors) |
| 125 | { |
| 126 | auto pibImpl = make_shared<PibMemory>(); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 127 | KeyContainer container(id1, pibImpl); |
| 128 | |
Davide Pesavento | 765abc9 | 2021-12-27 00:44:04 -0500 | [diff] [blame] | 129 | BOOST_CHECK_THROW(container.add(id2Key1, id2Key1Name), std::invalid_argument); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 130 | BOOST_CHECK_THROW(container.remove(id2Key1Name), std::invalid_argument); |
| 131 | BOOST_CHECK_THROW(container.get(id2Key1Name), std::invalid_argument); |
| 132 | } |
| 133 | |
| 134 | BOOST_AUTO_TEST_CASE(Iterator) |
| 135 | { |
| 136 | auto pibImpl = make_shared<PibMemory>(); |
| 137 | KeyContainer container(id1, pibImpl); |
Davide Pesavento | 765abc9 | 2021-12-27 00:44:04 -0500 | [diff] [blame] | 138 | container.add(id1Key1, id1Key1Name); |
| 139 | container.add(id1Key2, id1Key2Name); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 140 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 141 | const std::set<Name> keyNames{id1Key1Name, id1Key2Name}; |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 142 | |
| 143 | KeyContainer::const_iterator it = container.begin(); |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 144 | auto testIt = keyNames.begin(); |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 145 | BOOST_CHECK_EQUAL((*it).getName(), *testIt); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 146 | it++; |
| 147 | testIt++; |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 148 | BOOST_CHECK_EQUAL((*it).getName(), *testIt); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 149 | ++it; |
| 150 | testIt++; |
| 151 | BOOST_CHECK(it == container.end()); |
| 152 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 153 | // test range-based for |
| 154 | int count = 0; |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 155 | testIt = keyNames.begin(); |
| 156 | for (const auto& key : container) { |
| 157 | BOOST_CHECK_EQUAL(key.getIdentity(), id1); |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 158 | BOOST_CHECK_EQUAL(key.getName(), *testIt); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 159 | testIt++; |
| 160 | count++; |
| 161 | } |
| 162 | BOOST_CHECK_EQUAL(count, 2); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 163 | |
| 164 | BOOST_CHECK(KeyContainer::const_iterator() == KeyContainer::const_iterator()); |
| 165 | BOOST_CHECK(KeyContainer::const_iterator() == container.end()); |
| 166 | BOOST_CHECK(container.end() == KeyContainer::const_iterator()); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 167 | } |
| 168 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 169 | BOOST_AUTO_TEST_SUITE_END() // TestKeyContainer |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 170 | BOOST_AUTO_TEST_SUITE_END() // Pib |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 171 | BOOST_AUTO_TEST_SUITE_END() // Security |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 172 | |
| 173 | } // namespace tests |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 174 | } // namespace pib |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 175 | } // namespace security |
| 176 | } // namespace ndn |