blob: 457cb4aaeaa1b0458ddde0a6190446f9556779fd [file] [log] [blame]
Junxiao Shi13546112015-10-14 19:33:07 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2015, Regents of the University of California,
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#include "face/multicast-udp-transport.hpp"
Junxiao Shi5b8a2b22015-10-22 17:20:44 -070027#include "transport-properties.hpp"
Junxiao Shi13546112015-10-14 19:33:07 -070028
29#include "tests/test-common.hpp"
30
31namespace nfd {
32namespace face {
33namespace tests {
34
35using namespace nfd::tests;
36namespace ip = boost::asio::ip;
37using ip::udp;
38
39BOOST_AUTO_TEST_SUITE(Face)
40BOOST_FIXTURE_TEST_SUITE(TestMulticastUdpTransport, BaseFixture)
41
42BOOST_AUTO_TEST_CASE(StaticPropertiesIpv4)
43{
44 udp::socket sockRx(g_io);
45 sockRx.open(udp::v4());
46 sockRx.set_option(udp::socket::reuse_address(true));
47 sockRx.bind(udp::endpoint(ip::address::from_string("127.0.0.1"), 7001));
48
49 udp::socket sockTx(g_io);
50 sockTx.open(udp::v4());
51 sockTx.set_option(udp::socket::reuse_address(true));
52 sockTx.bind(udp::endpoint(udp::v4(), 7001));
53
54 MulticastUdpTransport transport(sockRx.local_endpoint(),
55 udp::endpoint(ip::address::from_string("230.15.19.47"), 7001),
56 std::move(sockRx), std::move(sockTx));
Junxiao Shi5b8a2b22015-10-22 17:20:44 -070057 checkStaticPropertiesInitialized(transport);
Junxiao Shi13546112015-10-14 19:33:07 -070058
59 BOOST_CHECK_EQUAL(transport.getLocalUri(), FaceUri("udp4://127.0.0.1:7001"));
60 BOOST_CHECK_EQUAL(transport.getRemoteUri(), FaceUri("udp4://230.15.19.47:7001"));
61 BOOST_CHECK_EQUAL(transport.getScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL);
62 BOOST_CHECK_EQUAL(transport.getPersistency(), ndn::nfd::FACE_PERSISTENCY_PERMANENT);
63 BOOST_CHECK_EQUAL(transport.getLinkType(), ndn::nfd::LINK_TYPE_MULTI_ACCESS);
64 BOOST_CHECK_EQUAL(transport.getMtu(), 65535 - 60 - 8);
65}
66
67BOOST_AUTO_TEST_SUITE_END() // TestMulticastUdpTransport
68BOOST_AUTO_TEST_SUITE_END() // Face
69
70} // namespace tests
71} // namespace face
72} // namespace nfd