blob: 7dd65f5ea84a3a57284e82f4a6129a76d4485861 [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);
Alexander Afanasyev6aff0242017-08-29 17:14:44 -040089
90 // should reload policy
91 validator.load(configFile);
92 BOOST_CHECK_EQUAL(validator.m_policyConfig.m_isConfigured, true);
Yingdi Yu41546342014-11-30 23:37:53 -080093}
94
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080095BOOST_AUTO_TEST_CASE(FromString)
Yingdi Yu41546342014-11-30 23:37:53 -080096{
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080097 validator.load(config, "config-file-from-string");
98 BOOST_CHECK_EQUAL(validator.m_policyConfig.m_isConfigured, true);
Alexander Afanasyev6aff0242017-08-29 17:14:44 -040099
100 // should reload policy
101 validator.load(config, "config-file-from-string");
102 BOOST_CHECK_EQUAL(validator.m_policyConfig.m_isConfigured, true);
Yingdi Yu41546342014-11-30 23:37:53 -0800103}
104
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800105BOOST_AUTO_TEST_CASE(FromIstream)
Yingdi Yu41546342014-11-30 23:37:53 -0800106{
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800107 std::istringstream is(config);
108 validator.load(is, "config-file-from-istream");
109 BOOST_CHECK_EQUAL(validator.m_policyConfig.m_isConfigured, true);
Alexander Afanasyev6aff0242017-08-29 17:14:44 -0400110
111 // should reload policy
112 std::istringstream is2(config);
113 validator.load(is2, "config-file-from-istream");
114 BOOST_CHECK_EQUAL(validator.m_policyConfig.m_isConfigured, true);
Yingdi Yu41546342014-11-30 23:37:53 -0800115}
116
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800117BOOST_AUTO_TEST_CASE(FromSection)
Yingdi Yu41546342014-11-30 23:37:53 -0800118{
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800119 validator.load(v2::validator_config::tests::makeSection(config), "config-file-from-section");
120 BOOST_CHECK_EQUAL(validator.m_policyConfig.m_isConfigured, true);
Alexander Afanasyev6aff0242017-08-29 17:14:44 -0400121
122 // should reload policy
123 validator.load(v2::validator_config::tests::makeSection(config), "config-file-from-section");
124 BOOST_CHECK_EQUAL(validator.m_policyConfig.m_isConfigured, true);
Yingdi Yu41546342014-11-30 23:37:53 -0800125}
126
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -0800127BOOST_AUTO_TEST_SUITE_END() // Loads
Zhiyi Zhang48becde2017-01-05 16:41:38 -0800128
Junxiao Shid5827ce2016-07-14 20:49:37 +0000129BOOST_AUTO_TEST_SUITE_END() // TestValidatorConfig
130BOOST_AUTO_TEST_SUITE_END() // Security
Yingdi Yu41546342014-11-30 23:37:53 -0800131
132} // namespace tests
Alexander Afanasyeve4f8c3b2016-06-23 16:03:48 -0700133} // namespace security
Yingdi Yu41546342014-11-30 23:37:53 -0800134} // namespace ndn