blob: e895970fb51340a30f269b97a94179d4f61c5145 [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"
27
28#include "tests/test-common.hpp"
29
30namespace nfd {
31namespace face {
32namespace tests {
33
34using namespace nfd::tests;
35namespace ip = boost::asio::ip;
36using ip::udp;
37
38BOOST_AUTO_TEST_SUITE(Face)
39BOOST_FIXTURE_TEST_SUITE(TestMulticastUdpTransport, BaseFixture)
40
41BOOST_AUTO_TEST_CASE(StaticPropertiesIpv4)
42{
43 udp::socket sockRx(g_io);
44 sockRx.open(udp::v4());
45 sockRx.set_option(udp::socket::reuse_address(true));
46 sockRx.bind(udp::endpoint(ip::address::from_string("127.0.0.1"), 7001));
47
48 udp::socket sockTx(g_io);
49 sockTx.open(udp::v4());
50 sockTx.set_option(udp::socket::reuse_address(true));
51 sockTx.bind(udp::endpoint(udp::v4(), 7001));
52
53 MulticastUdpTransport transport(sockRx.local_endpoint(),
54 udp::endpoint(ip::address::from_string("230.15.19.47"), 7001),
55 std::move(sockRx), std::move(sockTx));
56
57 BOOST_CHECK_EQUAL(transport.getLocalUri(), FaceUri("udp4://127.0.0.1:7001"));
58 BOOST_CHECK_EQUAL(transport.getRemoteUri(), FaceUri("udp4://230.15.19.47:7001"));
59 BOOST_CHECK_EQUAL(transport.getScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL);
60 BOOST_CHECK_EQUAL(transport.getPersistency(), ndn::nfd::FACE_PERSISTENCY_PERMANENT);
61 BOOST_CHECK_EQUAL(transport.getLinkType(), ndn::nfd::LINK_TYPE_MULTI_ACCESS);
62 BOOST_CHECK_EQUAL(transport.getMtu(), 65535 - 60 - 8);
63}
64
65BOOST_AUTO_TEST_SUITE_END() // TestMulticastUdpTransport
66BOOST_AUTO_TEST_SUITE_END() // Face
67
68} // namespace tests
69} // namespace face
70} // namespace nfd