blob: 76b2f44a61c6b6a0873e05f584c5b77da1a9d6ed [file] [log] [blame]
Junxiao Shi85d90832016-08-04 03:19:46 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shid701e5b2017-07-26 01:30:41 +00002/*
Junxiao Shib55e5d32018-07-18 13:32:00 -06003 * Copyright (c) 2013-2018 Regents of the University of California.
Junxiao Shi85d90832016-08-04 03:19:46 +00004 *
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 Pesavento7e780642018-11-24 15:51:34 -050022#include "tests/make-interest-data.hpp"
23
24#include "ndn-cxx/security/signature-sha256-with-rsa.hpp"
Junxiao Shi85d90832016-08-04 03:19:46 +000025
26namespace ndn {
27namespace tests {
28
29shared_ptr<Interest>
Junxiao Shib55e5d32018-07-18 13:32:00 -060030makeInterest(const Name& name, bool canBePrefix, time::milliseconds lifetime, uint32_t nonce)
Junxiao Shi85d90832016-08-04 03:19:46 +000031{
Junxiao Shib55e5d32018-07-18 13:32:00 -060032 auto interest = make_shared<Interest>(name, lifetime);
33 interest->setCanBePrefix(canBePrefix);
Junxiao Shi85d90832016-08-04 03:19:46 +000034 if (nonce != 0) {
35 interest->setNonce(nonce);
36 }
37 return interest;
38}
39
40shared_ptr<Data>
41makeData(const Name& name)
42{
43 auto data = make_shared<Data>(name);
44 return signData(data);
45}
46
47Data&
48signData(Data& data)
49{
50 ndn::SignatureSha256WithRsa fakeSignature;
51 fakeSignature.setValue(ndn::encoding::makeEmptyBlock(tlv::SignatureValue));
52 data.setSignature(fakeSignature);
53 data.wireEncode();
54 return data;
55}
56
Junxiao Shi85d90832016-08-04 03:19:46 +000057lp::Nack
58makeNack(const Interest& interest, lp::NackReason reason)
59{
60 lp::Nack nack(interest);
61 nack.setReason(reason);
62 return nack;
63}
64
65lp::Nack
66makeNack(const Name& name, uint32_t nonce, lp::NackReason reason)
67{
68 Interest interest(name);
69 interest.setNonce(nonce);
70 return makeNack(interest, reason);
71}
72
73} // namespace tests
74} // namespace ndn