Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Spyridon Mastorakis | 429634f | 2015-02-19 17:35:33 -0800 | [diff] [blame] | 3 | * Copyright (c) 2013-2015 Regents of the University of California. |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 4 | * |
| 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 Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 22 | #include "security/sec-rule-relative.hpp" |
Yingdi Yu | 3ed09d0 | 2014-10-13 16:24:08 -0700 | [diff] [blame] | 23 | #include "identity-management-fixture.hpp" |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 24 | |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 25 | namespace ndn { |
Spyridon Mastorakis | 429634f | 2015-02-19 17:35:33 -0800 | [diff] [blame] | 26 | namespace security { |
| 27 | namespace tests { |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 28 | |
Spyridon Mastorakis | 429634f | 2015-02-19 17:35:33 -0800 | [diff] [blame] | 29 | BOOST_FIXTURE_TEST_SUITE(SecuritySecRuleRelative, IdentityManagementFixture) |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 30 | |
| 31 | BOOST_AUTO_TEST_CASE(SecRuleRelativeTest) |
| 32 | { |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 33 | Name rsaIdentity("/SecurityTestSecRule/Basic/Rsa"); |
Yingdi Yu | 3ed09d0 | 2014-10-13 16:24:08 -0700 | [diff] [blame] | 34 | BOOST_REQUIRE(addIdentity(rsaIdentity, RsaKeyParams())); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 35 | Name ecdsaIdentity("/SecurityTestSecRule/Basic/Ecdsa"); |
Yingdi Yu | 3ed09d0 | 2014-10-13 16:24:08 -0700 | [diff] [blame] | 36 | BOOST_REQUIRE(addIdentity(ecdsaIdentity, EcdsaKeyParams())); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 37 | |
| 38 | Name dataName("SecurityTestSecRule/Basic"); |
| 39 | Data rsaData(dataName); |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 40 | m_keyChain.sign(rsaData, |
| 41 | security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID, |
| 42 | rsaIdentity)); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 43 | Data ecdsaData(dataName); |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 44 | m_keyChain.sign(ecdsaData, |
| 45 | security::SigningInfo(security::SigningInfo::SIGNER_TYPE_ID, |
| 46 | ecdsaIdentity)); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 47 | Data sha256Data(dataName); |
Yingdi Yu | 1b0311c | 2015-06-10 14:58:47 -0700 | [diff] [blame] | 48 | m_keyChain.sign(sha256Data, security::SigningInfo(security::SigningInfo::SIGNER_TYPE_SHA256)); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 49 | |
| 50 | SecRuleRelative rule("^(<SecurityTestSecRule><Basic>)$", |
| 51 | "^(<SecurityTestSecRule><Basic>)<><KEY><><>$", |
| 52 | "==", "\\1", "\\1", true); |
| 53 | BOOST_CHECK(rule.satisfy(rsaData)); |
| 54 | BOOST_CHECK(rule.satisfy(ecdsaData)); |
| 55 | BOOST_CHECK_EQUAL(rule.satisfy(sha256Data), false); |
| 56 | |
| 57 | BOOST_CHECK(rule.matchSignerName(rsaData)); |
| 58 | BOOST_CHECK(rule.matchSignerName(ecdsaData)); |
| 59 | BOOST_CHECK_EQUAL(rule.matchSignerName(sha256Data), false); |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | BOOST_AUTO_TEST_SUITE_END() |
| 63 | |
Spyridon Mastorakis | 429634f | 2015-02-19 17:35:33 -0800 | [diff] [blame] | 64 | } // namespace tests |
| 65 | } // namespace security |
Yingdi Yu | 5ec0ee3 | 2014-06-24 16:26:09 -0700 | [diff] [blame] | 66 | } // namespace ndn |