Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -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 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 22 | #include "ndn-cxx/security/validity-period.hpp" |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 23 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 24 | #include "tests/boost-test.hpp" |
| 25 | #include "tests/unit/unit-test-time-fixture.hpp" |
Davide Pesavento | 74daf74 | 2018-11-23 18:14:13 -0500 | [diff] [blame] | 26 | |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 27 | #include <boost/lexical_cast.hpp> |
| 28 | |
| 29 | namespace ndn { |
| 30 | namespace security { |
Yingdi Yu | 10bf63a | 2015-11-04 14:14:37 -0800 | [diff] [blame] | 31 | namespace tests { |
| 32 | |
| 33 | using namespace ndn::tests; |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 34 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 35 | BOOST_AUTO_TEST_SUITE(Security) |
| 36 | BOOST_AUTO_TEST_SUITE(TestValidityPeriod) |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 37 | |
Yingdi Yu | 10bf63a | 2015-11-04 14:14:37 -0800 | [diff] [blame] | 38 | BOOST_FIXTURE_TEST_CASE(ConstructorSetter, UnitTestTimeFixture) |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 39 | { |
Yingdi Yu | 10bf63a | 2015-11-04 14:14:37 -0800 | [diff] [blame] | 40 | time::system_clock::TimePoint now = this->systemClock->getNow(); |
| 41 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 42 | time::system_clock::TimePoint notBefore = now - 1_day; |
| 43 | time::system_clock::TimePoint notAfter = notBefore + 2_days; |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 44 | |
| 45 | ValidityPeriod validity1 = ValidityPeriod(notBefore, notAfter); |
| 46 | |
| 47 | auto period = validity1.getPeriod(); |
| 48 | BOOST_CHECK_GE(period.first, notBefore); // fractional seconds will be removed |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 49 | BOOST_CHECK_LT(period.first, notBefore + 1_s); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 50 | |
| 51 | BOOST_CHECK_LE(period.second, notAfter); // fractional seconds will be removed |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 52 | BOOST_CHECK_GT(period.second, notAfter - 1_s); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 53 | BOOST_CHECK_EQUAL(validity1.isValid(), true); |
| 54 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 55 | BOOST_CHECK_EQUAL(ValidityPeriod(now - 2_days, now - 1_day).isValid(), false); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 56 | |
| 57 | BOOST_CHECK_NO_THROW((ValidityPeriod())); |
| 58 | ValidityPeriod validity2; |
Yingdi Yu | 10bf63a | 2015-11-04 14:14:37 -0800 | [diff] [blame] | 59 | BOOST_CHECK_EQUAL(validity2.isValid(), false); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 60 | |
| 61 | validity2.setPeriod(notBefore, notAfter); |
| 62 | BOOST_CHECK(validity2.getPeriod() != std::make_pair(time::getUnixEpoch(), time::getUnixEpoch())); |
| 63 | BOOST_CHECK_EQUAL(validity2, validity1); |
| 64 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 65 | validity1.setPeriod(time::getUnixEpoch(), time::getUnixEpoch() + 10 * 365_days); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 66 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(validity1), |
| 67 | "(19700101T000000, 19791230T000000)"); |
| 68 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 69 | validity1.setPeriod(time::getUnixEpoch() + 1_ns, |
| 70 | time::getUnixEpoch() + (10 * 365_days) + 1_ns); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 71 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(validity1), |
| 72 | "(19700101T000001, 19791230T000000)"); |
Yingdi Yu | 10bf63a | 2015-11-04 14:14:37 -0800 | [diff] [blame] | 73 | |
| 74 | BOOST_CHECK_EQUAL(ValidityPeriod(now, now).isValid(), true); |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 75 | BOOST_CHECK_EQUAL(ValidityPeriod(now + 1_s, now).isValid(), false); |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | const uint8_t VP1[] = { |
| 79 | 0xfd, 0x00, 0xfd, 0x26, // ValidityPeriod |
| 80 | 0xfd, 0x00, 0xfe, 0x0f, // NotBefore |
| 81 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x31, // 19700101T000000 |
| 82 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, |
| 83 | 0xfd, 0x00, 0xff, 0x0f, // NotAfter |
| 84 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x32, // 19700102T000000 |
| 85 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30 |
| 86 | }; |
| 87 | |
| 88 | BOOST_AUTO_TEST_CASE(EncodingDecoding) |
| 89 | { |
| 90 | time::system_clock::TimePoint notBefore = time::getUnixEpoch(); |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 91 | time::system_clock::TimePoint notAfter = notBefore + 1_day; |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 92 | |
| 93 | ValidityPeriod v1(notBefore, notAfter); |
| 94 | |
| 95 | BOOST_CHECK_EQUAL_COLLECTIONS(v1.wireEncode().begin(), v1.wireEncode().end(), |
| 96 | VP1, VP1 + sizeof(VP1)); |
| 97 | |
| 98 | BOOST_REQUIRE_NO_THROW(ValidityPeriod(Block(VP1, sizeof(VP1)))); |
| 99 | Block block(VP1, sizeof(VP1)); |
| 100 | ValidityPeriod v2(block); |
| 101 | BOOST_CHECK(v1.getPeriod() == v2.getPeriod()); |
| 102 | } |
| 103 | |
| 104 | const uint8_t VP_E1[] = { |
| 105 | 0xfd, 0x00, 0xff, 0x26, // ValidityPeriod (error) |
| 106 | 0xfd, 0x00, 0xfe, 0x0f, // NotBefore |
| 107 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x31, // 19700101T000000 |
| 108 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, |
| 109 | 0xfd, 0x00, 0xff, 0x0f, // NotAfter |
| 110 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x32, // 19700102T000000 |
| 111 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30 |
| 112 | }; |
| 113 | |
| 114 | const uint8_t VP_E2[] = { |
| 115 | 0xfd, 0x00, 0xfd, 0x26, // ValidityPeriod |
| 116 | 0xfd, 0x00, 0xff, 0x0f, // NotBefore (error) |
| 117 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x31, // 19700101T000000 |
| 118 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, |
| 119 | 0xfd, 0x00, 0xff, 0x0f, // NotAfter |
| 120 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x32, // 19700102T000000 |
| 121 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30 |
| 122 | }; |
| 123 | |
| 124 | const uint8_t VP_E3[] = { |
| 125 | 0xfd, 0x00, 0xfd, 0x26, // ValidityPeriod |
| 126 | 0xfd, 0x00, 0xfe, 0x0f, // NotBefore |
| 127 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x31, // 19700101T000000 |
| 128 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, |
| 129 | 0xfd, 0x00, 0xfe, 0x0f, // NotAfter (error) |
| 130 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x32, // 19700102T000000 |
| 131 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30 |
| 132 | }; |
| 133 | |
| 134 | const uint8_t VP_E4[] = { |
| 135 | 0xfd, 0x00, 0xfd, 0x39, // ValidityPeriod |
| 136 | 0xfd, 0x00, 0xfe, 0x0f, // NotBefore |
| 137 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x31, // 19700101T000000 |
| 138 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, |
| 139 | 0xfd, 0x00, 0xff, 0x0f, // NotAfter |
| 140 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x32, // 19700102T000000 |
| 141 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, |
| 142 | 0xfd, 0x00, 0xff, 0x0f, // NotAfter (error) |
| 143 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x32, // 19700102T000000 |
| 144 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30 |
| 145 | }; |
| 146 | |
| 147 | const uint8_t VP_E5[] = { |
| 148 | 0xfd, 0x00, 0xfd, 0x13, // ValidityPeriod |
| 149 | 0xfd, 0x00, 0xfe, 0x0f, // NotBefore |
| 150 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x31, // 19700101T000000 |
| 151 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30 |
| 152 | }; |
| 153 | |
| 154 | const uint8_t VP_E6[] = { |
| 155 | 0xfd, 0x00, 0xfd, 0x26, // ValidityPeriod |
| 156 | 0xfd, 0x00, 0xfe, 0x0f, // NotBefore |
| 157 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x31, // 19700101T00000\xFF |
| 158 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0xFF, |
| 159 | 0xfd, 0x00, 0xff, 0x0f, // NotAfter |
| 160 | 0x31, 0x39, 0x37, 0x30, 0x30, 0x31, 0x30, 0x32, // 19700102T000000 |
| 161 | 0x54, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30 |
| 162 | }; |
| 163 | |
| 164 | |
| 165 | BOOST_AUTO_TEST_CASE(DecodingError) |
| 166 | { |
| 167 | BOOST_CHECK_THROW(ValidityPeriod(Block(VP_E1, sizeof(VP_E1))), ValidityPeriod::Error); |
| 168 | |
| 169 | BOOST_CHECK_THROW(ValidityPeriod(Block(VP_E2, sizeof(VP_E2))), ValidityPeriod::Error); |
| 170 | BOOST_CHECK_THROW(ValidityPeriod(Block(VP_E3, sizeof(VP_E3))), ValidityPeriod::Error); |
| 171 | |
| 172 | BOOST_CHECK_THROW(ValidityPeriod(Block(VP_E4, sizeof(VP_E4))), ValidityPeriod::Error); |
| 173 | BOOST_CHECK_THROW(ValidityPeriod(Block(VP_E5, sizeof(VP_E5))), ValidityPeriod::Error); |
| 174 | |
| 175 | Block emptyBlock; |
| 176 | BOOST_CHECK_THROW((ValidityPeriod(emptyBlock)), ValidityPeriod::Error); |
| 177 | |
| 178 | BOOST_CHECK_THROW(ValidityPeriod(Block(VP_E6, sizeof(VP_E6))), ValidityPeriod::Error); |
| 179 | } |
| 180 | |
| 181 | BOOST_AUTO_TEST_CASE(Comparison) |
| 182 | { |
| 183 | time::system_clock::TimePoint notBefore = time::getUnixEpoch(); |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 184 | time::system_clock::TimePoint notAfter = notBefore + 1_day; |
| 185 | time::system_clock::TimePoint notAfter2 = notBefore + 2_days; |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 186 | |
| 187 | ValidityPeriod validity1(notBefore, notAfter); |
| 188 | ValidityPeriod validity2(notBefore, notAfter); |
| 189 | BOOST_CHECK(validity1 == validity2); |
| 190 | |
| 191 | ValidityPeriod validity3(notBefore, notAfter2); |
| 192 | BOOST_CHECK(validity1 != validity3); |
| 193 | } |
| 194 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 195 | BOOST_AUTO_TEST_SUITE_END() // TestValidityPeriod |
| 196 | BOOST_AUTO_TEST_SUITE_END() // Security |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 197 | |
Yingdi Yu | 10bf63a | 2015-11-04 14:14:37 -0800 | [diff] [blame] | 198 | } // namespace tests |
Yingdi Yu | 7a81389 | 2015-06-09 14:19:54 -0700 | [diff] [blame] | 199 | } // namespace security |
| 200 | } // namespace ndn |