blob: 4f2f25641fa84bdba79a03397cc80f436a5ad44e [file] [log] [blame]
Zhiyi Zhang9829da92020-09-30 16:19:34 -07001/* -*- 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
25namespace ndn {
26namespace ndncert {
27namespace tests {
28
29BOOST_FIXTURE_TEST_SUITE(TestConfig, IdentityManagementFixture)
30
31BOOST_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 Zhangb940aa12020-09-30 16:38:57 -070050 BOOST_CHECK_EQUAL(config.m_caItem.m_supportedChallenges.size(), 2);
Zhiyi Zhang9829da92020-09-30 16:19:34 -070051 BOOST_CHECK_EQUAL(config.m_caItem.m_supportedChallenges.front(), "pin");
52 BOOST_CHECK_EQUAL(config.m_caItem.m_supportedChallenges.back(), "email");
53}
54
55BOOST_AUTO_TEST_CASE(CAConfigFileWithErrors)
56{
57 CaConfig config;
58 // nonexistent file
59 BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/Nonexist"), std::runtime_error);
60 // missing challenge
61 BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-ca-3"), std::runtime_error);
62 // unsupported challenge
63 BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-ca-4"), std::runtime_error);
64}
65
66BOOST_AUTO_TEST_CASE(ClientConfigFile)
67{
68 ClientConfig config;
69 config.load("tests/unit-tests/config-files/config-client-1");
70 BOOST_CHECK_EQUAL(config.m_caItems.size(), 2);
71
72 auto& config1 = config.m_caItems.front();
Zhiyi Zhangb940aa12020-09-30 16:38:57 -070073 BOOST_CHECK_EQUAL(config1.m_caPrefix, "/ndn/edu/ucla");
Zhiyi Zhang9829da92020-09-30 16:19:34 -070074 BOOST_CHECK_EQUAL(config1.m_caInfo, "ndn testbed ca");
75 BOOST_CHECK_EQUAL(config1.m_maxValidityPeriod, time::seconds(864000));
76 BOOST_CHECK_EQUAL(*config1.m_maxSuffixLength, 3);
77 BOOST_CHECK_EQUAL(config1.m_probeParameterKeys.size(), 1);
78 BOOST_CHECK_EQUAL(config1.m_probeParameterKeys.front(), "email");
79 BOOST_CHECK_EQUAL(config1.m_cert->getName(),
80 "/ndn/site1/KEY/%11%BC%22%F4c%15%FF%17/self/%FD%00%00%01Y%C8%14%D9%A5");
81
Zhiyi Zhangb940aa12020-09-30 16:38:57 -070082 auto& config2 = config.m_caItems.back();
83 BOOST_CHECK_EQUAL(config2.m_caPrefix, "/ndn/edu/ucla/zhiyi");
84 BOOST_CHECK_EQUAL(config2.m_caInfo, "");
Zhiyi Zhang9829da92020-09-30 16:19:34 -070085 BOOST_CHECK_EQUAL(config2.m_maxValidityPeriod, time::seconds(86400));
86 BOOST_CHECK(!config2.m_maxSuffixLength);
87 BOOST_CHECK_EQUAL(config2.m_probeParameterKeys.size(), 0);
88 BOOST_CHECK_EQUAL(config2.m_cert->getName(),
89 "/ndn/site1/KEY/%11%BC%22%F4c%15%FF%17/self/%FD%00%00%01Y%C8%14%D9%A5");
90}
91
92BOOST_AUTO_TEST_CASE(ClientConfigFileWithErrors)
93{
94 ClientConfig config;
95 // nonexistent file
96 BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/Nonexist"), std::runtime_error);
97 // missing certificate
98 BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-client-2"), std::runtime_error);
99 // missing ca prefix
100 BOOST_CHECK_THROW(config.load("tests/unit-tests/config-files/config-client-3"), std::runtime_error);
101}
102
103BOOST_AUTO_TEST_CASE(ClientConfigFileAddAndRemoveCaItem)
104{
105 ClientConfig config;
106 config.load("tests/unit-tests/config-files/config-client-1");
107
108 CaConfigItem item;
109 item.m_caPrefix = Name("/test");
110 item.m_caInfo = "test";
111
112 config.m_caItems.push_back(item);
113 BOOST_CHECK_EQUAL(config.m_caItems.size(), 3);
114 auto lastItem = config.m_caItems.back();
115 BOOST_CHECK_EQUAL(lastItem.m_caPrefix, "/test");
116
117 config.removeCaItem(Name("/test"));
118 BOOST_CHECK_EQUAL(config.m_caItems.size(), 2);
119 lastItem = config.m_caItems.back();
120 BOOST_CHECK_EQUAL(lastItem.m_caPrefix, "/ndn/edu/ucla/zhiyi");
121}
122
123BOOST_AUTO_TEST_CASE(InfoEncodingDecoding)
124{
125 CaConfig config;
126 config.load("tests/unit-tests/config-files/config-ca-1");
127
128 const auto& identity = addIdentity("/test");
129 const auto& cert = identity.getDefaultKey().getDefaultCertificate();
130 auto encoded = INFO::encodeDataContent(config.m_caItem, cert);
131 auto decoded = INFO::decodeDataContentToCaProfile(encoded);
132 BOOST_CHECK_EQUAL(config.m_caItem.m_caPrefix, decoded.m_caPrefix);
133 BOOST_CHECK_EQUAL(config.m_caItem.m_caInfo, decoded.m_caInfo);
134 BOOST_CHECK_EQUAL(config.m_caItem.m_maxValidityPeriod, decoded.m_maxValidityPeriod);
135 BOOST_CHECK_EQUAL(*config.m_caItem.m_maxSuffixLength, *decoded.m_maxSuffixLength);
136 BOOST_CHECK_EQUAL(config.m_caItem.m_probeParameterKeys.size(), decoded.m_probeParameterKeys.size());
137 BOOST_CHECK_EQUAL(config.m_caItem.m_probeParameterKeys.front(), decoded.m_probeParameterKeys.front());
138 BOOST_CHECK_EQUAL(cert.wireEncode(), decoded.m_cert->wireEncode());
139}
140
141BOOST_AUTO_TEST_SUITE_END() // TestCaConfig
142
143} // namespace tests
144} // namespace ndncert
145} // namespace ndn