blob: 9f5a7901f50ac2a2986a03a5bc65e03904eaaea0 [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/*
Davide Pesavento53533942020-03-04 23:10:06 -05003 * Copyright (c) 2013-2020 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
Junxiao Shi85d90832016-08-04 03:19:46 +000024namespace ndn {
25namespace tests {
26
27shared_ptr<Interest>
Davide Pesavento53533942020-03-04 23:10:06 -050028makeInterest(const Name& name, bool canBePrefix, time::milliseconds lifetime,
29 optional<Interest::Nonce> nonce)
Junxiao Shi85d90832016-08-04 03:19:46 +000030{
Davide Pesavento25d4f1c2020-04-29 23:31:04 -040031 auto interest = std::make_shared<Interest>(name, lifetime);
Junxiao Shib55e5d32018-07-18 13:32:00 -060032 interest->setCanBePrefix(canBePrefix);
Davide Pesavento53533942020-03-04 23:10:06 -050033 interest->setNonce(nonce);
Junxiao Shi85d90832016-08-04 03:19:46 +000034 return interest;
35}
36
37shared_ptr<Data>
38makeData(const Name& name)
39{
Davide Pesavento25d4f1c2020-04-29 23:31:04 -040040 auto data = std::make_shared<Data>(name);
Junxiao Shi85d90832016-08-04 03:19:46 +000041 return signData(data);
42}
43
44Data&
45signData(Data& data)
46{
Eric Newberrya3c8bd12020-05-15 17:27:07 -070047 data.setSignatureInfo(SignatureInfo(tlv::SignatureSha256WithRsa));
Davide Pesavento14c56cd2020-05-21 01:44:03 -040048 data.setSignatureValue(std::make_shared<Buffer>());
Junxiao Shi85d90832016-08-04 03:19:46 +000049 data.wireEncode();
50 return data;
51}
52
Junxiao Shi85d90832016-08-04 03:19:46 +000053lp::Nack
Davide Pesavento53533942020-03-04 23:10:06 -050054makeNack(Interest interest, lp::NackReason reason)
Junxiao Shi85d90832016-08-04 03:19:46 +000055{
Davide Pesavento53533942020-03-04 23:10:06 -050056 lp::Nack nack(std::move(interest));
Junxiao Shi85d90832016-08-04 03:19:46 +000057 nack.setReason(reason);
58 return nack;
59}
60
Junxiao Shi85d90832016-08-04 03:19:46 +000061} // namespace tests
62} // namespace ndn