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