blob: b6eb99c08fde60bad217f00b05f35d3357d9dac7 [file] [log] [blame]
Davide Pesavento9a00fab2016-09-27 11:22:46 +02001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Eric Newberry2642cd22017-07-13 21:34:53 -04002/*
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_TCP_CHANNEL_FIXTURE_HPP
27#define NFD_TESTS_DAEMON_FACE_TCP_CHANNEL_FIXTURE_HPP
28
29#include "face/tcp-channel.hpp"
Davide Pesavento2cae8ca2019-04-18 20:48:05 -040030#include "face/network-predicate.hpp"
Davide Pesavento9a00fab2016-09-27 11:22:46 +020031
32#include "channel-fixture.hpp"
33
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040034namespace nfd::tests {
35
36using face::TcpChannel;
Davide Pesavento9a00fab2016-09-27 11:22:46 +020037
38class TcpChannelFixture : public ChannelFixture<TcpChannel, tcp::Endpoint>
39{
40protected:
Alexander Afanasyevded17422018-04-03 19:00:23 -040041 TcpChannelFixture()
42 {
43 local.assign({{"subnet", "127.0.0.0/8"}, {"subnet", "::1/128"}}, {});
44 }
45
Alexander Afanasyev3a2339a2020-05-27 23:05:06 -040046 shared_ptr<TcpChannel>
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040047 makeChannel(const boost::asio::ip::address& addr, uint16_t port = 0,
48 std::optional<size_t> mtu = std::nullopt) final
Davide Pesavento9a00fab2016-09-27 11:22:46 +020049 {
50 if (port == 0)
51 port = getNextPort();
52
Alexander Afanasyev3a2339a2020-05-27 23:05:06 -040053 return std::make_shared<TcpChannel>(tcp::Endpoint(addr, port), false,
54 std::bind(&TcpChannelFixture::determineFaceScope, this, _1, _2));
Davide Pesavento9a00fab2016-09-27 11:22:46 +020055 }
56
Davide Pesavento8fd15e62017-04-06 19:58:54 -040057 void
Davide Pesavento9a00fab2016-09-27 11:22:46 +020058 connect(TcpChannel& channel) final
59 {
60 g_io.post([&] {
Davide Pesavento15b55052018-01-27 19:09:28 -050061 channel.connect(listenerEp, {},
Davide Pesavento9a00fab2016-09-27 11:22:46 +020062 [this] (const shared_ptr<Face>& newFace) {
63 BOOST_REQUIRE(newFace != nullptr);
64 connectFaceClosedSignal(*newFace, [this] { limitedIo.afterOp(); });
65 clientFaces.push_back(newFace);
66 limitedIo.afterOp();
67 },
68 ChannelFixture::unexpectedFailure);
69 });
70 }
71
Alexander Afanasyevded17422018-04-03 19:00:23 -040072 ndn::nfd::FaceScope
73 determineFaceScope(const boost::asio::ip::address& localAddress,
74 const boost::asio::ip::address& remoteAddress)
75 {
76 if (local(localAddress) && local(remoteAddress)) {
77 return ndn::nfd::FACE_SCOPE_LOCAL;
78 }
79 else {
80 return ndn::nfd::FACE_SCOPE_NON_LOCAL;
81 }
82 }
83
Davide Pesavento9a00fab2016-09-27 11:22:46 +020084protected:
85 std::vector<shared_ptr<Face>> clientFaces;
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040086 face::IpAddressPredicate local;
Davide Pesavento9a00fab2016-09-27 11:22:46 +020087};
88
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040089} // namespace nfd::tests
Davide Pesavento9a00fab2016-09-27 11:22:46 +020090
91#endif // NFD_TESTS_DAEMON_FACE_TCP_CHANNEL_FIXTURE_HPP