Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | f56cf63 | 2024-01-27 22:22:06 -0500 | [diff] [blame^] | 3 | * Copyright (c) 2014-2024, Regents of the University of California, |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 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 | |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 26 | #include "tcp-channel-fixture.hpp" |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 27 | |
Davide Pesavento | 22fba35 | 2017-10-17 15:53:51 -0400 | [diff] [blame] | 28 | #include "test-ip.hpp" |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 29 | |
Davide Pesavento | f56cf63 | 2024-01-27 22:22:06 -0500 | [diff] [blame^] | 30 | #include <boost/mp11/list.hpp> |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 31 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 32 | namespace nfd::tests { |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 33 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 34 | BOOST_AUTO_TEST_SUITE(Face) |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 35 | BOOST_FIXTURE_TEST_SUITE(TestTcpChannel, TcpChannelFixture) |
| 36 | |
Davide Pesavento | f56cf63 | 2024-01-27 22:22:06 -0500 | [diff] [blame^] | 37 | using AddressFamilies = boost::mp11::mp_list_c<AddressFamily, AddressFamily::V4, AddressFamily::V6>; |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 38 | |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 39 | BOOST_AUTO_TEST_CASE_TEMPLATE(ConnectTimeout, F, AddressFamilies) |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 40 | { |
Davide Pesavento | b8d1fc7 | 2017-10-08 02:05:05 -0400 | [diff] [blame] | 41 | auto address = getTestIp(F::value, AddressScope::Loopback); |
Davide Pesavento | eee53aa | 2016-04-11 17:20:21 +0200 | [diff] [blame] | 42 | SKIP_IF_IP_UNAVAILABLE(address); |
| 43 | // do not listen |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 44 | |
Davide Pesavento | 279af1c | 2022-08-29 20:18:32 -0400 | [diff] [blame] | 45 | auto channel = this->makeChannel(IpAddressTypeFromFamily<F::value>()); |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 46 | channel->connect(tcp::Endpoint(address, 7040), {}, |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 47 | [this] (const shared_ptr<nfd::Face>&) { |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 48 | BOOST_FAIL("Connect succeeded when it should have failed"); |
| 49 | this->limitedIo.afterOp(); |
| 50 | }, |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 51 | [this] (uint32_t, const std::string& reason) { |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 52 | BOOST_CHECK_EQUAL(reason.empty(), false); |
| 53 | this->limitedIo.afterOp(); |
| 54 | }, |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 55 | 1_s); |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 56 | |
Davide Pesavento | 14e71f0 | 2019-03-28 17:35:25 -0400 | [diff] [blame] | 57 | BOOST_CHECK_EQUAL(this->limitedIo.run(1, 2_s), LimitedIo::EXCEED_OPS); |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 58 | BOOST_CHECK_EQUAL(channel->size(), 0); |
| 59 | } |
| 60 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 61 | BOOST_AUTO_TEST_SUITE_END() // TestTcpChannel |
| 62 | BOOST_AUTO_TEST_SUITE_END() // Face |
| 63 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 64 | } // namespace nfd::tests |