blob: 59598215b5067babab7c54f514cebce559014158 [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/*
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -05003 * Copyright (c) 2014-2018, 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
32#include "dummy-receive-link-service.hpp"
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070033#include "tests/limited-io.hpp"
34
35namespace nfd {
36namespace face {
37namespace tests {
38
39using namespace nfd::tests;
40namespace ip = boost::asio::ip;
41using ip::udp;
42
43class MulticastUdpTransportFixture : public BaseFixture
44{
45protected:
46 MulticastUdpTransportFixture()
47 : transport(nullptr)
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050048 , txPort(7001)
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070049 , receivedPackets(nullptr)
50 , remoteSockRx(g_io)
51 , remoteSockTx(g_io)
52 {
53 }
54
55 void
Davide Pesaventob8d1fc72017-10-08 02:05:05 -040056 initialize(ip::address address)
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070057 {
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050058 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 Pesavento8215a3a2017-12-25 19:14:33 -050071
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050072 MulticastUdpTransport::openRxSocket(remoteSockRx, mcastEp, address);
73 MulticastUdpTransport::openTxSocket(remoteSockTx, udp::endpoint(address, 0), nullptr, true);
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070074
75 udp::socket sockRx(g_io);
76 udp::socket sockTx(g_io);
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050077 MulticastUdpTransport::openRxSocket(sockRx, remoteMcastEp, address);
78 MulticastUdpTransport::openTxSocket(sockTx, udp::endpoint(address, txPort), nullptr, true);
Eric Newberry6d8ee7a2015-12-21 16:37:52 -070079
80 face = make_unique<Face>(
81 make_unique<DummyReceiveLinkService>(),
Md Ashiqur Rahman8ce09032018-01-14 22:43:13 -050082 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());
85 receivedPackets = &static_cast<DummyReceiveLinkService*>(face->getLinkService())->receivedPackets;
86
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 });
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 Rahman8ce09032018-01-14 22:43:13 -0500106 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 Newberry6d8ee7a2015-12-21 16:37:52 -0700114 [needToCheck] (const boost::system::error_code& error, size_t) {
115 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;
Eric Newberry6d8ee7a2015-12-21 16:37:52 -0700126 std::vector<Transport::Packet>* receivedPackets;
127
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