blob: 3e514248e3c32f3bc93076ee7d456ef212561c90 [file] [log] [blame]
Yingdi Yub8f8b342015-04-27 11:06:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento5d0b0102017-10-07 13:43:16 -04002/*
Davide Pesavento78ca8ae2022-05-01 01:37:05 -04003 * Copyright (c) 2013-2022 Regents of the University of California.
Yingdi Yub8f8b342015-04-27 11:06:42 -07004 *
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 Pesavento7e780642018-11-24 15:51:34 -050022#include "ndn-cxx/security/pib/key-container.hpp"
Davide Pesavento4fb35d82019-10-31 19:33:10 -040023#include "ndn-cxx/security/pib/impl/pib-memory.hpp"
Yingdi Yub8f8b342015-04-27 11:06:42 -070024
Davide Pesavento7e780642018-11-24 15:51:34 -050025#include "tests/boost-test.hpp"
26#include "tests/unit/security/pib/pib-data-fixture.hpp"
Yingdi Yub8f8b342015-04-27 11:06:42 -070027
28namespace ndn {
29namespace security {
Yingdi Yu6ee2d362015-07-16 21:48:05 -070030namespace pib {
Yingdi Yub8f8b342015-04-27 11:06:42 -070031namespace tests {
32
Yingdi Yu6ee2d362015-07-16 21:48:05 -070033using namespace ndn::security::tests;
34
Davide Pesaventoeee3e822016-11-26 19:19:34 +010035BOOST_AUTO_TEST_SUITE(Security)
Yingdi Yu6ee2d362015-07-16 21:48:05 -070036BOOST_AUTO_TEST_SUITE(Pib)
Yingdi Yucbe72b02015-11-25 17:35:37 -080037BOOST_FIXTURE_TEST_SUITE(TestKeyContainer, PibDataFixture)
Yingdi Yub8f8b342015-04-27 11:06:42 -070038
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040039BOOST_AUTO_TEST_CASE(AddGetRemove)
Yingdi Yub8f8b342015-04-27 11:06:42 -070040{
Yingdi Yu3bf91f52015-06-12 19:39:40 -070041 auto pibImpl = make_shared<PibMemory>();
Yingdi Yub8f8b342015-04-27 11:06:42 -070042
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040043 {
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 Yub8f8b342015-04-27 11:06:42 -070048
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040049 // 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 Yub8f8b342015-04-27 11:06:42 -070056
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040057 // 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 Yucbe72b02015-11-25 17:35:37 -080064
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040065 // 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 Yub8f8b342015-04-27 11:06:42 -070073
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040074 // 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 Yucbe72b02015-11-25 17:35:37 -080084
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040085 {
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 Yucbe72b02015-11-25 17:35:37 -080091
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040092 // 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 Yucbe72b02015-11-25 17:35:37 -080096
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040097 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 Yucbe72b02015-11-25 17:35:37 -0800100
Davide Pesavento78ca8ae2022-05-01 01:37:05 -0400101 // 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 Yucbe72b02015-11-25 17:35:37 -0800107
Davide Pesavento78ca8ae2022-05-01 01:37:05 -0400108 // 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 Yucbe72b02015-11-25 17:35:37 -0800114}
115
116BOOST_AUTO_TEST_CASE(Errors)
117{
118 auto pibImpl = make_shared<PibMemory>();
Yingdi Yucbe72b02015-11-25 17:35:37 -0800119 KeyContainer container(id1, pibImpl);
120
Davide Pesavento765abc92021-12-27 00:44:04 -0500121 BOOST_CHECK_THROW(container.add(id2Key1, id2Key1Name), std::invalid_argument);
Yingdi Yucbe72b02015-11-25 17:35:37 -0800122 BOOST_CHECK_THROW(container.remove(id2Key1Name), std::invalid_argument);
123 BOOST_CHECK_THROW(container.get(id2Key1Name), std::invalid_argument);
124}
125
126BOOST_AUTO_TEST_CASE(Iterator)
127{
128 auto pibImpl = make_shared<PibMemory>();
129 KeyContainer container(id1, pibImpl);
Davide Pesavento765abc92021-12-27 00:44:04 -0500130 container.add(id1Key1, id1Key1Name);
131 container.add(id1Key2, id1Key2Name);
Yingdi Yucbe72b02015-11-25 17:35:37 -0800132
Davide Pesavento78ca8ae2022-05-01 01:37:05 -0400133 const std::set<Name> keyNames{id1Key1Name, id1Key2Name};
Yingdi Yub8f8b342015-04-27 11:06:42 -0700134
135 KeyContainer::const_iterator it = container.begin();
Davide Pesavento78ca8ae2022-05-01 01:37:05 -0400136 auto testIt = keyNames.begin();
Yingdi Yu6ee2d362015-07-16 21:48:05 -0700137 BOOST_CHECK_EQUAL((*it).getName(), *testIt);
Yingdi Yub8f8b342015-04-27 11:06:42 -0700138 it++;
139 testIt++;
Yingdi Yu6ee2d362015-07-16 21:48:05 -0700140 BOOST_CHECK_EQUAL((*it).getName(), *testIt);
Yingdi Yub8f8b342015-04-27 11:06:42 -0700141 ++it;
142 testIt++;
143 BOOST_CHECK(it == container.end());
144
Davide Pesavento78ca8ae2022-05-01 01:37:05 -0400145 // test range-based for
146 int count = 0;
Yingdi Yub8f8b342015-04-27 11:06:42 -0700147 testIt = keyNames.begin();
148 for (const auto& key : container) {
149 BOOST_CHECK_EQUAL(key.getIdentity(), id1);
Yingdi Yu6ee2d362015-07-16 21:48:05 -0700150 BOOST_CHECK_EQUAL(key.getName(), *testIt);
Yingdi Yub8f8b342015-04-27 11:06:42 -0700151 testIt++;
152 count++;
153 }
154 BOOST_CHECK_EQUAL(count, 2);
Yingdi Yucbe72b02015-11-25 17:35:37 -0800155
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 Yub8f8b342015-04-27 11:06:42 -0700159}
160
Davide Pesaventoeee3e822016-11-26 19:19:34 +0100161BOOST_AUTO_TEST_SUITE_END() // TestKeyContainer
Yingdi Yu6ee2d362015-07-16 21:48:05 -0700162BOOST_AUTO_TEST_SUITE_END() // Pib
Davide Pesaventoeee3e822016-11-26 19:19:34 +0100163BOOST_AUTO_TEST_SUITE_END() // Security
Yingdi Yub8f8b342015-04-27 11:06:42 -0700164
165} // namespace tests
Yingdi Yu6ee2d362015-07-16 21:48:05 -0700166} // namespace pib
Yingdi Yub8f8b342015-04-27 11:06:42 -0700167} // namespace security
168} // namespace ndn