blob: f612f6d100f0f1b8dba014a4852a8fba41e513ac [file] [log] [blame]
Davide Pesavento9a00fab2016-09-27 11:22:46 +02001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento19779d82019-02-14 13:40:04 -05002/*
Davide Pesaventob7bfcb92022-05-22 23:55:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Davide Pesavento9a00fab2016-09-27 11:22:46 +02004 * 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 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/>.
24 */
25
26#ifndef NFD_TESTS_DAEMON_FACE_CHANNEL_FIXTURE_HPP
27#define NFD_TESTS_DAEMON_FACE_CHANNEL_FIXTURE_HPP
28
29#include "face/channel.hpp"
Davide Pesaventocb425e82019-07-14 21:48:22 -040030#include "face/face.hpp"
Davide Pesavento3dade002019-03-19 11:29:56 -060031
Davide Pesaventocf7db2f2019-03-24 23:17:28 -040032#include "tests/test-common.hpp"
Davide Pesavento3dade002019-03-19 11:29:56 -060033#include "tests/daemon/limited-io.hpp"
Davide Pesavento9a00fab2016-09-27 11:22:46 +020034
35#include <type_traits>
36
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040037namespace nfd::tests {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040038
Davide Pesavento9a00fab2016-09-27 11:22:46 +020039template<class ChannelT, class EndpointT>
Davide Pesaventocf7db2f2019-03-24 23:17:28 -040040class ChannelFixture : public GlobalIoFixture
Davide Pesavento9a00fab2016-09-27 11:22:46 +020041{
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040042 static_assert(std::is_base_of_v<face::Channel, ChannelT>);
Davide Pesavento9a00fab2016-09-27 11:22:46 +020043
44public:
45 virtual
46 ~ChannelFixture() = default;
47
48 static void
49 unexpectedFailure(uint32_t status, const std::string& reason)
50 {
51 BOOST_FAIL("No error expected, but got: [" << status << ": " << reason << "]");
52 }
53
54protected:
55 uint16_t
56 getNextPort()
57 {
58 return m_nextPort++;
59 }
60
Alexander Afanasyev3a2339a2020-05-27 23:05:06 -040061 virtual shared_ptr<ChannelT>
Davide Pesavento9a00fab2016-09-27 11:22:46 +020062 makeChannel()
63 {
Davide Pesavento19779d82019-02-14 13:40:04 -050064 BOOST_FAIL("Unimplemented");
65 return nullptr;
Davide Pesavento9a00fab2016-09-27 11:22:46 +020066 }
67
Alexander Afanasyev3a2339a2020-05-27 23:05:06 -040068 virtual shared_ptr<ChannelT>
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040069 makeChannel(const boost::asio::ip::address&, uint16_t port = 0,
70 std::optional<size_t> mtu = std::nullopt)
Davide Pesavento9a00fab2016-09-27 11:22:46 +020071 {
Davide Pesavento19779d82019-02-14 13:40:04 -050072 BOOST_FAIL("Unimplemented");
73 return nullptr;
Davide Pesavento9a00fab2016-09-27 11:22:46 +020074 }
75
76 void
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040077 listen(const boost::asio::ip::address& addr, std::optional<size_t> mtu = std::nullopt)
Davide Pesavento9a00fab2016-09-27 11:22:46 +020078 {
79 listenerEp = EndpointT{addr, 7030};
Junxiao Shia6286a92021-02-23 06:43:52 -070080 listenerChannel = makeChannel(addr, 7030, mtu);
Davide Pesavento9a00fab2016-09-27 11:22:46 +020081 listenerChannel->listen(
82 [this] (const shared_ptr<Face>& newFace) {
83 BOOST_REQUIRE(newFace != nullptr);
84 connectFaceClosedSignal(*newFace, [this] { limitedIo.afterOp(); });
85 listenerFaces.push_back(newFace);
86 limitedIo.afterOp();
87 },
88 ChannelFixture::unexpectedFailure);
89 }
90
91 virtual void
92 connect(ChannelT&)
93 {
Davide Pesavento19779d82019-02-14 13:40:04 -050094 BOOST_FAIL("Unimplemented");
Davide Pesavento9a00fab2016-09-27 11:22:46 +020095 }
96
97protected:
98 LimitedIo limitedIo;
99 EndpointT listenerEp;
Alexander Afanasyev3a2339a2020-05-27 23:05:06 -0400100 shared_ptr<ChannelT> listenerChannel;
Davide Pesavento9a00fab2016-09-27 11:22:46 +0200101 std::vector<shared_ptr<Face>> listenerFaces;
102
103private:
104 uint16_t m_nextPort = 7050;
105};
106
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400107} // namespace nfd::tests
Davide Pesavento9a00fab2016-09-27 11:22:46 +0200108
109#endif // NFD_TESTS_DAEMON_FACE_CHANNEL_FIXTURE_HPP