Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame^] | 3 | * Copyright (c) 2013-2017 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 | |
Alexander Afanasyev | 97709c0 | 2016-08-25 19:58:30 -0700 | [diff] [blame] | 22 | #include "security/pib/pib.hpp" |
| 23 | #include "security/pib/pib-memory.hpp" |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 24 | |
| 25 | #include "boost-test.hpp" |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 26 | #include "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 | |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame^] | 33 | using namespace ndn::security::tests; |
| 34 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 35 | BOOST_AUTO_TEST_SUITE(Security) |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame^] | 36 | BOOST_AUTO_TEST_SUITE(Pib) |
Alexander Afanasyev | 97709c0 | 2016-08-25 19:58:30 -0700 | [diff] [blame] | 37 | BOOST_FIXTURE_TEST_SUITE(Common, PibDataFixture) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 38 | |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame^] | 39 | using pib::Pib; |
| 40 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 41 | BOOST_AUTO_TEST_CASE(ValidityChecking) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 42 | { |
Yingdi Yu | 3bf91f5 | 2015-06-12 19:39:40 -0700 | [diff] [blame] | 43 | auto pibImpl = make_shared<PibMemory>(); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 44 | Pib pib("pib-memory", "", pibImpl); |
| 45 | |
| 46 | Identity id = pib.addIdentity(id1); |
| 47 | |
| 48 | BOOST_CHECK_EQUAL(bool(id), true); |
| 49 | BOOST_CHECK_EQUAL(!id, false); |
| 50 | |
| 51 | if (id) |
| 52 | BOOST_CHECK(true); |
| 53 | else |
| 54 | BOOST_CHECK(false); |
| 55 | |
| 56 | // key |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame^] | 57 | Key key = id.addKey(id1Key1.buf(), id1Key1.size(), id1Key1Name); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 58 | |
| 59 | BOOST_CHECK_EQUAL(bool(key), true); |
| 60 | BOOST_CHECK_EQUAL(!key, false); |
| 61 | |
| 62 | if (key) |
| 63 | BOOST_CHECK(true); |
| 64 | else |
| 65 | BOOST_CHECK(false); |
| 66 | } |
| 67 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 68 | BOOST_AUTO_TEST_CASE(IdentityOperations) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 69 | { |
Yingdi Yu | 3bf91f5 | 2015-06-12 19:39:40 -0700 | [diff] [blame] | 70 | auto pibImpl = make_shared<PibMemory>(); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 71 | Pib pib("pib-memory", "", pibImpl); |
| 72 | |
| 73 | BOOST_CHECK_THROW(pib.getIdentity(id1), Pib::Error); |
| 74 | Identity identity1 = pib.addIdentity(id1); |
| 75 | BOOST_CHECK_NO_THROW(pib.getIdentity(id1)); |
| 76 | pib.removeIdentity(id1); |
| 77 | BOOST_CHECK_THROW(pib.getIdentity(id1), Pib::Error); |
| 78 | |
| 79 | BOOST_CHECK_THROW(pib.getDefaultIdentity(), Pib::Error); |
| 80 | BOOST_REQUIRE_NO_THROW(pib.setDefaultIdentity(id1)); |
| 81 | BOOST_REQUIRE_NO_THROW(pib.getDefaultIdentity()); |
| 82 | BOOST_CHECK_EQUAL(pib.getDefaultIdentity().getName(), id1); |
| 83 | pib.removeIdentity(id1); |
| 84 | BOOST_CHECK_THROW(pib.getIdentity(id1), Pib::Error); |
| 85 | BOOST_CHECK_THROW(pib.getDefaultIdentity(), Pib::Error); |
| 86 | } |
| 87 | |
Alexander Afanasyev | 97709c0 | 2016-08-25 19:58:30 -0700 | [diff] [blame] | 88 | BOOST_AUTO_TEST_SUITE_END() // Common |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame^] | 89 | BOOST_AUTO_TEST_SUITE_END() // Pib |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 90 | BOOST_AUTO_TEST_SUITE_END() // Security |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 91 | |
| 92 | } // namespace tests |
Yingdi Yu | 6ee2d36 | 2015-07-16 21:48:05 -0700 | [diff] [blame^] | 93 | } // namespace pib |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 94 | } // namespace security |
| 95 | } // namespace ndn |