blob: fe45dd92cdfb69a34c42d45530441cdc6f3374fc [file] [log] [blame]
Junxiao Shi7809e302016-07-23 14:11:25 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesaventobf28cd72017-08-13 17:22:47 -04003 * Copyright (c) 2014-2017, Regents of the University of California,
Junxiao Shi7809e302016-07-23 14:11:25 +00004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of ndn-tools (Named Data Networking Essential Tools).
12 * See AUTHORS.md for complete list of ndn-tools authors and contributors.
13 *
14 * ndn-tools is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * ndn-tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * ndn-tools, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#include "test-common.hpp"
27#include <ndn-cxx/security/signature-sha256-with-rsa.hpp>
28
29namespace ndn {
30namespace tests {
31
32UnitTestTimeFixture::UnitTestTimeFixture()
33 : steadyClock(make_shared<time::UnitTestSteadyClock>())
34 , systemClock(make_shared<time::UnitTestSystemClock>())
35{
36 time::setCustomClocks(steadyClock, systemClock);
37}
38
39UnitTestTimeFixture::~UnitTestTimeFixture()
40{
41 time::setCustomClocks(nullptr, nullptr);
42}
43
44void
45UnitTestTimeFixture::advanceClocks(boost::asio::io_service& io,
46 time::nanoseconds tick, size_t nTicks)
47{
48 this->advanceClocks(io, tick, tick * nTicks);
49}
50
51void
52UnitTestTimeFixture::advanceClocks(boost::asio::io_service& io,
53 time::nanoseconds tick, time::nanoseconds total)
54{
55 BOOST_ASSERT(tick > time::nanoseconds::zero());
56 BOOST_ASSERT(total >= time::nanoseconds::zero());
57
58 time::nanoseconds remaining = total;
59 while (remaining > time::nanoseconds::zero()) {
60 if (remaining >= tick) {
61 steadyClock->advance(tick);
62 systemClock->advance(tick);
63 remaining -= tick;
64 }
65 else {
66 steadyClock->advance(remaining);
67 systemClock->advance(remaining);
68 remaining = time::nanoseconds::zero();
69 }
70
71 if (io.stopped())
72 io.reset();
73 io.poll();
74 }
75}
76
77shared_ptr<Interest>
78makeInterest(const Name& name, uint32_t nonce)
79{
80 auto interest = make_shared<Interest>(name);
81 if (nonce != 0) {
82 interest->setNonce(nonce);
83 }
84 return interest;
85}
86
87shared_ptr<Data>
88makeData(const Name& name)
89{
90 auto data = make_shared<Data>(name);
91 return signData(data);
92}
93
94Data&
95signData(Data& data)
96{
97 ndn::SignatureSha256WithRsa fakeSignature;
98 fakeSignature.setValue(ndn::encoding::makeEmptyBlock(tlv::SignatureValue));
99 data.setSignature(fakeSignature);
100 data.wireEncode();
Junxiao Shi7809e302016-07-23 14:11:25 +0000101 return data;
102}
103
Junxiao Shi7809e302016-07-23 14:11:25 +0000104lp::Nack
Zhuo Lib3558892016-08-12 15:51:12 -0700105makeNack(const Interest& interest, lp::NackReason reason)
106{
107 lp::Nack nack(interest);
108 nack.setReason(reason);
109 return nack;
110}
111
112lp::Nack
Junxiao Shi7809e302016-07-23 14:11:25 +0000113makeNack(const Name& name, uint32_t nonce, lp::NackReason reason)
114{
115 Interest interest(name);
116 interest.setNonce(nonce);
Davide Pesaventobf28cd72017-08-13 17:22:47 -0400117 return makeNack(interest, reason);
Junxiao Shi7809e302016-07-23 14:11:25 +0000118}
119
120} // namespace tests
121} // namespace ndn