blob: 8937f5bd3d81cdefdc8796a684efef03c32a5fbb [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 Pesaventoe422f9e2022-06-03 01:30:23 -04003 * Copyright (c) 2014-2022, 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
Spencer Leed5fe0cf2016-02-06 03:55:24 -070030#include <boost/mpl/vector.hpp>
31
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
Junxiao Shi84d62cb2017-07-12 16:15:18 +000037using AddressFamilies = boost::mpl::vector<
38 std::integral_constant<AddressFamily, AddressFamily::V4>,
39 std::integral_constant<AddressFamily, AddressFamily::V6>>;
Spencer Leed5fe0cf2016-02-06 03:55:24 -070040
Junxiao Shi84d62cb2017-07-12 16:15:18 +000041BOOST_AUTO_TEST_CASE_TEMPLATE(ConnectTimeout, F, AddressFamilies)
Spencer Leed5fe0cf2016-02-06 03:55:24 -070042{
Davide Pesaventob8d1fc72017-10-08 02:05:05 -040043 auto address = getTestIp(F::value, AddressScope::Loopback);
Davide Pesaventoeee53aa2016-04-11 17:20:21 +020044 SKIP_IF_IP_UNAVAILABLE(address);
45 // do not listen
Spencer Leed5fe0cf2016-02-06 03:55:24 -070046
Davide Pesavento279af1c2022-08-29 20:18:32 -040047 auto channel = this->makeChannel(IpAddressTypeFromFamily<F::value>());
Davide Pesavento15b55052018-01-27 19:09:28 -050048 channel->connect(tcp::Endpoint(address, 7040), {},
Davide Pesavento9a00fab2016-09-27 11:22:46 +020049 [this] (const shared_ptr<nfd::Face>&) {
Spencer Leed5fe0cf2016-02-06 03:55:24 -070050 BOOST_FAIL("Connect succeeded when it should have failed");
51 this->limitedIo.afterOp();
52 },
Davide Pesavento9a00fab2016-09-27 11:22:46 +020053 [this] (uint32_t, const std::string& reason) {
Spencer Leed5fe0cf2016-02-06 03:55:24 -070054 BOOST_CHECK_EQUAL(reason.empty(), false);
55 this->limitedIo.afterOp();
56 },
Davide Pesavento14e71f02019-03-28 17:35:25 -040057 1_s);
Spencer Leed5fe0cf2016-02-06 03:55:24 -070058
Davide Pesavento14e71f02019-03-28 17:35:25 -040059 BOOST_CHECK_EQUAL(this->limitedIo.run(1, 2_s), LimitedIo::EXCEED_OPS);
Spencer Leed5fe0cf2016-02-06 03:55:24 -070060 BOOST_CHECK_EQUAL(channel->size(), 0);
61}
62
Junxiao Shicde37ad2015-12-24 01:02:05 -070063BOOST_AUTO_TEST_SUITE_END() // TestTcpChannel
64BOOST_AUTO_TEST_SUITE_END() // Face
65
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040066} // namespace nfd::tests