Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2016 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/key.hpp" |
| 23 | #include "security/pib/pib.hpp" |
| 24 | #include "security/pib/pib-memory.hpp" |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 25 | |
| 26 | #include "boost-test.hpp" |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 27 | #include "pib-data-fixture.hpp" |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 28 | |
| 29 | namespace ndn { |
| 30 | namespace security { |
| 31 | namespace tests { |
| 32 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 33 | BOOST_AUTO_TEST_SUITE(Security) |
Alexander Afanasyev | 97709c0 | 2016-08-25 19:58:30 -0700 | [diff] [blame^] | 34 | BOOST_AUTO_TEST_SUITE(TestPib) |
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 | { |
| 39 | // key |
| 40 | Key key; |
| 41 | |
| 42 | BOOST_CHECK_EQUAL(static_cast<bool>(key), false); |
| 43 | BOOST_CHECK_EQUAL(!key, true); |
| 44 | |
| 45 | if (key) |
| 46 | BOOST_CHECK(false); |
| 47 | else |
| 48 | BOOST_CHECK(true); |
| 49 | |
Yingdi Yu | 3bf91f5 | 2015-06-12 19:39:40 -0700 | [diff] [blame] | 50 | auto pibImpl = make_shared<PibMemory>(); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 51 | key = Key(id1, id1Key1Name.get(-1), id1Key1, pibImpl); |
| 52 | |
| 53 | BOOST_CHECK_EQUAL(static_cast<bool>(key), true); |
| 54 | BOOST_CHECK_EQUAL(!key, false); |
| 55 | |
| 56 | if (key) |
| 57 | BOOST_CHECK(true); |
| 58 | else |
| 59 | BOOST_CHECK(false); |
| 60 | } |
| 61 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 62 | BOOST_AUTO_TEST_CASE(CertificateOperations) |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 63 | { |
Yingdi Yu | 3bf91f5 | 2015-06-12 19:39:40 -0700 | [diff] [blame] | 64 | auto pibImpl = make_shared<PibMemory>(); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 65 | |
| 66 | Key key11(id1, id1Key1Name.get(-1), id1Key1, pibImpl); |
| 67 | |
| 68 | BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error); |
| 69 | key11.addCertificate(id1Key1Cert1); |
| 70 | BOOST_CHECK_NO_THROW(key11.getCertificate(id1Key1Cert1.getName())); |
| 71 | key11.removeCertificate(id1Key1Cert1.getName()); |
| 72 | BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error); |
| 73 | |
| 74 | BOOST_CHECK_THROW(key11.getDefaultCertificate(), Pib::Error); |
| 75 | BOOST_REQUIRE_THROW(key11.setDefaultCertificate(id1Key1Cert1.getName()), Pib::Error); |
| 76 | BOOST_REQUIRE_NO_THROW(key11.setDefaultCertificate(id1Key1Cert1)); |
| 77 | BOOST_REQUIRE_NO_THROW(key11.getDefaultCertificate()); |
| 78 | |
Alexander Afanasyev | 2fa5939 | 2016-07-29 17:24:23 -0700 | [diff] [blame] | 79 | const v1::IdentityCertificate& defaultCert = key11.getDefaultCertificate(); |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 80 | BOOST_CHECK_EQUAL_COLLECTIONS(defaultCert.wireEncode().wire(), |
| 81 | defaultCert.wireEncode().wire() + defaultCert.wireEncode().size(), |
| 82 | id1Key1Cert1.wireEncode().wire(), |
| 83 | id1Key1Cert1.wireEncode().wire() + id1Key1Cert1.wireEncode().size()); |
| 84 | |
| 85 | key11.removeCertificate(id1Key1Cert1.getName()); |
| 86 | BOOST_CHECK_THROW(key11.getCertificate(id1Key1Cert1.getName()), Pib::Error); |
| 87 | BOOST_CHECK_THROW(key11.getDefaultCertificate(), Pib::Error); |
| 88 | } |
| 89 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 90 | BOOST_AUTO_TEST_SUITE_END() // TestKey |
Alexander Afanasyev | 97709c0 | 2016-08-25 19:58:30 -0700 | [diff] [blame^] | 91 | BOOST_AUTO_TEST_SUITE_END() // TestPib |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 92 | BOOST_AUTO_TEST_SUITE_END() // Security |
Yingdi Yu | b8f8b34 | 2015-04-27 11:06:42 -0700 | [diff] [blame] | 93 | |
| 94 | } // namespace tests |
| 95 | } // namespace security |
| 96 | } // namespace ndn |