blob: 798fedd40dde7958149793f2822df16a7f933318 [file] [log] [blame]
Davide Pesavento9a00fab2016-09-27 11:22:46 +02001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesavento8fd15e62017-04-06 19:58:54 -04003 * Copyright (c) 2014-2017, 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"
30
31#include "channel-fixture.hpp"
32
33namespace nfd {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040034namespace face {
Davide Pesavento9a00fab2016-09-27 11:22:46 +020035namespace tests {
36
37class TcpChannelFixture : public ChannelFixture<TcpChannel, tcp::Endpoint>
38{
39protected:
Davide Pesavento8fd15e62017-04-06 19:58:54 -040040 unique_ptr<TcpChannel>
Davide Pesavento9a00fab2016-09-27 11:22:46 +020041 makeChannel(const boost::asio::ip::address& addr, uint16_t port = 0) final
42 {
43 if (port == 0)
44 port = getNextPort();
45
46 return make_unique<TcpChannel>(tcp::Endpoint(addr, port));
47 }
48
Davide Pesavento8fd15e62017-04-06 19:58:54 -040049 void
Davide Pesavento9a00fab2016-09-27 11:22:46 +020050 connect(TcpChannel& channel) final
51 {
52 g_io.post([&] {
Davide Pesaventoa3c9ddb2017-04-10 22:15:24 -040053 channel.connect(listenerEp, ndn::nfd::FACE_PERSISTENCY_PERSISTENT, false,
Davide Pesavento9a00fab2016-09-27 11:22:46 +020054 [this] (const shared_ptr<Face>& newFace) {
55 BOOST_REQUIRE(newFace != nullptr);
56 connectFaceClosedSignal(*newFace, [this] { limitedIo.afterOp(); });
57 clientFaces.push_back(newFace);
58 limitedIo.afterOp();
59 },
60 ChannelFixture::unexpectedFailure);
61 });
62 }
63
64protected:
65 std::vector<shared_ptr<Face>> clientFaces;
66};
67
68} // namespace tests
Davide Pesavento8fd15e62017-04-06 19:58:54 -040069} // namespace face
Davide Pesavento9a00fab2016-09-27 11:22:46 +020070} // namespace nfd
71
72#endif // NFD_TESTS_DAEMON_FACE_TCP_CHANNEL_FIXTURE_HPP