Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 2 | /* |
Md Ashiqur Rahman | 8ce0903 | 2018-01-14 22:43:13 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [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_MULTICAST_UDP_TRANSPORT_FIXTURE_HPP |
| 27 | #define NFD_TESTS_DAEMON_FACE_MULTICAST_UDP_TRANSPORT_FIXTURE_HPP |
| 28 | |
| 29 | #include "face/multicast-udp-transport.hpp" |
| 30 | #include "face/face.hpp" |
| 31 | |
| 32 | #include "dummy-receive-link-service.hpp" |
Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [diff] [blame] | 33 | #include "tests/limited-io.hpp" |
| 34 | |
| 35 | namespace nfd { |
| 36 | namespace face { |
| 37 | namespace tests { |
| 38 | |
| 39 | using namespace nfd::tests; |
| 40 | namespace ip = boost::asio::ip; |
| 41 | using ip::udp; |
| 42 | |
| 43 | class MulticastUdpTransportFixture : public BaseFixture |
| 44 | { |
| 45 | protected: |
| 46 | MulticastUdpTransportFixture() |
| 47 | : transport(nullptr) |
Md Ashiqur Rahman | 8ce0903 | 2018-01-14 22:43:13 -0500 | [diff] [blame] | 48 | , txPort(7001) |
Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [diff] [blame] | 49 | , receivedPackets(nullptr) |
| 50 | , remoteSockRx(g_io) |
| 51 | , remoteSockTx(g_io) |
| 52 | { |
| 53 | } |
| 54 | |
| 55 | void |
Davide Pesavento | b8d1fc7 | 2017-10-08 02:05:05 -0400 | [diff] [blame] | 56 | initialize(ip::address address) |
Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [diff] [blame] | 57 | { |
Md Ashiqur Rahman | 8ce0903 | 2018-01-14 22:43:13 -0500 | [diff] [blame] | 58 | ip::address mcastAddr; |
| 59 | if (address.is_v4()) { |
| 60 | // the administratively scoped group 224.0.0.254 is reserved for experimentation (RFC 4727) |
| 61 | mcastAddr = ip::address_v4(0xE00000FE); |
| 62 | } |
| 63 | else { |
| 64 | // the group FF0X::114 is reserved for experimentation at all scope levels (RFC 4727) |
| 65 | auto v6Addr = ip::address_v6::from_string("FF01::114"); |
| 66 | v6Addr.scope_id(address.to_v6().scope_id()); |
| 67 | mcastAddr = v6Addr; |
| 68 | } |
| 69 | mcastEp = udp::endpoint(mcastAddr, 7373); |
| 70 | remoteMcastEp = udp::endpoint(mcastAddr, 8383); |
Davide Pesavento | 8215a3a | 2017-12-25 19:14:33 -0500 | [diff] [blame] | 71 | |
Md Ashiqur Rahman | 8ce0903 | 2018-01-14 22:43:13 -0500 | [diff] [blame] | 72 | MulticastUdpTransport::openRxSocket(remoteSockRx, mcastEp, address); |
| 73 | MulticastUdpTransport::openTxSocket(remoteSockTx, udp::endpoint(address, 0), nullptr, true); |
Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [diff] [blame] | 74 | |
| 75 | udp::socket sockRx(g_io); |
| 76 | udp::socket sockTx(g_io); |
Md Ashiqur Rahman | 8ce0903 | 2018-01-14 22:43:13 -0500 | [diff] [blame] | 77 | MulticastUdpTransport::openRxSocket(sockRx, remoteMcastEp, address); |
| 78 | MulticastUdpTransport::openTxSocket(sockTx, udp::endpoint(address, txPort), nullptr, true); |
Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [diff] [blame] | 79 | |
| 80 | face = make_unique<Face>( |
| 81 | make_unique<DummyReceiveLinkService>(), |
Md Ashiqur Rahman | 8ce0903 | 2018-01-14 22:43:13 -0500 | [diff] [blame] | 82 | make_unique<MulticastUdpTransport>(mcastEp, std::move(sockRx), std::move(sockTx), |
| 83 | ndn::nfd::LINK_TYPE_MULTI_ACCESS)); |
Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [diff] [blame] | 84 | transport = static_cast<MulticastUdpTransport*>(face->getTransport()); |
| 85 | receivedPackets = &static_cast<DummyReceiveLinkService*>(face->getLinkService())->receivedPackets; |
| 86 | |
| 87 | BOOST_REQUIRE_EQUAL(transport->getState(), TransportState::UP); |
| 88 | } |
| 89 | |
| 90 | void |
Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [diff] [blame] | 91 | remoteRead(std::vector<uint8_t>& buf, bool needToCheck = true) |
| 92 | { |
| 93 | remoteSockRx.async_receive(boost::asio::buffer(buf), |
| 94 | [this, needToCheck] (const boost::system::error_code& error, size_t) { |
| 95 | if (needToCheck) { |
| 96 | BOOST_REQUIRE_EQUAL(error, boost::system::errc::success); |
| 97 | } |
| 98 | limitedIo.afterOp(); |
| 99 | }); |
| 100 | BOOST_REQUIRE_EQUAL(limitedIo.run(1, time::seconds(1)), LimitedIo::EXCEED_OPS); |
| 101 | } |
| 102 | |
| 103 | void |
| 104 | remoteWrite(const std::vector<uint8_t>& buf, bool needToCheck = true) |
| 105 | { |
Md Ashiqur Rahman | 8ce0903 | 2018-01-14 22:43:13 -0500 | [diff] [blame] | 106 | sendToGroup(remoteSockTx, buf, needToCheck); |
| 107 | limitedIo.defer(time::seconds(1)); |
| 108 | } |
| 109 | |
| 110 | void |
| 111 | sendToGroup(udp::socket& sock, const std::vector<uint8_t>& buf, bool needToCheck = true) const |
| 112 | { |
| 113 | sock.async_send_to(boost::asio::buffer(buf), remoteMcastEp, |
Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [diff] [blame] | 114 | [needToCheck] (const boost::system::error_code& error, size_t) { |
| 115 | if (needToCheck) { |
| 116 | BOOST_REQUIRE_EQUAL(error, boost::system::errc::success); |
| 117 | } |
| 118 | }); |
Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | protected: |
| 122 | LimitedIo limitedIo; |
| 123 | MulticastUdpTransport* transport; |
Md Ashiqur Rahman | 8ce0903 | 2018-01-14 22:43:13 -0500 | [diff] [blame] | 124 | udp::endpoint mcastEp; |
| 125 | uint16_t txPort; |
Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [diff] [blame] | 126 | std::vector<Transport::Packet>* receivedPackets; |
| 127 | |
| 128 | private: |
| 129 | unique_ptr<Face> face; |
Md Ashiqur Rahman | 8ce0903 | 2018-01-14 22:43:13 -0500 | [diff] [blame] | 130 | udp::endpoint remoteMcastEp; |
Eric Newberry | 6d8ee7a | 2015-12-21 16:37:52 -0700 | [diff] [blame] | 131 | udp::socket remoteSockRx; |
| 132 | udp::socket remoteSockTx; |
| 133 | }; |
| 134 | |
| 135 | } // namespace tests |
| 136 | } // namespace face |
| 137 | } // namespace nfd |
| 138 | |
| 139 | #endif // NFD_TESTS_DAEMON_FACE_MULTICAST_UDP_TRANSPORT_FIXTURE_HPP |