blob: 8068364b240f7b6f55d5c80449f8595b1668f8c6 [file] [log] [blame]
Eric Newberrya98bf932015-09-21 00:58:47 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
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 Pesaventoeee53aa2016-04-11 17:20:21 +020028#include "test-ip.hpp"
Eric Newberrya98bf932015-09-21 00:58:47 -070029
Spencer Leed5fe0cf2016-02-06 03:55:24 -070030#include <boost/mpl/vector.hpp>
31
Eric Newberrya98bf932015-09-21 00:58:47 -070032namespace nfd {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040033namespace face {
Junxiao Shicde37ad2015-12-24 01:02:05 -070034namespace tests {
Eric Newberrya98bf932015-09-21 00:58:47 -070035
Junxiao Shicde37ad2015-12-24 01:02:05 -070036BOOST_AUTO_TEST_SUITE(Face)
Spencer Leed5fe0cf2016-02-06 03:55:24 -070037BOOST_FIXTURE_TEST_SUITE(TestTcpChannel, TcpChannelFixture)
38
Davide Pesavento9a00fab2016-09-27 11:22:46 +020039using AddressFamilies = boost::mpl::vector<boost::asio::ip::address_v4,
40 boost::asio::ip::address_v6>;
Spencer Leed5fe0cf2016-02-06 03:55:24 -070041
Davide Pesaventoeee53aa2016-04-11 17:20:21 +020042BOOST_AUTO_TEST_CASE_TEMPLATE(ConnectTimeout, A, AddressFamilies)
Spencer Leed5fe0cf2016-02-06 03:55:24 -070043{
Davide Pesaventoeee53aa2016-04-11 17:20:21 +020044 auto address = getTestIp<A>(LoopbackAddress::Yes);
45 SKIP_IF_IP_UNAVAILABLE(address);
46 // do not listen
Spencer Leed5fe0cf2016-02-06 03:55:24 -070047
Davide Pesavento9a00fab2016-09-27 11:22:46 +020048 auto channel = this->makeChannel(A());
Eric Newberryf40551a2016-09-05 15:41:16 -070049 channel->connect(tcp::Endpoint(address, 7040), false,
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