blob: 8579fc860dc463c8bd048e615155464a2e05d560 [file] [log] [blame]
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesaventoaee2ada2022-02-18 14:43:02 -05003 * Copyright (c) 2013-2022 Regents of the University of California.
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -05004 *
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 "tests/unit/security/validator-fixture.hpp"
23
24#include "ndn-cxx/security/additional-description.hpp"
25
26namespace ndn {
27namespace security {
28inline namespace v2 {
29namespace tests {
30
31const time::milliseconds ValidatorFixtureBase::s_mockPeriod{250};
32const int ValidatorFixtureBase::s_mockTimes = 200;
33
34ValidatorFixtureBase::ValidatorFixtureBase()
35{
36 processInterest = [this] (const Interest& interest) {
37 auto cert = cache.find(interest);
38 if (cert != nullptr) {
Junxiao Shi7d728682022-04-01 01:21:13 +000039 BOOST_TEST_MESSAGE("ValidatorFixture processInterest " << interest << " reply " << cert->getName());
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -050040 face.receive(*cert);
41 }
Junxiao Shi7d728682022-04-01 01:21:13 +000042 else {
43 BOOST_TEST_MESSAGE("ValidatorFixture processInterest " << interest << " no reply");
44 }
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -050045 };
46}
47
48void
49ValidatorFixtureBase::mockNetworkOperations()
50{
51 util::signal::ScopedConnection conn = face.onSendInterest.connect([this] (const Interest& interest) {
52 if (processInterest) {
Davide Pesavento2e481fc2021-07-02 18:20:03 -040053 m_io.post([=] { processInterest(interest); });
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -050054 }
55 });
56 advanceClocks(s_mockPeriod, s_mockTimes);
57}
58
Davide Pesavento2acce252022-09-08 22:03:03 -040059void
60ValidatorFixtureBase::rewindClockAfterValidation()
61{
62 m_systemClock->advance(s_mockPeriod * s_mockTimes * -1);
63}
64
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -050065Identity
66ValidatorFixtureBase::addSubCertificate(const Name& subIdentityName, const Identity& issuer)
67{
68 auto subId = m_keyChain.createIdentity(subIdentityName);
69 auto cert = subId.getDefaultKey().getDefaultCertificate();
70 cert.setName(cert.getKeyName()
71 .append("parent")
72 .appendVersion());
73
74 SignatureInfo info;
75 auto now = time::system_clock::now();
76 info.setValidityPeriod(ValidityPeriod(now, now + 90_days));
77
78 AdditionalDescription description;
79 description.set("type", "sub-certificate");
80 info.addCustomTlv(description.wireEncode());
81
82 m_keyChain.sign(cert, signingByIdentity(issuer).setSignatureInfo(info));
83 m_keyChain.setDefaultCertificate(subId.getDefaultKey(), cert);
84
85 return subId;
86}
87
88Name
89InterestV02Pkt::makeName(Name name, KeyChain& keyChain)
90{
91 Interest interest(name);
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -050092 SigningInfo params;
93 params.setSignedInterestFormat(SignedInterestFormat::V02);
94 keyChain.sign(interest, params);
95 return interest.getName();
96}
97
98Name
99InterestV03Pkt::makeName(Name name, KeyChain& keyChain)
100{
101 Interest interest(name);
Davide Pesavento4c1ad4c2020-11-16 21:12:02 -0500102 SigningInfo params;
103 params.setSignedInterestFormat(SignedInterestFormat::V03);
104 keyChain.sign(interest, params);
105 return interest.getName();
106}
107
108} // namespace tests
109} // inline namespace v2
110} // namespace security
111} // namespace ndn