Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | 6fd26cf | 2017-08-31 17:43:09 -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.hpp" |
Junxiao Shi | 24c5a00 | 2018-12-12 04:47:15 +0000 | [diff] [blame] | 23 | #include "ndn-cxx/security/pib/impl/key-impl.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 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 33 | BOOST_AUTO_TEST_SUITE(Security) |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 34 | BOOST_AUTO_TEST_SUITE(Pib) |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 35 | BOOST_FIXTURE_TEST_SUITE(TestKey, PibDataFixture) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 36 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 37 | BOOST_AUTO_TEST_CASE(ValidityChecking) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 38 | { |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 39 | Key key; |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 40 | BOOST_TEST(!key); |
| 41 | BOOST_TEST(key == Key()); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 42 | |
Davide Pesavento | 8618c1e | 2022-05-05 15:20:02 -0400 | [diff] [blame^] | 43 | auto impl = std::make_shared<detail::KeyImpl>(id1Key1Name, id1Key1, |
| 44 | makePibWithKey(id1Key1Name, id1Key1)); |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 45 | key = Key(impl); |
| 46 | BOOST_TEST(key); |
| 47 | BOOST_TEST(key != Key()); |
| 48 | |
| 49 | impl.reset(); |
| 50 | BOOST_TEST(!key); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 51 | } |
| 52 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 53 | // pib::Key is a wrapper of pib::detail::KeyImpl. Since the functionality of KeyImpl is |
| 54 | // already tested in key-impl.t.cpp, we only test the shared property of pib::Key in |
| 55 | // this test case. |
Davide Pesavento | 4fb35d8 | 2019-10-31 19:33:10 -0400 | [diff] [blame] | 56 | BOOST_AUTO_TEST_CASE(SharedImpl) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 57 | { |
Davide Pesavento | 765abc9 | 2021-12-27 00:44:04 -0500 | [diff] [blame] | 58 | auto keyImpl = std::make_shared<detail::KeyImpl>(id1Key1Name, id1Key1, |
Davide Pesavento | 8618c1e | 2022-05-05 15:20:02 -0400 | [diff] [blame^] | 59 | makePibWithKey(id1Key1Name, id1Key1)); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 60 | Key key1(keyImpl); |
| 61 | Key key2(keyImpl); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 62 | |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 63 | BOOST_TEST(key1 == key2); |
| 64 | BOOST_TEST(key1 != Key()); |
| 65 | BOOST_TEST(Key() != key2); |
| 66 | BOOST_TEST(Key() == Key()); |
| 67 | |
| 68 | BOOST_CHECK_THROW(key2.getCertificate(id1Key1Cert1.getName()), pib::Pib::Error); |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 69 | key1.addCertificate(id1Key1Cert1); |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 70 | BOOST_TEST(key2.getCertificate(id1Key1Cert1.getName()) == id1Key1Cert1); |
| 71 | |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 72 | key2.removeCertificate(id1Key1Cert1.getName()); |
Davide Pesavento | 4fb35d8 | 2019-10-31 19:33:10 -0400 | [diff] [blame] | 73 | BOOST_CHECK_THROW(key1.getCertificate(id1Key1Cert1.getName()), pib::Pib::Error); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 74 | |
Yingdi Yu | cbe72b0 | 2015-11-25 17:35:37 -0800 | [diff] [blame] | 75 | key1.setDefaultCertificate(id1Key1Cert1); |
Davide Pesavento | 78ca8ae | 2022-05-01 01:37:05 -0400 | [diff] [blame] | 76 | BOOST_TEST(key2.getDefaultCertificate() == id1Key1Cert1); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Alexander Afanasyev | 6fd26cf | 2017-08-31 17:43:09 -0400 | [diff] [blame] | 79 | BOOST_AUTO_TEST_CASE(Helpers) |
| 80 | { |
Davide Pesavento | f2cae61 | 2021-03-24 18:47:05 -0400 | [diff] [blame] | 81 | BOOST_CHECK_EQUAL(constructKeyName("/hello", name::Component("world")), "/hello/KEY/world"); |
Alexander Afanasyev | 6fd26cf | 2017-08-31 17:43:09 -0400 | [diff] [blame] | 82 | |
Davide Pesavento | f2cae61 | 2021-03-24 18:47:05 -0400 | [diff] [blame] | 83 | BOOST_CHECK_EQUAL(isValidKeyName("/hello"), false); |
| 84 | BOOST_CHECK_EQUAL(isValidKeyName("/hello/KEY"), false); |
| 85 | BOOST_CHECK_EQUAL(isValidKeyName("/hello/KEY/world"), true); |
Alexander Afanasyev | 6fd26cf | 2017-08-31 17:43:09 -0400 | [diff] [blame] | 86 | |
Davide Pesavento | f2cae61 | 2021-03-24 18:47:05 -0400 | [diff] [blame] | 87 | BOOST_CHECK_EQUAL(isValidKeyName("/KEY/hello"), true); |
| 88 | BOOST_CHECK_EQUAL(isValidKeyName("/hello/world/KEY/!"), true); |
Alexander Afanasyev | 6fd26cf | 2017-08-31 17:43:09 -0400 | [diff] [blame] | 89 | |
Davide Pesavento | f2cae61 | 2021-03-24 18:47:05 -0400 | [diff] [blame] | 90 | BOOST_CHECK_EQUAL(extractIdentityFromKeyName("/KEY/hello"), "/"); |
| 91 | BOOST_CHECK_EQUAL(extractIdentityFromKeyName("/hello/KEY/world"), "/hello"); |
| 92 | BOOST_CHECK_EQUAL(extractIdentityFromKeyName("/hello/world/KEY/!"), "/hello/world"); |
Alexander Afanasyev | 6fd26cf | 2017-08-31 17:43:09 -0400 | [diff] [blame] | 93 | |
Davide Pesavento | f2cae61 | 2021-03-24 18:47:05 -0400 | [diff] [blame] | 94 | BOOST_CHECK_THROW(extractIdentityFromKeyName("/hello"), std::invalid_argument); |
Alexander Afanasyev | 6fd26cf | 2017-08-31 17:43:09 -0400 | [diff] [blame] | 95 | } |
| 96 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 97 | BOOST_AUTO_TEST_SUITE_END() // TestKey |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 98 | BOOST_AUTO_TEST_SUITE_END() // Pib |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 99 | BOOST_AUTO_TEST_SUITE_END() // Security |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 100 | |
| 101 | } // namespace tests |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame] | 102 | } // namespace pib |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 103 | } // namespace security |
| 104 | } // namespace ndn |