blob: be986a1341275e145d6953a3e17e26ed0ddd433c [file] [log] [blame]
Yingdi Yucbe72b02015-11-25 17:35:37 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento5d0b0102017-10-07 13:43:16 -04002/*
Jeremy Clark670a52f2020-08-29 21:48:26 -04003 * Copyright (c) 2013-2020 Regents of the University of California.
Yingdi Yucbe72b02015-11-25 17:35:37 -08004 *
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
Junxiao Shi24c5a002018-12-12 04:47:15 +000022#include "ndn-cxx/security/pib/impl/key-impl.hpp"
Davide Pesavento4fb35d82019-10-31 19:33:10 -040023#include "ndn-cxx/security/pib/impl/pib-memory.hpp"
Davide Pesavento7e780642018-11-24 15:51:34 -050024#include "ndn-cxx/security/pib/pib.hpp"
Yingdi Yucbe72b02015-11-25 17:35:37 -080025
Davide Pesavento7e780642018-11-24 15:51:34 -050026#include "tests/boost-test.hpp"
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -050027#include "tests/key-chain-fixture.hpp"
Davide Pesavento7e780642018-11-24 15:51:34 -050028#include "tests/unit/security/pib/pib-data-fixture.hpp"
Yingdi Yucbe72b02015-11-25 17:35:37 -080029
30namespace ndn {
31namespace security {
32namespace pib {
33namespace detail {
34namespace tests {
35
36BOOST_AUTO_TEST_SUITE(Security)
37BOOST_AUTO_TEST_SUITE(Pib)
Davide Pesavento5d0b0102017-10-07 13:43:16 -040038BOOST_FIXTURE_TEST_SUITE(TestKeyImpl, security::tests::PibDataFixture)
Yingdi Yucbe72b02015-11-25 17:35:37 -080039
40using security::Pib;
41
42BOOST_AUTO_TEST_CASE(Basic)
43{
44 auto pibImpl = make_shared<pib::PibMemory>();
Davide Pesavento5d0b0102017-10-07 13:43:16 -040045 KeyImpl key11(id1Key1Name, id1Key1.data(), id1Key1.size(), pibImpl);
Yingdi Yucbe72b02015-11-25 17:35:37 -080046
47 BOOST_CHECK_EQUAL(key11.getName(), id1Key1Name);
48 BOOST_CHECK_EQUAL(key11.getIdentity(), id1);
49 BOOST_CHECK_EQUAL(key11.getKeyType(), KeyType::EC);
50 BOOST_CHECK(key11.getPublicKey() == id1Key1);
51
52 KeyImpl key11Bak(id1Key1Name, pibImpl);
53 BOOST_CHECK_EQUAL(key11Bak.getName(), id1Key1Name);
54 BOOST_CHECK_EQUAL(key11Bak.getIdentity(), id1);
55 BOOST_CHECK_EQUAL(key11Bak.getKeyType(), KeyType::EC);
56 BOOST_CHECK(key11Bak.getPublicKey() == id1Key1);
57}
58
59BOOST_AUTO_TEST_CASE(CertificateOperation)
60{
61 auto pibImpl = make_shared<pib::PibMemory>();
Davide Pesavento5d0b0102017-10-07 13:43:16 -040062 KeyImpl key11(id1Key1Name, id1Key1.data(), id1Key1.size(), pibImpl);
Yingdi Yucbe72b02015-11-25 17:35:37 -080063 BOOST_CHECK_NO_THROW(KeyImpl(id1Key1Name, pibImpl));
64
65 // key does not have any certificate
66 BOOST_CHECK_EQUAL(key11.getCertificates().size(), 0);
67
68 // get non-existing certificate, throw Pib::Error
69 BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error);
70 // get default certificate, throw Pib::Error
71 BOOST_CHECK_THROW(key11.getDefaultCertificate(), Pib::Error);
72 // set non-existing certificate as default certificate, throw Pib::Error
73 BOOST_REQUIRE_THROW(key11.setDefaultCertificate(id1Key1Cert1.getName()), Pib::Error);
74
75 // add certificate
76 key11.addCertificate(id1Key1Cert1);
77 BOOST_CHECK_NO_THROW(key11.getCertificate(id1Key1Cert1.getName()));
78
79 // new certificate becomes default certificate when there was no default certificate
80 BOOST_REQUIRE_NO_THROW(key11.getDefaultCertificate());
81 const auto& defaultCert0 = key11.getDefaultCertificate();
82 BOOST_CHECK_EQUAL(defaultCert0.getName(), id1Key1Cert1.getName());
83 BOOST_CHECK_EQUAL(defaultCert0, id1Key1Cert1);
84
85 // remove certificate
86 key11.removeCertificate(id1Key1Cert1.getName());
87 BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error);
88 BOOST_CHECK_THROW(key11.getDefaultCertificate(), Pib::Error);
89
90 // set default certificate directly
91 BOOST_REQUIRE_NO_THROW(key11.setDefaultCertificate(id1Key1Cert1));
92 BOOST_REQUIRE_NO_THROW(key11.getDefaultCertificate());
93 BOOST_CHECK_NO_THROW(key11.getCertificate(id1Key1Cert1.getName()));
94
95 // check default cert
96 const auto& defaultCert1 = key11.getDefaultCertificate();
97 BOOST_CHECK_EQUAL(defaultCert1.getName(), id1Key1Cert1.getName());
98 BOOST_CHECK_EQUAL(defaultCert1, id1Key1Cert1);
99
100 // add another certificate
101 key11.addCertificate(id1Key1Cert2);
102 BOOST_CHECK_EQUAL(key11.getCertificates().size(), 2);
103
104 // set default certificate through name
105 BOOST_REQUIRE_NO_THROW(key11.setDefaultCertificate(id1Key1Cert2.getName()));
106 BOOST_REQUIRE_NO_THROW(key11.getDefaultCertificate());
107 const auto& defaultCert2 = key11.getDefaultCertificate();
108 BOOST_CHECK_EQUAL(defaultCert2.getName(), id1Key1Cert2.getName());
109 BOOST_CHECK_EQUAL(defaultCert2, id1Key1Cert2);
110
111 // remove certificate
112 key11.removeCertificate(id1Key1Cert1.getName());
113 BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error);
114 BOOST_CHECK_EQUAL(key11.getCertificates().size(), 1);
115
116 // set default certificate directly again, change the default setting
117 BOOST_REQUIRE_NO_THROW(key11.setDefaultCertificate(id1Key1Cert1));
118 const auto& defaultCert3 = key11.getDefaultCertificate();
119 BOOST_CHECK_EQUAL(defaultCert3.getName(), id1Key1Cert1.getName());
120 BOOST_CHECK_EQUAL(defaultCert3, id1Key1Cert1);
121 BOOST_CHECK_EQUAL(key11.getCertificates().size(), 2);
122
123 // remove all certificates
124 key11.removeCertificate(id1Key1Cert1.getName());
125 BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error);
126 BOOST_CHECK_EQUAL(key11.getCertificates().size(), 1);
127 key11.removeCertificate(id1Key1Cert2.getName());
128 BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert2.getName()), Pib::Error);
129 BOOST_CHECK_THROW(key11.getDefaultCertificate(), Pib::Error);
130 BOOST_CHECK_EQUAL(key11.getCertificates().size(), 0);
131}
132
Alexander Afanasyeva10b2ff2017-01-30 12:44:15 -0800133class OverwriteFixture : public ndn::security::tests::PibDataFixture,
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -0500134 public ndn::tests::KeyChainFixture
Alexander Afanasyeva10b2ff2017-01-30 12:44:15 -0800135{
136};
137
138BOOST_FIXTURE_TEST_CASE(Overwrite, OverwriteFixture)
139{
140 auto pibImpl = make_shared<pib::PibMemory>();
141
142 BOOST_CHECK_THROW(KeyImpl(id1Key1Name, pibImpl), Pib::Error);
Davide Pesavento5d0b0102017-10-07 13:43:16 -0400143 KeyImpl(id1Key1Name, id1Key1.data(), id1Key1.size(), pibImpl);
Alexander Afanasyeva10b2ff2017-01-30 12:44:15 -0800144 KeyImpl key1(id1Key1Name, pibImpl);
145
Davide Pesavento5d0b0102017-10-07 13:43:16 -0400146 KeyImpl(id1Key1Name, id1Key2.data(), id1Key2.size(), pibImpl); // overwriting of the key should work
Alexander Afanasyeva10b2ff2017-01-30 12:44:15 -0800147 KeyImpl key2(id1Key1Name, pibImpl);
148
149 BOOST_CHECK(key1.getPublicKey() != key2.getPublicKey()); // key1 cached the original public key
150 BOOST_CHECK(key2.getPublicKey() == id1Key2);
151
152 key1.addCertificate(id1Key1Cert1);
153 BOOST_CHECK_EQUAL(key1.getCertificate(id1Key1Cert1.getName()), id1Key1Cert1);
154
155 auto otherCert = id1Key1Cert1;
156 SignatureInfo info;
157 info.setValidityPeriod(ValidityPeriod(time::system_clock::now(),
Davide Pesavento0f830802018-01-16 23:58:58 -0500158 time::system_clock::now() + 1_s));
Alexander Afanasyeva10b2ff2017-01-30 12:44:15 -0800159 m_keyChain.sign(otherCert, SigningInfo().setSignatureInfo(info));
160
161 BOOST_CHECK_EQUAL(otherCert.getName(), id1Key1Cert1.getName());
162 BOOST_CHECK(otherCert.getContent() == id1Key1Cert1.getContent());
163 BOOST_CHECK_NE(otherCert, id1Key1Cert1);
164
165 key1.addCertificate(otherCert);
166
167 BOOST_CHECK_EQUAL(key1.getCertificate(id1Key1Cert1.getName()), otherCert);
168}
169
Yingdi Yucbe72b02015-11-25 17:35:37 -0800170BOOST_AUTO_TEST_CASE(Errors)
171{
172 auto pibImpl = make_shared<pib::PibMemory>();
173
174 BOOST_CHECK_THROW(KeyImpl(id1Key1Name, pibImpl), Pib::Error);
Davide Pesavento5d0b0102017-10-07 13:43:16 -0400175 KeyImpl key11(id1Key1Name, id1Key1.data(), id1Key1.size(), pibImpl);
Yingdi Yucbe72b02015-11-25 17:35:37 -0800176
177 BOOST_CHECK_THROW(KeyImpl(Name("/wrong"), pibImpl), std::invalid_argument);
Davide Pesavento5d0b0102017-10-07 13:43:16 -0400178 BOOST_CHECK_THROW(KeyImpl(Name("/wrong"), id1Key1.data(), id1Key1.size(), pibImpl), std::invalid_argument);
Yingdi Yucbe72b02015-11-25 17:35:37 -0800179 Buffer wrongKey;
Davide Pesavento5d0b0102017-10-07 13:43:16 -0400180 BOOST_CHECK_THROW(KeyImpl(id1Key2Name, wrongKey.data(), wrongKey.size(), pibImpl), std::invalid_argument);
Yingdi Yucbe72b02015-11-25 17:35:37 -0800181
182 key11.addCertificate(id1Key1Cert1);
Yingdi Yucbe72b02015-11-25 17:35:37 -0800183 BOOST_CHECK_THROW(key11.addCertificate(id1Key2Cert1), std::invalid_argument);
184 BOOST_CHECK_THROW(key11.removeCertificate(id1Key2Cert1.getName()), std::invalid_argument);
185 BOOST_CHECK_THROW(key11.getCertificate(id1Key2Cert1.getName()), std::invalid_argument);
186 BOOST_CHECK_THROW(key11.setDefaultCertificate(id1Key2Cert1), std::invalid_argument);
187 BOOST_CHECK_THROW(key11.setDefaultCertificate(id1Key2Cert1.getName()), std::invalid_argument);
188}
189
190BOOST_AUTO_TEST_SUITE_END() // TestKeyImpl
Yingdi Yucbe72b02015-11-25 17:35:37 -0800191BOOST_AUTO_TEST_SUITE_END() // Pib
192BOOST_AUTO_TEST_SUITE_END() // Security
193
194} // namespace tests
195} // namespace detail
196} // namespace pib
197} // namespace security
198} // namespace ndn