blob: 5273436ce4e79ad301663cd65e0e6e61dcbb24b5 [file] [log] [blame]
Yingdi Yub8f8b342015-04-27 11:06:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyev6fd26cf2017-08-31 17:43:09 -04002/*
Davide Pesavento47ce2ee2023-05-09 01:33:33 -04003 * Copyright (c) 2013-2023 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.hpp"
Junxiao Shi24c5a002018-12-12 04:47:15 +000023#include "ndn-cxx/security/pib/impl/key-impl.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
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040028namespace ndn::tests {
29
30using namespace ndn::security::pib;
Yingdi Yub8f8b342015-04-27 11:06:42 -070031
Davide Pesaventoeee3e822016-11-26 19:19:34 +010032BOOST_AUTO_TEST_SUITE(Security)
33BOOST_FIXTURE_TEST_SUITE(TestKey, PibDataFixture)
Yingdi Yub8f8b342015-04-27 11:06:42 -070034
Davide Pesaventoeee3e822016-11-26 19:19:34 +010035BOOST_AUTO_TEST_CASE(ValidityChecking)
Yingdi Yub8f8b342015-04-27 11:06:42 -070036{
Yingdi Yub8f8b342015-04-27 11:06:42 -070037 Key key;
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040038 BOOST_TEST(!key);
39 BOOST_TEST(key == Key());
Davide Pesavento07db0732022-05-06 15:20:26 -040040 BOOST_CHECK_THROW(key.getName(), std::domain_error);
Yingdi Yub8f8b342015-04-27 11:06:42 -070041
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040042 auto impl = std::make_shared<KeyImpl>(id1Key1Name, id1Key1, makePibWithKey(id1Key1Name, id1Key1));
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040043 key = Key(impl);
44 BOOST_TEST(key);
45 BOOST_TEST(key != Key());
Davide Pesavento07db0732022-05-06 15:20:26 -040046 BOOST_TEST(key.getName() == id1Key1Name);
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040047
48 impl.reset();
49 BOOST_TEST(!key);
Davide Pesavento07db0732022-05-06 15:20:26 -040050 BOOST_CHECK_THROW(key.getName(), std::domain_error);
Yingdi Yub8f8b342015-04-27 11:06:42 -070051}
52
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040053// pib::Key is a wrapper of pib::KeyImpl. Since the functionality of KeyImpl is
54// already tested in key-impl.t.cpp, we only test the shared property of pib::Key
55// in this test case.
Davide Pesavento4fb35d82019-10-31 19:33:10 -040056BOOST_AUTO_TEST_CASE(SharedImpl)
Yingdi Yub8f8b342015-04-27 11:06:42 -070057{
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040058 auto keyImpl = std::make_shared<KeyImpl>(id1Key1Name, id1Key1, makePibWithKey(id1Key1Name, id1Key1));
Yingdi Yucbe72b02015-11-25 17:35:37 -080059 Key key1(keyImpl);
60 Key key2(keyImpl);
Yingdi Yub8f8b342015-04-27 11:06:42 -070061
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040062 BOOST_TEST(key1 == key2);
63 BOOST_TEST(key1 != Key());
64 BOOST_TEST(Key() != key2);
65 BOOST_TEST(Key() == Key());
66
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040067 BOOST_CHECK_THROW(key2.getCertificate(id1Key1Cert1.getName()), Pib::Error);
Yingdi Yucbe72b02015-11-25 17:35:37 -080068 key1.addCertificate(id1Key1Cert1);
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040069 BOOST_TEST(key2.getCertificate(id1Key1Cert1.getName()) == id1Key1Cert1);
70
Yingdi Yucbe72b02015-11-25 17:35:37 -080071 key2.removeCertificate(id1Key1Cert1.getName());
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040072 BOOST_CHECK_THROW(key1.getCertificate(id1Key1Cert1.getName()), Pib::Error);
Yingdi Yub8f8b342015-04-27 11:06:42 -070073
Yingdi Yucbe72b02015-11-25 17:35:37 -080074 key1.setDefaultCertificate(id1Key1Cert1);
Davide Pesavento78ca8ae2022-05-01 01:37:05 -040075 BOOST_TEST(key2.getDefaultCertificate() == id1Key1Cert1);
Yingdi Yub8f8b342015-04-27 11:06:42 -070076}
77
Alexander Afanasyev6fd26cf2017-08-31 17:43:09 -040078BOOST_AUTO_TEST_CASE(Helpers)
79{
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040080 using ndn::security::constructKeyName;
81 using ndn::security::isValidKeyName;
82 using ndn::security::extractIdentityFromKeyName;
83
Davide Pesaventof2cae612021-03-24 18:47:05 -040084 BOOST_CHECK_EQUAL(constructKeyName("/hello", name::Component("world")), "/hello/KEY/world");
Alexander Afanasyev6fd26cf2017-08-31 17:43:09 -040085
Davide Pesaventof2cae612021-03-24 18:47:05 -040086 BOOST_CHECK_EQUAL(isValidKeyName("/hello"), false);
87 BOOST_CHECK_EQUAL(isValidKeyName("/hello/KEY"), false);
88 BOOST_CHECK_EQUAL(isValidKeyName("/hello/KEY/world"), true);
Alexander Afanasyev6fd26cf2017-08-31 17:43:09 -040089
Davide Pesaventof2cae612021-03-24 18:47:05 -040090 BOOST_CHECK_EQUAL(isValidKeyName("/KEY/hello"), true);
91 BOOST_CHECK_EQUAL(isValidKeyName("/hello/world/KEY/!"), true);
Alexander Afanasyev6fd26cf2017-08-31 17:43:09 -040092
Davide Pesaventof2cae612021-03-24 18:47:05 -040093 BOOST_CHECK_EQUAL(extractIdentityFromKeyName("/KEY/hello"), "/");
94 BOOST_CHECK_EQUAL(extractIdentityFromKeyName("/hello/KEY/world"), "/hello");
95 BOOST_CHECK_EQUAL(extractIdentityFromKeyName("/hello/world/KEY/!"), "/hello/world");
Alexander Afanasyev6fd26cf2017-08-31 17:43:09 -040096
Davide Pesaventof2cae612021-03-24 18:47:05 -040097 BOOST_CHECK_THROW(extractIdentityFromKeyName("/hello"), std::invalid_argument);
Alexander Afanasyev6fd26cf2017-08-31 17:43:09 -040098}
99
Davide Pesaventoeee3e822016-11-26 19:19:34 +0100100BOOST_AUTO_TEST_SUITE_END() // TestKey
101BOOST_AUTO_TEST_SUITE_END() // Security
Yingdi Yub8f8b342015-04-27 11:06:42 -0700102
Davide Pesavento47ce2ee2023-05-09 01:33:33 -0400103} // namespace ndn::tests