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"); |
tylerliu | bfd2d6e | 2020-10-06 21:03:56 -0700 | [diff] [blame^] | 57 | |
| 58 | std::vector<std::tuple<std::string, std::string>> params; |
| 59 | params.emplace_back("email", "1@1.edu"); |
| 60 | BOOST_CHECK_EQUAL(config.m_nameAssignmentFunc(params).size(), 1); |
| 61 | BOOST_CHECK_EQUAL(config.m_nameAssignmentFunc(params)[0], Name("1@1.edu")); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | BOOST_AUTO_TEST_CASE(CAConfigFileWithErrors) |
| 65 | { |
| 66 | CaConfig config; |
| 67 | // nonexistent file |
| 68 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/Nonexist"), std::runtime_error); |
| 69 | // missing challenge |
| 70 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-ca-3"), std::runtime_error); |
| 71 | // unsupported challenge |
| 72 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-ca-4"), std::runtime_error); |
tylerliu | bfd2d6e | 2020-10-06 21:03:56 -0700 | [diff] [blame^] | 73 | // unsupported name assignment |
| 74 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-ca-6"), std::runtime_error); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 77 | BOOST_AUTO_TEST_CASE(RequesterCaCacheFile) |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 78 | { |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 79 | RequesterCaCache config; |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 80 | config.load("tests/unit-tests/config-files/config-client-1"); |
| 81 | BOOST_CHECK_EQUAL(config.m_caItems.size(), 2); |
| 82 | |
| 83 | auto& config1 = config.m_caItems.front(); |
Zhiyi Zhang | b940aa1 | 2020-09-30 16:38:57 -0700 | [diff] [blame] | 84 | BOOST_CHECK_EQUAL(config1.m_caPrefix, "/ndn/edu/ucla"); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 85 | BOOST_CHECK_EQUAL(config1.m_caInfo, "ndn testbed ca"); |
| 86 | BOOST_CHECK_EQUAL(config1.m_maxValidityPeriod, time::seconds(864000)); |
| 87 | BOOST_CHECK_EQUAL(*config1.m_maxSuffixLength, 3); |
| 88 | BOOST_CHECK_EQUAL(config1.m_probeParameterKeys.size(), 1); |
| 89 | BOOST_CHECK_EQUAL(config1.m_probeParameterKeys.front(), "email"); |
| 90 | BOOST_CHECK_EQUAL(config1.m_cert->getName(), |
| 91 | "/ndn/site1/KEY/%11%BC%22%F4c%15%FF%17/self/%FD%00%00%01Y%C8%14%D9%A5"); |
| 92 | |
Zhiyi Zhang | b940aa1 | 2020-09-30 16:38:57 -0700 | [diff] [blame] | 93 | auto& config2 = config.m_caItems.back(); |
| 94 | BOOST_CHECK_EQUAL(config2.m_caPrefix, "/ndn/edu/ucla/zhiyi"); |
| 95 | BOOST_CHECK_EQUAL(config2.m_caInfo, ""); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 96 | BOOST_CHECK_EQUAL(config2.m_maxValidityPeriod, time::seconds(86400)); |
| 97 | BOOST_CHECK(!config2.m_maxSuffixLength); |
| 98 | BOOST_CHECK_EQUAL(config2.m_probeParameterKeys.size(), 0); |
| 99 | BOOST_CHECK_EQUAL(config2.m_cert->getName(), |
| 100 | "/ndn/site1/KEY/%11%BC%22%F4c%15%FF%17/self/%FD%00%00%01Y%C8%14%D9%A5"); |
| 101 | } |
| 102 | |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 103 | BOOST_AUTO_TEST_CASE(RequesterCaCacheFileWithErrors) |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 104 | { |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 105 | RequesterCaCache config; |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 106 | // nonexistent file |
| 107 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/Nonexist"), std::runtime_error); |
| 108 | // missing certificate |
| 109 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-client-2"), std::runtime_error); |
| 110 | // missing ca prefix |
| 111 | BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-client-3"), std::runtime_error); |
| 112 | } |
| 113 | |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 114 | BOOST_AUTO_TEST_CASE(RequesterCaCacheFileAddAndremoveCaProfile) |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 115 | { |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 116 | RequesterCaCache config; |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 117 | config.load("tests/unit-tests/config-files/config-client-1"); |
| 118 | |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 119 | CaProfile item; |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 120 | item.m_caPrefix = Name("/test"); |
| 121 | item.m_caInfo = "test"; |
| 122 | |
| 123 | config.m_caItems.push_back(item); |
| 124 | BOOST_CHECK_EQUAL(config.m_caItems.size(), 3); |
| 125 | auto lastItem = config.m_caItems.back(); |
| 126 | BOOST_CHECK_EQUAL(lastItem.m_caPrefix, "/test"); |
| 127 | |
Zhiyi Zhang | 1d3dcd2 | 2020-10-01 22:25:43 -0700 | [diff] [blame] | 128 | config.removeCaProfile(Name("/test")); |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 129 | BOOST_CHECK_EQUAL(config.m_caItems.size(), 2); |
| 130 | lastItem = config.m_caItems.back(); |
| 131 | BOOST_CHECK_EQUAL(lastItem.m_caPrefix, "/ndn/edu/ucla/zhiyi"); |
| 132 | } |
| 133 | |
Zhiyi Zhang | 9829da9 | 2020-09-30 16:19:34 -0700 | [diff] [blame] | 134 | BOOST_AUTO_TEST_SUITE_END() // TestCaConfig |
| 135 | |
| 136 | } // namespace tests |
| 137 | } // namespace ndncert |
| 138 | } // namespace ndn |