blob: c3ebf9c63445aacd06033634360bed37c32e4b49 [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 Pesavento8fd15e62017-04-06 19:58:54 -04003 * Copyright (c) 2014-2017, 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 Pesaventoa3c9ddb2017-04-10 22:15:24 -040049 channel->connect(tcp::Endpoint(address, 7040),
Eric Newberry2642cd22017-07-13 21:34:53 -040050 ndn::nfd::FACE_PERSISTENCY_PERSISTENT, false, false,
Davide Pesavento9a00fab2016-09-27 11:22:46 +020051 [this] (const shared_ptr<nfd::Face>&) {
Spencer Leed5fe0cf2016-02-06 03:55:24 -070052 BOOST_FAIL("Connect succeeded when it should have failed");
53 this->limitedIo.afterOp();
54 },
Davide Pesavento9a00fab2016-09-27 11:22:46 +020055 [this] (uint32_t, const std::string& reason) {
Spencer Leed5fe0cf2016-02-06 03:55:24 -070056 BOOST_CHECK_EQUAL(reason.empty(), false);
57 this->limitedIo.afterOp();
58 },
59 time::seconds(1));
60
Davide Pesavento9a00fab2016-09-27 11:22:46 +020061 BOOST_CHECK_EQUAL(this->limitedIo.run(1, time::seconds(2)), LimitedIo::EXCEED_OPS);
Spencer Leed5fe0cf2016-02-06 03:55:24 -070062 BOOST_CHECK_EQUAL(channel->size(), 0);
63}
64
Junxiao Shicde37ad2015-12-24 01:02:05 -070065BOOST_AUTO_TEST_SUITE_END() // TestTcpChannel
66BOOST_AUTO_TEST_SUITE_END() // Face
67
68} // namespace tests
Davide Pesavento8fd15e62017-04-06 19:58:54 -040069} // namespace face
Eric Newberrya98bf932015-09-21 00:58:47 -070070} // namespace nfd