Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | 2642cd2 | 2017-07-13 21:34:53 -0400 | [diff] [blame] | 2 | /* |
Eric Newberry | 0c84164 | 2018-01-17 15:01:00 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 4 | * 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" |
Alexander Afanasyev | ded1742 | 2018-04-03 19:00:23 -0400 | [diff] [blame] | 30 | #include "core/network-predicate.hpp" |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 31 | |
| 32 | #include "channel-fixture.hpp" |
| 33 | |
| 34 | namespace nfd { |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 35 | namespace face { |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 36 | namespace tests { |
| 37 | |
| 38 | class TcpChannelFixture : public ChannelFixture<TcpChannel, tcp::Endpoint> |
| 39 | { |
| 40 | protected: |
Alexander Afanasyev | ded1742 | 2018-04-03 19:00:23 -0400 | [diff] [blame] | 41 | TcpChannelFixture() |
| 42 | { |
| 43 | local.assign({{"subnet", "127.0.0.0/8"}, {"subnet", "::1/128"}}, {}); |
| 44 | } |
| 45 | |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 46 | unique_ptr<TcpChannel> |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 47 | makeChannel(const boost::asio::ip::address& addr, uint16_t port = 0) final |
| 48 | { |
| 49 | if (port == 0) |
| 50 | port = getNextPort(); |
| 51 | |
Alexander Afanasyev | ded1742 | 2018-04-03 19:00:23 -0400 | [diff] [blame] | 52 | return make_unique<TcpChannel>(tcp::Endpoint(addr, port), false, |
| 53 | std::bind(&TcpChannelFixture::determineFaceScope, this, _1, _2)); |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 54 | } |
| 55 | |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 56 | void |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 57 | connect(TcpChannel& channel) final |
| 58 | { |
| 59 | g_io.post([&] { |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 60 | channel.connect(listenerEp, {}, |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 61 | [this] (const shared_ptr<Face>& newFace) { |
| 62 | BOOST_REQUIRE(newFace != nullptr); |
| 63 | connectFaceClosedSignal(*newFace, [this] { limitedIo.afterOp(); }); |
| 64 | clientFaces.push_back(newFace); |
| 65 | limitedIo.afterOp(); |
| 66 | }, |
| 67 | ChannelFixture::unexpectedFailure); |
| 68 | }); |
| 69 | } |
| 70 | |
Alexander Afanasyev | ded1742 | 2018-04-03 19:00:23 -0400 | [diff] [blame] | 71 | ndn::nfd::FaceScope |
| 72 | determineFaceScope(const boost::asio::ip::address& localAddress, |
| 73 | const boost::asio::ip::address& remoteAddress) |
| 74 | { |
| 75 | if (local(localAddress) && local(remoteAddress)) { |
| 76 | return ndn::nfd::FACE_SCOPE_LOCAL; |
| 77 | } |
| 78 | else { |
| 79 | return ndn::nfd::FACE_SCOPE_NON_LOCAL; |
| 80 | } |
| 81 | } |
| 82 | |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 83 | protected: |
| 84 | std::vector<shared_ptr<Face>> clientFaces; |
Alexander Afanasyev | ded1742 | 2018-04-03 19:00:23 -0400 | [diff] [blame] | 85 | IpAddressPredicate local; |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | } // namespace tests |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 89 | } // namespace face |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 90 | } // namespace nfd |
| 91 | |
| 92 | #endif // NFD_TESTS_DAEMON_FACE_TCP_CHANNEL_FIXTURE_HPP |