Eric Newberry | d82b07c | 2015-06-20 15:02:07 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 74daf74 | 2018-11-23 18:14:13 -0500 | [diff] [blame] | 2 | /* |
Eric Newberry | 78ffc63 | 2020-05-17 15:13:46 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2020 Regents of the University of California. |
Eric Newberry | d82b07c | 2015-06-20 15:02:07 -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/signing-helpers.hpp" |
Eric Newberry | d82b07c | 2015-06-20 15:02:07 -0700 | [diff] [blame] | 23 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 24 | #include "tests/boost-test.hpp" |
Eric Newberry | d82b07c | 2015-06-20 15:02:07 -0700 | [diff] [blame] | 25 | |
| 26 | namespace ndn { |
| 27 | namespace security { |
| 28 | namespace tests { |
| 29 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 30 | BOOST_AUTO_TEST_SUITE(Security) |
| 31 | BOOST_AUTO_TEST_SUITE(TestSigningHelpers) |
Eric Newberry | d82b07c | 2015-06-20 15:02:07 -0700 | [diff] [blame] | 32 | |
Alexander Afanasyev | d6d78aa | 2017-01-02 18:14:23 -0800 | [diff] [blame] | 33 | // update of this test case deferred until the new IdentityManagementFixture is available |
| 34 | |
Eric Newberry | d82b07c | 2015-06-20 15:02:07 -0700 | [diff] [blame] | 35 | BOOST_AUTO_TEST_CASE(Identity) |
| 36 | { |
| 37 | Name identity("/identity"); |
| 38 | SigningInfo info = signingByIdentity(identity); |
| 39 | BOOST_CHECK_EQUAL(info.getSignerType(), SigningInfo::SIGNER_TYPE_ID); |
| 40 | BOOST_CHECK_EQUAL(info.getSignerName(), identity); |
| 41 | } |
| 42 | |
| 43 | BOOST_AUTO_TEST_CASE(Key) |
| 44 | { |
| 45 | Name key("/key"); |
| 46 | SigningInfo info = signingByKey(key); |
| 47 | BOOST_CHECK_EQUAL(info.getSignerType(), SigningInfo::SIGNER_TYPE_KEY); |
| 48 | BOOST_CHECK_EQUAL(info.getSignerName(), key); |
| 49 | } |
| 50 | |
| 51 | BOOST_AUTO_TEST_CASE(Certificate) |
| 52 | { |
| 53 | Name cert("/cert"); |
| 54 | SigningInfo info = signingByCertificate(cert); |
| 55 | BOOST_CHECK_EQUAL(info.getSignerType(), SigningInfo::SIGNER_TYPE_CERT); |
| 56 | BOOST_CHECK_EQUAL(info.getSignerName(), cert); |
| 57 | } |
| 58 | |
| 59 | BOOST_AUTO_TEST_CASE(Sha256) |
| 60 | { |
| 61 | SigningInfo info = signingWithSha256(); |
| 62 | BOOST_CHECK_EQUAL(info.getSignerType(), SigningInfo::SIGNER_TYPE_SHA256); |
Eric Newberry | 78ffc63 | 2020-05-17 15:13:46 -0700 | [diff] [blame] | 63 | BOOST_CHECK_EQUAL(info.getSignerName(), Name()); |
Eric Newberry | d82b07c | 2015-06-20 15:02:07 -0700 | [diff] [blame] | 64 | } |
| 65 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 66 | BOOST_AUTO_TEST_SUITE_END() // TestSigningHelpers |
| 67 | BOOST_AUTO_TEST_SUITE_END() // Security |
Eric Newberry | d82b07c | 2015-06-20 15:02:07 -0700 | [diff] [blame] | 68 | |
| 69 | } // namespace tests |
| 70 | } // namespace security |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 71 | } // namespace ndn |