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