blob: e6c726ef53d226e64dd802635596db3974c2ae73 [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 Pesaventof6b45892023-03-13 15:00:51 -04003 * Copyright (c) 2013-2023 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 Pesavento4c1ad4c2020-11-16 21:12:02 -050022#include "tests/test-common.hpp"
Davide Pesavento7e780642018-11-24 15:51:34 -050023
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040024namespace ndn::tests {
Junxiao Shi85d90832016-08-04 03:19:46 +000025
26shared_ptr<Interest>
Davide Pesaventof6b45892023-03-13 15:00:51 -040027makeInterest(const Name& name, bool canBePrefix, std::optional<time::milliseconds> lifetime,
28 std::optional<Interest::Nonce> nonce)
Junxiao Shi85d90832016-08-04 03:19:46 +000029{
Davide Pesavento287a7fa2020-10-01 22:46:43 -040030 auto interest = std::make_shared<Interest>(name);
Junxiao Shib55e5d32018-07-18 13:32:00 -060031 interest->setCanBePrefix(canBePrefix);
Davide Pesavento287a7fa2020-10-01 22:46:43 -040032 if (lifetime) {
33 interest->setInterestLifetime(*lifetime);
34 }
Davide Pesavento53533942020-03-04 23:10:06 -050035 interest->setNonce(nonce);
Junxiao Shi85d90832016-08-04 03:19:46 +000036 return interest;
37}
38
39shared_ptr<Data>
40makeData(const Name& name)
41{
Davide Pesavento25d4f1c2020-04-29 23:31:04 -040042 auto data = std::make_shared<Data>(name);
Junxiao Shi85d90832016-08-04 03:19:46 +000043 return signData(data);
44}
45
46Data&
47signData(Data& data)
48{
Davide Pesavento287a7fa2020-10-01 22:46:43 -040049 data.setSignatureInfo(SignatureInfo(tlv::NullSignature));
Davide Pesavento14c56cd2020-05-21 01:44:03 -040050 data.setSignatureValue(std::make_shared<Buffer>());
Junxiao Shi85d90832016-08-04 03:19:46 +000051 data.wireEncode();
52 return data;
53}
54
Junxiao Shi85d90832016-08-04 03:19:46 +000055lp::Nack
Davide Pesavento53533942020-03-04 23:10:06 -050056makeNack(Interest interest, lp::NackReason reason)
Junxiao Shi85d90832016-08-04 03:19:46 +000057{
Davide Pesavento53533942020-03-04 23:10:06 -050058 lp::Nack nack(std::move(interest));
Junxiao Shi85d90832016-08-04 03:19:46 +000059 nack.setReason(reason);
60 return nack;
61}
62
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040063} // namespace ndn::tests