blob: f2f92e6a55023c2d73c1b5decfcfcee8697f8d1d [file] [log] [blame]
Yingdi Yu5ec0ee32014-06-24 16:26:09 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Spyridon Mastorakis429634f2015-02-19 17:35:33 -08003 * Copyright (c) 2013-2015 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
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070022#include "security/sec-rule-relative.hpp"
Yingdi Yu3ed09d02014-10-13 16:24:08 -070023#include "identity-management-fixture.hpp"
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070024
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070025namespace ndn {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080026namespace security {
27namespace tests {
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070028
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080029BOOST_FIXTURE_TEST_SUITE(SecuritySecRuleRelative, IdentityManagementFixture)
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070030
31BOOST_AUTO_TEST_CASE(SecRuleRelativeTest)
32{
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070033 Name rsaIdentity("/SecurityTestSecRule/Basic/Rsa");
Yingdi Yu3ed09d02014-10-13 16:24:08 -070034 BOOST_REQUIRE(addIdentity(rsaIdentity, RsaKeyParams()));
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070035 Name ecdsaIdentity("/SecurityTestSecRule/Basic/Ecdsa");
Yingdi Yu3ed09d02014-10-13 16:24:08 -070036 BOOST_REQUIRE(addIdentity(ecdsaIdentity, EcdsaKeyParams()));
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070037
38 Name dataName("SecurityTestSecRule/Basic");
39 Data rsaData(dataName);
Yingdi Yu3ed09d02014-10-13 16:24:08 -070040 m_keyChain.signByIdentity(rsaData, rsaIdentity);
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070041 Data ecdsaData(dataName);
Yingdi Yu3ed09d02014-10-13 16:24:08 -070042 m_keyChain.signByIdentity(ecdsaData, ecdsaIdentity);
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070043 Data sha256Data(dataName);
Yingdi Yu3ed09d02014-10-13 16:24:08 -070044 m_keyChain.signWithSha256(sha256Data);
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070045
46 SecRuleRelative rule("^(<SecurityTestSecRule><Basic>)$",
47 "^(<SecurityTestSecRule><Basic>)<><KEY><><>$",
48 "==", "\\1", "\\1", true);
49 BOOST_CHECK(rule.satisfy(rsaData));
50 BOOST_CHECK(rule.satisfy(ecdsaData));
51 BOOST_CHECK_EQUAL(rule.satisfy(sha256Data), false);
52
53 BOOST_CHECK(rule.matchSignerName(rsaData));
54 BOOST_CHECK(rule.matchSignerName(ecdsaData));
55 BOOST_CHECK_EQUAL(rule.matchSignerName(sha256Data), false);
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070056}
57
58BOOST_AUTO_TEST_SUITE_END()
59
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080060} // namespace tests
61} // namespace security
Yingdi Yu5ec0ee32014-06-24 16:26:09 -070062} // namespace ndn