blob: b95ac783d3e15662b14696b2e8f86b5a0f99eecc [file] [log] [blame]
Junxiao Shia6286a92021-02-23 06:43:52 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesaventoe422f9e2022-06-03 01:30:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Junxiao Shia6286a92021-02-23 06:43: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#include "udp-channel-fixture.hpp"
27
28#include "test-ip.hpp"
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040029
Junxiao Shia6286a92021-02-23 06:43:52 -070030#include <boost/mpl/vector.hpp>
31
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040032namespace nfd::tests {
Junxiao Shia6286a92021-02-23 06:43:52 -070033
34BOOST_AUTO_TEST_SUITE(Face)
35BOOST_FIXTURE_TEST_SUITE(TestUdpChannel, UdpChannelFixture)
36
37using AddressFamilies = boost::mpl::vector<
38 std::integral_constant<AddressFamily, AddressFamily::V4>,
39 std::integral_constant<AddressFamily, AddressFamily::V6>>;
40
41BOOST_AUTO_TEST_CASE_TEMPLATE(DefaultMtu, F, AddressFamilies)
42{
43 auto address = getTestIp(F::value, AddressScope::Loopback);
44 SKIP_IF_IP_UNAVAILABLE(address);
45 this->listen(address,1452);
46
Davide Pesavento279af1c2022-08-29 20:18:32 -040047 auto ch1 = this->makeChannel(IpAddressTypeFromFamily<F::value>(), 0, 1232);
Junxiao Shia6286a92021-02-23 06:43:52 -070048 connect(*ch1);
49
50 BOOST_CHECK_EQUAL(this->limitedIo.run(2, 1_s), LimitedIo::EXCEED_OPS);
51 BOOST_CHECK_EQUAL(this->listenerChannel->size(), 1);
52 BOOST_CHECK_EQUAL(ch1->size(), 1);
53 BOOST_CHECK_EQUAL(ch1->isListening(), false);
54
55 for (const auto& face : this->listenerFaces) {
56 BOOST_CHECK_EQUAL(face->getMtu(), 1452);
57 }
58 for (const auto& face : this->clientFaces) {
59 BOOST_CHECK_EQUAL(face->getMtu(), 1232);
60 }
61}
62
63BOOST_AUTO_TEST_SUITE_END() // TestUdpChannel
64BOOST_AUTO_TEST_SUITE_END() // Face
65
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040066} // namespace nfd::tests