blob: 1c2b170f780dc6ef78784a3befe42e1fc89693be [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 Pesavento15b55052018-01-27 19:09:28 -05003 * Copyright (c) 2014-2018, 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"
Spencer Leed5fe0cf2016-02-06 03:55:24 -070029#include <boost/mpl/vector.hpp>
30
Eric Newberrya98bf932015-09-21 00:58:47 -070031namespace nfd {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040032namespace face {
Junxiao Shicde37ad2015-12-24 01:02:05 -070033namespace tests {
Eric Newberrya98bf932015-09-21 00:58:47 -070034
Junxiao Shicde37ad2015-12-24 01:02:05 -070035BOOST_AUTO_TEST_SUITE(Face)
Spencer Leed5fe0cf2016-02-06 03:55:24 -070036BOOST_FIXTURE_TEST_SUITE(TestTcpChannel, TcpChannelFixture)
37
Junxiao Shi84d62cb2017-07-12 16:15:18 +000038using AddressFamilies = boost::mpl::vector<
39 std::integral_constant<AddressFamily, AddressFamily::V4>,
40 std::integral_constant<AddressFamily, AddressFamily::V6>>;
Spencer Leed5fe0cf2016-02-06 03:55:24 -070041
Junxiao Shi84d62cb2017-07-12 16:15:18 +000042BOOST_AUTO_TEST_CASE_TEMPLATE(ConnectTimeout, F, AddressFamilies)
Spencer Leed5fe0cf2016-02-06 03:55:24 -070043{
Davide Pesaventob8d1fc72017-10-08 02:05:05 -040044 auto address = getTestIp(F::value, AddressScope::Loopback);
Davide Pesaventoeee53aa2016-04-11 17:20:21 +020045 SKIP_IF_IP_UNAVAILABLE(address);
46 // do not listen
Spencer Leed5fe0cf2016-02-06 03:55:24 -070047
Junxiao Shi84d62cb2017-07-12 16:15:18 +000048 auto channel = this->makeChannel(typename IpAddressFromFamily<F::value>::type());
Davide Pesavento15b55052018-01-27 19:09:28 -050049 channel->connect(tcp::Endpoint(address, 7040), {},
Davide Pesavento9a00fab2016-09-27 11:22:46 +020050 [this] (const shared_ptr<nfd::Face>&) {
Spencer Leed5fe0cf2016-02-06 03:55:24 -070051 BOOST_FAIL("Connect succeeded when it should have failed");
52 this->limitedIo.afterOp();
53 },
Davide Pesavento9a00fab2016-09-27 11:22:46 +020054 [this] (uint32_t, const std::string& reason) {
Spencer Leed5fe0cf2016-02-06 03:55:24 -070055 BOOST_CHECK_EQUAL(reason.empty(), false);
56 this->limitedIo.afterOp();
57 },
58 time::seconds(1));
59
Davide Pesavento9a00fab2016-09-27 11:22:46 +020060 BOOST_CHECK_EQUAL(this->limitedIo.run(1, time::seconds(2)), LimitedIo::EXCEED_OPS);
Spencer Leed5fe0cf2016-02-06 03:55:24 -070061 BOOST_CHECK_EQUAL(channel->size(), 0);
62}
63
Junxiao Shicde37ad2015-12-24 01:02:05 -070064BOOST_AUTO_TEST_SUITE_END() // TestTcpChannel
65BOOST_AUTO_TEST_SUITE_END() // Face
66
67} // namespace tests
Davide Pesavento8fd15e62017-04-06 19:58:54 -040068} // namespace face
Eric Newberrya98bf932015-09-21 00:58:47 -070069} // namespace nfd