Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2017-2019, Regents of the University of California. |
| 4 | * |
| 5 | * This file is part of ndncert, a certificate management system based on NDN. |
| 6 | * |
| 7 | * ndncert is free software: you can redistribute it and/or modify it under the terms |
| 8 | * of the GNU General Public License as published by the Free Software Foundation, either |
| 9 | * version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndncert 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 General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License along with |
| 16 | * ndncert, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 17 | * |
| 18 | * See AUTHORS.md for complete list of ndncert authors and contributors. |
| 19 | */ |
| 20 | |
| 21 | #include "configuration.hpp" |
| 22 | #include "protocol-detail/info.hpp" |
| 23 | #include "test-common.hpp" |
| 24 | |
| 25 | namespace ndn { |
| 26 | namespace ndncert { |
| 27 | namespace tests { |
| 28 | |
| 29 | BOOST_FIXTURE_TEST_SUITE(TestConfig, IdentityManagementFixture) |
| 30 | |
| 31 | BOOST_AUTO_TEST_CASE(CAConfigFile) |
| 32 | { |
| 33 | CaConfig config; |
| 34 | config.load("tests/unit-tests/config-files/config-ca-1"); |
| 35 | BOOST_CHECK_EQUAL(config.m_caItem.m_caPrefix, "/ndn"); |
| 36 | BOOST_CHECK_EQUAL(config.m_caItem.m_caInfo, "ndn testbed ca"); |
| 37 | BOOST_CHECK_EQUAL(config.m_caItem.m_maxValidityPeriod, time::seconds(864000)); |
| 38 | BOOST_CHECK_EQUAL(*config.m_caItem.m_maxSuffixLength, 3); |
| 39 | BOOST_CHECK_EQUAL(config.m_caItem.m_probeParameterKeys.size(), 1); |
| 40 | BOOST_CHECK_EQUAL(config.m_caItem.m_probeParameterKeys.front(), "full name"); |
| 41 | BOOST_CHECK_EQUAL(config.m_caItem.m_supportedChallenges.size(), 1); |
| 42 | BOOST_CHECK_EQUAL(config.m_caItem.m_supportedChallenges.front(), "pin"); |
| 43 | |
| 44 | config.load("tests/unit-tests/config-files/config-ca-2"); |
| 45 | BOOST_CHECK_EQUAL(config.m_caItem.m_caPrefix, "/ndn"); |
| 46 | BOOST_CHECK_EQUAL(config.m_caItem.m_caInfo, "missing max validity period, max suffix length, and probe"); |
| 47 | BOOST_CHECK_EQUAL(config.m_caItem.m_maxValidityPeriod, time::seconds(86400)); |
| 48 | BOOST_CHECK(!config.m_caItem.m_maxSuffixLength); |
| 49 | BOOST_CHECK_EQUAL(config.m_caItem.m_probeParameterKeys.size(), 0); |
Zhiyi Zhang | b940aa1 | 2020-09-30 16:38:57 -0700 | [diff] [blame] | 50 | BOOST_CHECK_EQUAL(config.m_caItem.m_supportedChallenges.size(), 2); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 51 | BOOST_CHECK_EQUAL(config.m_caItem.m_supportedChallenges.front(), "pin"); |
| 52 | BOOST_CHECK_EQUAL(config.m_caItem.m_supportedChallenges.back(), "email"); |
Zhiyi Zhang | fde5011 | 2020-10-01 16:36:33 -0700 | [diff] [blame] | 53 | |
| 54 | config.load("tests/unit-tests/config-files/config-ca-5"); |
Zhiyi Zhang | e537dd5 | 2020-10-01 18:02:24 -0700 | [diff] [blame] | 55 | BOOST_CHECK_EQUAL(config.m_redirection->at(0)->getName(), |
Zhiyi Zhang | fde5011 | 2020-10-01 16:36:33 -0700 | [diff] [blame] | 56 | "/ndn/site1/KEY/%11%BC%22%F4c%15%FF%17/self/%FD%00%00%01Y%C8%14%D9%A5"); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | BOOST_AUTO_TEST_CASE(CAConfigFileWithErrors) |
| 60 | { |
| 61 | CaConfig config; |
| 62 | // nonexistent file |
| 63 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/Nonexist"), std::runtime_error); |
| 64 | // missing challenge |
| 65 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-ca-3"), std::runtime_error); |
| 66 | // unsupported challenge |
| 67 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-ca-4"), std::runtime_error); |
| 68 | } |
| 69 | |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 70 | BOOST_AUTO_TEST_CASE(RequesterCaCacheFile) |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 71 | { |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 72 | RequesterCaCache config; |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 73 | config.load("tests/unit-tests/config-files/config-client-1"); |
| 74 | BOOST_CHECK_EQUAL(config.m_caItems.size(), 2); |
| 75 | |
| 76 | auto& config1 = config.m_caItems.front(); |
Zhiyi Zhang | b940aa1 | 2020-09-30 16:38:57 -0700 | [diff] [blame] | 77 | BOOST_CHECK_EQUAL(config1.m_caPrefix, "/ndn/edu/ucla"); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 78 | BOOST_CHECK_EQUAL(config1.m_caInfo, "ndn testbed ca"); |
| 79 | BOOST_CHECK_EQUAL(config1.m_maxValidityPeriod, time::seconds(864000)); |
| 80 | BOOST_CHECK_EQUAL(*config1.m_maxSuffixLength, 3); |
| 81 | BOOST_CHECK_EQUAL(config1.m_probeParameterKeys.size(), 1); |
| 82 | BOOST_CHECK_EQUAL(config1.m_probeParameterKeys.front(), "email"); |
| 83 | BOOST_CHECK_EQUAL(config1.m_cert->getName(), |
| 84 | "/ndn/site1/KEY/%11%BC%22%F4c%15%FF%17/self/%FD%00%00%01Y%C8%14%D9%A5"); |
| 85 | |
Zhiyi Zhang | b940aa1 | 2020-09-30 16:38:57 -0700 | [diff] [blame] | 86 | auto& config2 = config.m_caItems.back(); |
| 87 | BOOST_CHECK_EQUAL(config2.m_caPrefix, "/ndn/edu/ucla/zhiyi"); |
| 88 | BOOST_CHECK_EQUAL(config2.m_caInfo, ""); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 89 | BOOST_CHECK_EQUAL(config2.m_maxValidityPeriod, time::seconds(86400)); |
| 90 | BOOST_CHECK(!config2.m_maxSuffixLength); |
| 91 | BOOST_CHECK_EQUAL(config2.m_probeParameterKeys.size(), 0); |
| 92 | BOOST_CHECK_EQUAL(config2.m_cert->getName(), |
| 93 | "/ndn/site1/KEY/%11%BC%22%F4c%15%FF%17/self/%FD%00%00%01Y%C8%14%D9%A5"); |
| 94 | } |
| 95 | |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 96 | BOOST_AUTO_TEST_CASE(RequesterCaCacheFileWithErrors) |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 97 | { |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 98 | RequesterCaCache config; |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 99 | // nonexistent file |
| 100 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/Nonexist"), std::runtime_error); |
| 101 | // missing certificate |
| 102 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-client-2"), std::runtime_error); |
| 103 | // missing ca prefix |
| 104 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-client-3"), std::runtime_error); |
| 105 | } |
| 106 | |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 107 | BOOST_AUTO_TEST_CASE(RequesterCaCacheFileAddAndremoveCaProfile) |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 108 | { |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 109 | RequesterCaCache config; |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 110 | config.load("tests/unit-tests/config-files/config-client-1"); |
| 111 | |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 112 | CaProfile item; |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 113 | item.m_caPrefix = Name("/test"); |
| 114 | item.m_caInfo = "test"; |
| 115 | |
| 116 | config.m_caItems.push_back(item); |
| 117 | BOOST_CHECK_EQUAL(config.m_caItems.size(), 3); |
| 118 | auto lastItem = config.m_caItems.back(); |
| 119 | BOOST_CHECK_EQUAL(lastItem.m_caPrefix, "/test"); |
| 120 | |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 121 | config.removeCaProfile(Name("/test")); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 122 | BOOST_CHECK_EQUAL(config.m_caItems.size(), 2); |
| 123 | lastItem = config.m_caItems.back(); |
| 124 | BOOST_CHECK_EQUAL(lastItem.m_caPrefix, "/ndn/edu/ucla/zhiyi"); |
| 125 | } |
| 126 | |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 127 | BOOST_AUTO_TEST_SUITE_END() // TestCaConfig |
| 128 | |
| 129 | } // namespace tests |
| 130 | } // namespace ndncert |
| 131 | } // namespace ndn |