blob: 97f23698d4b26081e56d2bfac1461d3d9b70c82a [file] [log] [blame]
Yingdi Yub8f8b342015-04-27 11:06:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi5759be32017-10-15 00:00:52 +00002/*
Davide Pesavento35c63792022-01-17 02:06:03 -05003 * 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/identity.hpp"
Junxiao Shi24c5a002018-12-12 04:47:15 +000023#include "ndn-cxx/security/pib/impl/identity-impl.hpp"
Davide Pesavento4fb35d82019-10-31 19:33:10 -040024#include "ndn-cxx/security/pib/impl/pib-memory.hpp"
25#include "ndn-cxx/security/pib/pib.hpp"
Yingdi Yub8f8b342015-04-27 11:06:42 -070026
Davide Pesavento7e780642018-11-24 15:51:34 -050027#include "tests/boost-test.hpp"
28#include "tests/unit/security/pib/pib-data-fixture.hpp"
Yingdi Yub8f8b342015-04-27 11:06:42 -070029
30namespace ndn {
31namespace security {
Yingdi Yu6ee2d362015-07-16 21:48:05 -070032namespace pib {
Yingdi Yub8f8b342015-04-27 11:06:42 -070033namespace tests {
34
Yingdi Yu6ee2d362015-07-16 21:48:05 -070035using namespace ndn::security::tests;
36
Davide Pesaventoeee3e822016-11-26 19:19:34 +010037BOOST_AUTO_TEST_SUITE(Security)
Yingdi Yu6ee2d362015-07-16 21:48:05 -070038BOOST_AUTO_TEST_SUITE(Pib)
Davide Pesaventoeee3e822016-11-26 19:19:34 +010039BOOST_FIXTURE_TEST_SUITE(TestIdentity, PibDataFixture)
Yingdi Yub8f8b342015-04-27 11:06:42 -070040
Davide Pesaventoeee3e822016-11-26 19:19:34 +010041BOOST_AUTO_TEST_CASE(ValidityChecking)
Yingdi Yub8f8b342015-04-27 11:06:42 -070042{
Yingdi Yub8f8b342015-04-27 11:06:42 -070043 Identity id;
Davide Pesavento56cc0d72022-04-29 23:00:23 -040044 BOOST_TEST(!id);
45 BOOST_TEST(id == Identity());
Yingdi Yub8f8b342015-04-27 11:06:42 -070046
Davide Pesavento56cc0d72022-04-29 23:00:23 -040047 auto impl = std::make_shared<detail::IdentityImpl>(id1, std::make_shared<PibMemory>(), true);
48 id = Identity(impl);
49 BOOST_TEST(id);
50 BOOST_TEST(id != Identity());
51
52 impl.reset();
53 BOOST_TEST(!id);
Yingdi Yub8f8b342015-04-27 11:06:42 -070054}
55
Davide Pesavento56cc0d72022-04-29 23:00:23 -040056// pib::Identity is a wrapper of pib::detail::IdentityImpl. Since the functionality
57// of IdentityImpl is already tested in identity-impl.t.cpp, we only test the shared
Davide Pesavento4fb35d82019-10-31 19:33:10 -040058// property of pib::Identity in this test case.
59BOOST_AUTO_TEST_CASE(SharedImpl)
Yingdi Yub8f8b342015-04-27 11:06:42 -070060{
Davide Pesavento56cc0d72022-04-29 23:00:23 -040061 auto impl = std::make_shared<detail::IdentityImpl>(id1, std::make_shared<pib::PibMemory>(), true);
62 Identity identity1(impl);
63 Identity identity2(impl);
Yingdi Yucbe72b02015-11-25 17:35:37 -080064
Davide Pesavento56cc0d72022-04-29 23:00:23 -040065 BOOST_TEST(identity1 == identity2);
66 BOOST_TEST(identity1 != Identity());
67 BOOST_TEST(Identity() != identity2);
68 BOOST_TEST(Identity() == Identity());
69
70 BOOST_CHECK_THROW(identity2.getKey(id1Key1Name), pib::Pib::Error);
Davide Pesavento35c63792022-01-17 02:06:03 -050071 identity1.addKey(id1Key1, id1Key1Name);
Davide Pesavento56cc0d72022-04-29 23:00:23 -040072 BOOST_TEST(identity2.getKey(id1Key1Name));
73
Yingdi Yucbe72b02015-11-25 17:35:37 -080074 identity2.removeKey(id1Key1Name);
Davide Pesavento4fb35d82019-10-31 19:33:10 -040075 BOOST_CHECK_THROW(identity1.getKey(id1Key1Name), pib::Pib::Error);
Yingdi Yub8f8b342015-04-27 11:06:42 -070076
Davide Pesavento35c63792022-01-17 02:06:03 -050077 identity1.setDefaultKey(id1Key1, id1Key1Name);
Davide Pesavento56cc0d72022-04-29 23:00:23 -040078 BOOST_TEST(identity2.getDefaultKey().getName() == id1Key1Name);
Yingdi Yub8f8b342015-04-27 11:06:42 -070079}
80
Davide Pesaventoeee3e822016-11-26 19:19:34 +010081BOOST_AUTO_TEST_SUITE_END() // TestIdentity
Yingdi Yu6ee2d362015-07-16 21:48:05 -070082BOOST_AUTO_TEST_SUITE_END() // Pib
Davide Pesaventoeee3e822016-11-26 19:19:34 +010083BOOST_AUTO_TEST_SUITE_END() // Security
Yingdi Yub8f8b342015-04-27 11:06:42 -070084
85} // namespace tests
Yingdi Yu6ee2d362015-07-16 21:48:05 -070086} // namespace pib
Yingdi Yub8f8b342015-04-27 11:06:42 -070087} // namespace security
88} // namespace ndn