blob: 15ab44547c37f775062d3f1bf04888baae789493 [file] [log] [blame]
Junxiao Shicbba04c2014-01-26 14:21:22 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento16916ae2019-03-29 23:53:26 -04002/*
Davide Pesaventoe422f9e2022-06-03 01:30:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08004 * 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.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD 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 * NFD 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 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Junxiao Shi08d07a72014-06-09 23:17:57 -070024 */
Junxiao Shicbba04c2014-01-26 14:21:22 -070025
Junxiao Shi08d07a72014-06-09 23:17:57 -070026#ifndef NFD_TESTS_DAEMON_FACE_DUMMY_FACE_HPP
27#define NFD_TESTS_DAEMON_FACE_DUMMY_FACE_HPP
Junxiao Shicbba04c2014-01-26 14:21:22 -070028
29#include "face/face.hpp"
30
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040031namespace nfd::tests {
Junxiao Shicbba04c2014-01-26 14:21:22 -070032
Davide Pesaventoa8098582019-03-31 15:48:02 -040033class DummyLinkService;
34
35/** \brief A Face for unit testing.
Junxiao Shicde37ad2015-12-24 01:02:05 -070036 *
37 * The DummyFace has no underlying transport, but allows observing outgoing packets
38 * and injecting incoming packets at network layer.
39 * It's primarily used for forwarding test suites, but can be used in other tests as well.
40 *
41 * Outgoing network-layer packets sent through the DummyFace are recorded in sent* vectors,
42 * which can be observed in test cases.
43 * Incoming network-layer packets can be injected from test cases through receive* method.
Junxiao Shicbba04c2014-01-26 14:21:22 -070044 */
Junxiao Shi0de23a22015-12-03 20:07:02 +000045class DummyFace : public Face
Junxiao Shicbba04c2014-01-26 14:21:22 -070046{
47public:
Davide Pesaventoa8098582019-03-31 15:48:02 -040048 explicit
Junxiao Shicde37ad2015-12-24 01:02:05 -070049 DummyFace(const std::string& localUri = "dummy://", const std::string& remoteUri = "dummy://",
50 ndn::nfd::FaceScope scope = ndn::nfd::FACE_SCOPE_NON_LOCAL,
51 ndn::nfd::FacePersistency persistency = ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
52 ndn::nfd::LinkType linkType = ndn::nfd::LINK_TYPE_POINT_TO_POINT);
53
54 /** \brief changes face state
Junxiao Shi02b73f52016-07-28 01:48:27 +000055 * \throw std::runtime_error state transition is invalid
Junxiao Shicde37ad2015-12-24 01:02:05 -070056 */
Davide Pesavento66ff0982015-01-29 22:39:00 +010057 void
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040058 setState(face::FaceState state);
Junxiao Shi9b27bd22014-02-26 20:29:58 -070059
Junxiao Shicde37ad2015-12-24 01:02:05 -070060 /** \brief causes the face to receive an Interest
61 */
Davide Pesavento66ff0982015-01-29 22:39:00 +010062 void
Teng Liangd94b7b32022-07-10 21:29:37 +080063 receiveInterest(const Interest& interest, const EndpointId& endpointId = {});
Alexander Afanasyeva0a10fb2014-02-13 19:56:15 -080064
Junxiao Shicde37ad2015-12-24 01:02:05 -070065 /** \brief causes the face to receive a Data
66 */
Davide Pesavento66ff0982015-01-29 22:39:00 +010067 void
Teng Liangd94b7b32022-07-10 21:29:37 +080068 receiveData(const Data& data, const EndpointId& endpointId = {});
Alexander Afanasyev93ce75e2014-02-18 19:45:34 -080069
Junxiao Shicde37ad2015-12-24 01:02:05 -070070 /** \brief causes the face to receive a Nack
71 */
Junxiao Shi9b27bd22014-02-26 20:29:58 -070072 void
Teng Liangd94b7b32022-07-10 21:29:37 +080073 receiveNack(const lp::Nack& nack, const EndpointId& endpointId = {});
Junxiao Shi9b27bd22014-02-26 20:29:58 -070074
Davide Pesaventoa8098582019-03-31 15:48:02 -040075 /** \brief Emitted after a network-layer packet is sent.
Junxiao Shicde37ad2015-12-24 01:02:05 -070076 *
Davide Pesaventoa8098582019-03-31 15:48:02 -040077 * The packet type is reported via the argument, whose value will be one of
78 * tlv::Interest, tlv::Data, or lp::tlv::Nack. Signal handlers may retrieve
79 * the packet via `sentInterests.back()`, `sentData.back()`, or `sentNacks.back()`.
Junxiao Shicde37ad2015-12-24 01:02:05 -070080 */
Davide Pesaventoa8098582019-03-31 15:48:02 -040081 signal::Signal<DummyLinkService, uint32_t>& afterSend;
Junxiao Shi9b27bd22014-02-26 20:29:58 -070082
Junxiao Shicde37ad2015-12-24 01:02:05 -070083private:
Davide Pesaventoa8098582019-03-31 15:48:02 -040084 DummyLinkService*
85 getDummyLinkService() const;
Junxiao Shicde37ad2015-12-24 01:02:05 -070086
Junxiao Shi9b27bd22014-02-26 20:29:58 -070087public:
Junxiao Shicde37ad2015-12-24 01:02:05 -070088 std::vector<Interest>& sentInterests;
89 std::vector<Data>& sentData;
90 std::vector<lp::Nack>& sentNacks;
Junxiao Shicbba04c2014-01-26 14:21:22 -070091};
92
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040093} // namespace nfd::tests
Junxiao Shicbba04c2014-01-26 14:21:22 -070094
Junxiao Shi08d07a72014-06-09 23:17:57 -070095#endif // NFD_TESTS_DAEMON_FACE_DUMMY_FACE_HPP