blob: 99d039cbf36af02b01bb7bf6405d1f1781fca7de [file] [log] [blame]
Eric Newberry6d8ee7a2015-12-21 16:37:52 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi84d62cb2017-07-12 16:15:18 +00002/*
Davide Pesavento3dade002019-03-19 11:29:56 -06003 * Copyright (c) 2014-2019, Regents of the University of California,
Eric Newberry6d8ee7a2015-12-21 16:37:52 -07004 * 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
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 Pesaventoa8098582019-03-31 15:48:02 -040034#include "tests/daemon/face/dummy-link-service.hpp"
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070035
36namespace nfd {
37namespace face {
38namespace tests {
39
40using namespace nfd::tests;
41namespace ip = boost::asio::ip;
42using ip::udp;
43
Davide Pesaventocf7db2f2019-03-24 23:17:28 -040044class MulticastUdpTransportFixture : public GlobalIoFixture
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070045{
46protected:
47 MulticastUdpTransportFixture()
48 : transport(nullptr)
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050049 , txPort(7001)
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070050 , receivedPackets(nullptr)
51 , remoteSockRx(g_io)
52 , remoteSockTx(g_io)
53 {
54 }
55
56 void
Davide Pesaventob8d1fc72017-10-08 02:05:05 -040057 initialize(ip::address address)
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070058 {
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050059 ip::address mcastAddr;
60 if (address.is_v4()) {
61 // the administratively scoped group 224.0.0.254 is reserved for experimentation (RFC 4727)
62 mcastAddr = ip::address_v4(0xE00000FE);
63 }
64 else {
65 // the group FF0X::114 is reserved for experimentation at all scope levels (RFC 4727)
66 auto v6Addr = ip::address_v6::from_string("FF01::114");
67 v6Addr.scope_id(address.to_v6().scope_id());
68 mcastAddr = v6Addr;
69 }
70 mcastEp = udp::endpoint(mcastAddr, 7373);
71 remoteMcastEp = udp::endpoint(mcastAddr, 8383);
Davide Pesavento8215a3a2017-12-25 19:14:33 -050072
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050073 MulticastUdpTransport::openRxSocket(remoteSockRx, mcastEp, address);
74 MulticastUdpTransport::openTxSocket(remoteSockTx, udp::endpoint(address, 0), nullptr, true);
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070075
76 udp::socket sockRx(g_io);
77 udp::socket sockTx(g_io);
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050078 MulticastUdpTransport::openRxSocket(sockRx, remoteMcastEp, address);
79 MulticastUdpTransport::openTxSocket(sockTx, udp::endpoint(address, txPort), nullptr, true);
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070080
Davide Pesaventoa8098582019-03-31 15:48:02 -040081 face = make_unique<Face>(make_unique<DummyLinkService>(),
82 make_unique<MulticastUdpTransport>(mcastEp, std::move(sockRx), std::move(sockTx),
83 ndn::nfd::LINK_TYPE_MULTI_ACCESS));
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070084 transport = static_cast<MulticastUdpTransport*>(face->getTransport());
Davide Pesaventoa8098582019-03-31 15:48:02 -040085 receivedPackets = &static_cast<DummyLinkService*>(face->getLinkService())->receivedPackets;
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070086
87 BOOST_REQUIRE_EQUAL(transport->getState(), TransportState::UP);
88 }
89
90 void
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070091 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 });
Davide Pesavento14e71f02019-03-28 17:35:25 -0400100 BOOST_REQUIRE_EQUAL(limitedIo.run(1, 1_s), LimitedIo::EXCEED_OPS);
Eric Newberry6d8ee7a2015-12-21 16:37:52 -0700101 }
102
103 void
104 remoteWrite(const std::vector<uint8_t>& buf, bool needToCheck = true)
105 {
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -0500106 sendToGroup(remoteSockTx, buf, needToCheck);
Davide Pesavento14e71f02019-03-28 17:35:25 -0400107 limitedIo.defer(1_s);
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -0500108 }
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,
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400114 [needToCheck] (const auto& error, size_t) {
Eric Newberry6d8ee7a2015-12-21 16:37:52 -0700115 if (needToCheck) {
116 BOOST_REQUIRE_EQUAL(error, boost::system::errc::success);
117 }
118 });
Eric Newberry6d8ee7a2015-12-21 16:37:52 -0700119 }
120
121protected:
122 LimitedIo limitedIo;
123 MulticastUdpTransport* transport;
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -0500124 udp::endpoint mcastEp;
125 uint16_t txPort;
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400126 std::vector<RxPacket>* receivedPackets;
Eric Newberry6d8ee7a2015-12-21 16:37:52 -0700127
128private:
129 unique_ptr<Face> face;
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -0500130 udp::endpoint remoteMcastEp;
Eric Newberry6d8ee7a2015-12-21 16:37:52 -0700131 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