blob: 5435394aa9aff1ee4c0780c1878ad1733ce98881 [file] [log] [blame]
Yingdi Yu5ec0ee32014-06-24 16:26:09 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev4c9a3d52017-01-03 17:45:19 -08003 * Copyright (c) 2013-2017 Regents of the University of California.
Yingdi Yu5ec0ee32014-06-24 16:26:09 -07004 *
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/sec-rule-specific.hpp"
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070023
24#include "boost-test.hpp"
Alexander Afanasyev4c9a3d52017-01-03 17:45:19 -080025#include "identity-management-fixture.hpp"
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070026
27namespace ndn {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080028namespace security {
29namespace tests {
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070030
Alexander Afanasyeve4f8c3b2016-06-23 16:03:48 -070031using namespace ndn::tests;
32
Davide Pesaventoeee3e822016-11-26 19:19:34 +010033BOOST_AUTO_TEST_SUITE(Security)
Alexander Afanasyev70244f42017-01-04 12:47:12 -080034BOOST_FIXTURE_TEST_SUITE(TestSecRuleSpecific, IdentityManagementV1Fixture)
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070035
Davide Pesaventoeee3e822016-11-26 19:19:34 +010036BOOST_AUTO_TEST_CASE(Basic)
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070037{
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070038 Name rsaIdentity("/SecurityTestSecRule/Basic/Rsa");
Alexander Afanasyevfc99b512017-01-04 11:10:36 -080039 addIdentity(rsaIdentity, RsaKeyParams());
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070040 Name ecdsaIdentity("/SecurityTestSecRule/Basic/Ecdsa");
Alexander Afanasyevfc99b512017-01-04 11:10:36 -080041 addIdentity(ecdsaIdentity, EcdsaKeyParams());
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070042
43 Name dataName("SecurityTestSecRule/Basic");
44 Data rsaData(dataName);
Yingdi Yu1b0311c2015-06-10 14:58:47 -070045 m_keyChain.sign(rsaData,
46 security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID,
47 rsaIdentity));
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070048 Data ecdsaData(dataName);
Yingdi Yu1b0311c2015-06-10 14:58:47 -070049 m_keyChain.sign(ecdsaData,
50 security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID,
51 ecdsaIdentity));
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070052 Data sha256Data(dataName);
Yingdi Yu1b0311c2015-06-10 14:58:47 -070053 m_keyChain.sign(sha256Data, security::SigningInfo(security::SigningInfo::SIGNER_TYPE_SHA256));
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070054
55 shared_ptr<Regex> dataRegex =
56 make_shared<Regex>("^<SecurityTestSecRule><Basic>$");
57 shared_ptr<Regex> signerRegex =
58 make_shared<Regex>("^<SecurityTestSecRule><Basic><><KEY><><>$");
59
60 SecRuleSpecific rule(dataRegex, signerRegex);
61 BOOST_CHECK(rule.satisfy(rsaData));
62 BOOST_CHECK(rule.satisfy(ecdsaData));
63 BOOST_CHECK_EQUAL(rule.satisfy(sha256Data), false);
64
65 BOOST_CHECK(rule.matchSignerName(rsaData));
66 BOOST_CHECK(rule.matchSignerName(ecdsaData));
67 BOOST_CHECK_EQUAL(rule.matchSignerName(sha256Data), false);
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070068}
69
Davide Pesaventoeee3e822016-11-26 19:19:34 +010070BOOST_AUTO_TEST_SUITE_END() // TestSecRuleSpecific
71BOOST_AUTO_TEST_SUITE_END() // Security
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070072
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080073} // namespace tests
74} // namespace security
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070075} // namespace ndn