blob: e16331e2e36fa41f5fd22e66613e6e88d4851ec3 [file] [log] [blame]
Junxiao Shia6286a92021-02-23 06:43:52 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesaventof56cf632024-01-27 22:22:06 -05003 * Copyright (c) 2014-2024, 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
Davide Pesaventof56cf632024-01-27 22:22:06 -050030#include <boost/mp11/list.hpp>
Junxiao Shia6286a92021-02-23 06:43:52 -070031
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
Davide Pesaventof56cf632024-01-27 22:22:06 -050037using AddressFamilies = boost::mp11::mp_list_c<AddressFamily, AddressFamily::V4, AddressFamily::V6>;
Junxiao Shia6286a92021-02-23 06:43:52 -070038
39BOOST_AUTO_TEST_CASE_TEMPLATE(DefaultMtu, F, AddressFamilies)
40{
41 auto address = getTestIp(F::value, AddressScope::Loopback);
42 SKIP_IF_IP_UNAVAILABLE(address);
43 this->listen(address,1452);
44
Davide Pesavento279af1c2022-08-29 20:18:32 -040045 auto ch1 = this->makeChannel(IpAddressTypeFromFamily<F::value>(), 0, 1232);
Junxiao Shia6286a92021-02-23 06:43:52 -070046 connect(*ch1);
47
48 BOOST_CHECK_EQUAL(this->limitedIo.run(2, 1_s), LimitedIo::EXCEED_OPS);
49 BOOST_CHECK_EQUAL(this->listenerChannel->size(), 1);
50 BOOST_CHECK_EQUAL(ch1->size(), 1);
51 BOOST_CHECK_EQUAL(ch1->isListening(), false);
52
53 for (const auto& face : this->listenerFaces) {
54 BOOST_CHECK_EQUAL(face->getMtu(), 1452);
55 }
56 for (const auto& face : this->clientFaces) {
57 BOOST_CHECK_EQUAL(face->getMtu(), 1232);
58 }
59}
60
61BOOST_AUTO_TEST_SUITE_END() // TestUdpChannel
62BOOST_AUTO_TEST_SUITE_END() // Face
63
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040064} // namespace nfd::tests