blob: c7c142fc152035f104de34f8bbb016f05dc9cf7f [file] [log] [blame]
Eric Newberrya98bf932015-09-21 00:58:47 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi84d62cb2017-07-12 16:15:18 +00002/*
Davide Pesaventof56cf632024-01-27 22:22:06 -05003 * Copyright (c) 2014-2024, Regents of the University of California,
Eric Newberrya98bf932015-09-21 00:58:47 -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
Davide Pesavento9a00fab2016-09-27 11:22:46 +020026#include "tcp-channel-fixture.hpp"
Junxiao Shicde37ad2015-12-24 01:02:05 -070027
Davide Pesavento22fba352017-10-17 15:53:51 -040028#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>
Spencer Leed5fe0cf2016-02-06 03:55:24 -070031
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040032namespace nfd::tests {
Eric Newberrya98bf932015-09-21 00:58:47 -070033
Junxiao Shicde37ad2015-12-24 01:02:05 -070034BOOST_AUTO_TEST_SUITE(Face)
Spencer Leed5fe0cf2016-02-06 03:55:24 -070035BOOST_FIXTURE_TEST_SUITE(TestTcpChannel, TcpChannelFixture)
36
Davide Pesaventof56cf632024-01-27 22:22:06 -050037using AddressFamilies = boost::mp11::mp_list_c<AddressFamily, AddressFamily::V4, AddressFamily::V6>;
Spencer Leed5fe0cf2016-02-06 03:55:24 -070038
Junxiao Shi84d62cb2017-07-12 16:15:18 +000039BOOST_AUTO_TEST_CASE_TEMPLATE(ConnectTimeout, F, AddressFamilies)
Spencer Leed5fe0cf2016-02-06 03:55:24 -070040{
Davide Pesaventob8d1fc72017-10-08 02:05:05 -040041 auto address = getTestIp(F::value, AddressScope::Loopback);
Davide Pesaventoeee53aa2016-04-11 17:20:21 +020042 SKIP_IF_IP_UNAVAILABLE(address);
43 // do not listen
Spencer Leed5fe0cf2016-02-06 03:55:24 -070044
Davide Pesavento279af1c2022-08-29 20:18:32 -040045 auto channel = this->makeChannel(IpAddressTypeFromFamily<F::value>());
Davide Pesavento15b55052018-01-27 19:09:28 -050046 channel->connect(tcp::Endpoint(address, 7040), {},
Davide Pesavento9a00fab2016-09-27 11:22:46 +020047 [this] (const shared_ptr<nfd::Face>&) {
Spencer Leed5fe0cf2016-02-06 03:55:24 -070048 BOOST_FAIL("Connect succeeded when it should have failed");
49 this->limitedIo.afterOp();
50 },
Davide Pesavento9a00fab2016-09-27 11:22:46 +020051 [this] (uint32_t, const std::string& reason) {
Spencer Leed5fe0cf2016-02-06 03:55:24 -070052 BOOST_CHECK_EQUAL(reason.empty(), false);
53 this->limitedIo.afterOp();
54 },
Davide Pesavento14e71f02019-03-28 17:35:25 -040055 1_s);
Spencer Leed5fe0cf2016-02-06 03:55:24 -070056
Davide Pesavento14e71f02019-03-28 17:35:25 -040057 BOOST_CHECK_EQUAL(this->limitedIo.run(1, 2_s), LimitedIo::EXCEED_OPS);
Spencer Leed5fe0cf2016-02-06 03:55:24 -070058 BOOST_CHECK_EQUAL(channel->size(), 0);
59}
60
Junxiao Shicde37ad2015-12-24 01:02:05 -070061BOOST_AUTO_TEST_SUITE_END() // TestTcpChannel
62BOOST_AUTO_TEST_SUITE_END() // Face
63
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040064} // namespace nfd::tests