blob: 37f2cffe7affc6104e0af1f1c32f6f1684baa025 [file] [log] [blame]
Yingdi Yu41546342014-11-30 23:37:53 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi2bea5c42017-08-14 20:10:32 +00002/*
Zhiyi Zhang48becde2017-01-05 16:41:38 -08003 * Copyright (c) 2013-2017 Regents of the University of California.
Yingdi Yu41546342014-11-30 23:37:53 -08004 *
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
22#include "security/validator-config.hpp"
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080023#include "security/v2/certificate-fetcher-offline.hpp"
Junxiao Shi2bea5c42017-08-14 20:10:32 +000024#include "util/dummy-client-face.hpp"
Yingdi Yu41546342014-11-30 23:37:53 -080025
Yingdi Yu41546342014-11-30 23:37:53 -080026#include "boost-test.hpp"
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080027#include "identity-management-fixture.hpp"
28#include "v2/validator-config/common.hpp"
Yingdi Yu41546342014-11-30 23:37:53 -080029
Yingdi Yu41546342014-11-30 23:37:53 -080030namespace ndn {
Alexander Afanasyeve4f8c3b2016-06-23 16:03:48 -070031namespace security {
Yingdi Yu41546342014-11-30 23:37:53 -080032namespace tests {
33
Alexander Afanasyeve4f8c3b2016-06-23 16:03:48 -070034using namespace ndn::tests;
Yingdi Yu41546342014-11-30 23:37:53 -080035
Junxiao Shid5827ce2016-07-14 20:49:37 +000036BOOST_AUTO_TEST_SUITE(Security)
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080037BOOST_FIXTURE_TEST_SUITE(TestValidatorConfig, IdentityManagementFixture)
Alexander Afanasyev70244f42017-01-04 12:47:12 -080038
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080039// This test only for API, actual tests are in ValidationPolicyConfig and corresponding CertificateFetchers
40
41BOOST_AUTO_TEST_CASE(Construct)
42{
43 util::DummyClientFace face;
44
45 ValidatorConfig v1(face);
46 BOOST_CHECK_EQUAL(v1.m_policyConfig.m_isConfigured, false);
47
48 ValidatorConfig v2(make_unique<v2::CertificateFetcherOffline>());
49 BOOST_CHECK_EQUAL(v2.m_policyConfig.m_isConfigured, false);
50}
51
52class ValidatorConfigFixture : public IdentityManagementFixture
Alexander Afanasyev70244f42017-01-04 12:47:12 -080053{
54public:
55 ValidatorConfigFixture()
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080056 : path(boost::filesystem::path(UNIT_TEST_CONFIG_PATH) / "security" / "validator-config")
57 , validator(make_unique<v2::CertificateFetcherOffline>())
Alexander Afanasyev70244f42017-01-04 12:47:12 -080058 {
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080059 boost::filesystem::create_directories(path);
60 config = R"CONF(
61 trust-anchor
62 {
63 type any
64 }
65 )CONF";
66 configFile = (this->path / "config.conf").string();
67 std::ofstream f(configFile.c_str());
68 f << config;
69 }
70
71 ~ValidatorConfigFixture()
72 {
73 boost::filesystem::remove_all(path);
Alexander Afanasyev70244f42017-01-04 12:47:12 -080074 }
75
76public:
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080077 const boost::filesystem::path path;
78 std::string config;
79 std::string configFile;
Alexander Afanasyev70244f42017-01-04 12:47:12 -080080 ValidatorConfig validator;
81};
82
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080083BOOST_FIXTURE_TEST_SUITE(Loads, ValidatorConfigFixture)
Alexander Afanasyeve4f8c3b2016-06-23 16:03:48 -070084
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080085BOOST_AUTO_TEST_CASE(FromFile)
Yingdi Yu41546342014-11-30 23:37:53 -080086{
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080087 validator.load(configFile);
88 BOOST_CHECK_EQUAL(validator.m_policyConfig.m_isConfigured, true);
89 BOOST_CHECK_THROW(validator.load(configFile), std::logic_error);
Yingdi Yu41546342014-11-30 23:37:53 -080090}
91
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080092BOOST_AUTO_TEST_CASE(FromString)
Yingdi Yu41546342014-11-30 23:37:53 -080093{
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080094 validator.load(config, "config-file-from-string");
95 BOOST_CHECK_EQUAL(validator.m_policyConfig.m_isConfigured, true);
96 BOOST_CHECK_THROW(validator.load(configFile), std::logic_error);
Yingdi Yu41546342014-11-30 23:37:53 -080097}
98
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080099BOOST_AUTO_TEST_CASE(FromIstream)
Yingdi Yu41546342014-11-30 23:37:53 -0800100{
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800101 std::istringstream is(config);
102 validator.load(is, "config-file-from-istream");
103 BOOST_CHECK_EQUAL(validator.m_policyConfig.m_isConfigured, true);
104 BOOST_CHECK_THROW(validator.load(configFile), std::logic_error);
Yingdi Yu41546342014-11-30 23:37:53 -0800105}
106
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800107BOOST_AUTO_TEST_CASE(FromSection)
Yingdi Yu41546342014-11-30 23:37:53 -0800108{
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800109 validator.load(v2::validator_config::tests::makeSection(config), "config-file-from-section");
110 BOOST_CHECK_EQUAL(validator.m_policyConfig.m_isConfigured, true);
111 BOOST_CHECK_THROW(validator.load(configFile), std::logic_error);
Yingdi Yu41546342014-11-30 23:37:53 -0800112}
113
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800114BOOST_AUTO_TEST_SUITE_END() // Loads
Zhiyi Zhang48becde2017-01-05 16:41:38 -0800115
Junxiao Shid5827ce2016-07-14 20:49:37 +0000116BOOST_AUTO_TEST_SUITE_END() // TestValidatorConfig
117BOOST_AUTO_TEST_SUITE_END() // Security
Yingdi Yu41546342014-11-30 23:37:53 -0800118
119} // namespace tests
Alexander Afanasyeve4f8c3b2016-06-23 16:03:48 -0700120} // namespace security
Yingdi Yu41546342014-11-30 23:37:53 -0800121} // namespace ndn