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