Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014-2016, 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 | eee53aa | 2016-04-11 17:20:21 +0200 | [diff] [blame] | 28 | #include "test-ip.hpp" |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 29 | |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 30 | #include <boost/mpl/vector.hpp> |
| 31 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 32 | namespace nfd { |
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 | |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame^] | 38 | using AddressFamilies = boost::mpl::vector<boost::asio::ip::address_v4, |
| 39 | boost::asio::ip::address_v6>; |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 40 | |
Davide Pesavento | eee53aa | 2016-04-11 17:20:21 +0200 | [diff] [blame] | 41 | BOOST_AUTO_TEST_CASE_TEMPLATE(ConnectTimeout, A, AddressFamilies) |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 42 | { |
Davide Pesavento | eee53aa | 2016-04-11 17:20:21 +0200 | [diff] [blame] | 43 | auto address = getTestIp<A>(LoopbackAddress::Yes); |
| 44 | SKIP_IF_IP_UNAVAILABLE(address); |
| 45 | // do not listen |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 46 | |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame^] | 47 | auto channel = this->makeChannel(A()); |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 48 | channel->connect(tcp::Endpoint(address, 7040), false, |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame^] | 49 | [this] (const shared_ptr<nfd::Face>&) { |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 50 | BOOST_FAIL("Connect succeeded when it should have failed"); |
| 51 | this->limitedIo.afterOp(); |
| 52 | }, |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame^] | 53 | [this] (uint32_t, const std::string& reason) { |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 54 | BOOST_CHECK_EQUAL(reason.empty(), false); |
| 55 | this->limitedIo.afterOp(); |
| 56 | }, |
| 57 | time::seconds(1)); |
| 58 | |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame^] | 59 | BOOST_CHECK_EQUAL(this->limitedIo.run(1, time::seconds(2)), LimitedIo::EXCEED_OPS); |
Spencer Lee | d5fe0cf | 2016-02-06 03:55:24 -0700 | [diff] [blame] | 60 | BOOST_CHECK_EQUAL(channel->size(), 0); |
| 61 | } |
| 62 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 63 | BOOST_AUTO_TEST_SUITE_END() // TestTcpChannel |
| 64 | BOOST_AUTO_TEST_SUITE_END() // Face |
| 65 | |
| 66 | } // namespace tests |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 67 | } // namespace nfd |