Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [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 | |
| 26 | #include "tcp-channel-fixture.hpp" |
| 27 | #include "udp-channel-fixture.hpp" |
| 28 | |
| 29 | #include "test-ip.hpp" |
| 30 | |
| 31 | #include <boost/mpl/vector.hpp> |
| 32 | |
| 33 | namespace nfd { |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 34 | namespace face { |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 35 | namespace tests { |
| 36 | |
| 37 | BOOST_AUTO_TEST_SUITE(Face) |
| 38 | BOOST_AUTO_TEST_SUITE(TestTcpUdpChannel) |
| 39 | |
| 40 | template<typename F, typename A> |
| 41 | struct FixtureAndAddress |
| 42 | { |
| 43 | using Fixture = F; |
| 44 | using Address = A; |
| 45 | }; |
| 46 | |
| 47 | using FixtureAndAddressList = boost::mpl::vector< |
| 48 | FixtureAndAddress<TcpChannelFixture, boost::asio::ip::address_v4>, |
| 49 | FixtureAndAddress<TcpChannelFixture, boost::asio::ip::address_v6>, |
| 50 | FixtureAndAddress<UdpChannelFixture, boost::asio::ip::address_v4>, |
| 51 | FixtureAndAddress<UdpChannelFixture, boost::asio::ip::address_v6> |
| 52 | >; |
| 53 | |
| 54 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(Uri, T, FixtureAndAddressList, T::Fixture) |
| 55 | { |
| 56 | decltype(this->listenerEp) ep(T::Address::loopback(), 7050); |
| 57 | auto channel = this->makeChannel(ep.address(), ep.port()); |
| 58 | BOOST_CHECK_EQUAL(channel->getUri(), FaceUri(ep)); |
| 59 | } |
| 60 | |
| 61 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(Listen, T, FixtureAndAddressList, T::Fixture) |
| 62 | { |
| 63 | auto channel = this->makeChannel(typename T::Address()); |
| 64 | BOOST_CHECK_EQUAL(channel->isListening(), false); |
| 65 | |
| 66 | channel->listen(nullptr, nullptr); |
| 67 | BOOST_CHECK_EQUAL(channel->isListening(), true); |
| 68 | |
| 69 | // listen() is idempotent |
| 70 | BOOST_CHECK_NO_THROW(channel->listen(nullptr, nullptr)); |
| 71 | BOOST_CHECK_EQUAL(channel->isListening(), true); |
| 72 | } |
| 73 | |
| 74 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(MultipleAccepts, T, FixtureAndAddressList, T::Fixture) |
| 75 | { |
| 76 | auto address = getTestIp<typename T::Address>(LoopbackAddress::Yes); |
| 77 | SKIP_IF_IP_UNAVAILABLE(address); |
| 78 | this->listen(address); |
| 79 | |
| 80 | BOOST_CHECK_EQUAL(this->listenerChannel->isListening(), true); |
| 81 | BOOST_CHECK_EQUAL(this->listenerChannel->size(), 0); |
| 82 | |
| 83 | auto ch1 = this->makeChannel(typename T::Address()); |
| 84 | this->connect(*ch1); |
| 85 | |
| 86 | BOOST_CHECK_EQUAL(this->limitedIo.run(2, time::seconds(1)), LimitedIo::EXCEED_OPS); |
| 87 | |
| 88 | BOOST_CHECK_EQUAL(this->listenerChannel->size(), 1); |
| 89 | BOOST_CHECK_EQUAL(ch1->size(), 1); |
| 90 | BOOST_CHECK_EQUAL(ch1->isListening(), false); |
| 91 | |
| 92 | auto ch2 = this->makeChannel(typename T::Address()); |
| 93 | auto ch3 = this->makeChannel(typename T::Address()); |
| 94 | this->connect(*ch2); |
| 95 | this->connect(*ch3); |
| 96 | |
| 97 | BOOST_CHECK_EQUAL(this->limitedIo.run(4, time::seconds(2)), LimitedIo::EXCEED_OPS); |
| 98 | |
| 99 | BOOST_CHECK_EQUAL(this->listenerChannel->size(), 3); |
| 100 | BOOST_CHECK_EQUAL(ch1->size(), 1); |
| 101 | BOOST_CHECK_EQUAL(ch2->size(), 1); |
| 102 | BOOST_CHECK_EQUAL(ch3->size(), 1); |
| 103 | BOOST_CHECK_EQUAL(this->clientFaces.size(), 3); |
| 104 | |
| 105 | // check face persistency |
| 106 | for (const auto& face : this->listenerFaces) { |
| 107 | BOOST_CHECK_EQUAL(face->getPersistency(), ndn::nfd::FACE_PERSISTENCY_ON_DEMAND); |
| 108 | } |
| 109 | for (const auto& face : this->clientFaces) { |
| 110 | BOOST_CHECK_EQUAL(face->getPersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT); |
| 111 | } |
| 112 | |
| 113 | // connect twice to the same endpoint |
| 114 | this->connect(*ch3); |
| 115 | |
| 116 | BOOST_CHECK_EQUAL(this->limitedIo.run(1, time::seconds(1)), LimitedIo::EXCEED_OPS); |
| 117 | |
| 118 | BOOST_CHECK_EQUAL(this->listenerChannel->size(), 3); |
| 119 | BOOST_CHECK_EQUAL(ch1->size(), 1); |
| 120 | BOOST_CHECK_EQUAL(ch2->size(), 1); |
| 121 | BOOST_CHECK_EQUAL(ch3->size(), 1); |
| 122 | BOOST_CHECK_EQUAL(this->clientFaces.size(), 4); |
| 123 | BOOST_CHECK_EQUAL(this->clientFaces.at(2), this->clientFaces.at(3)); |
| 124 | } |
| 125 | |
| 126 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(FaceClosure, T, FixtureAndAddressList, T::Fixture) |
| 127 | { |
| 128 | auto address = getTestIp<typename T::Address>(LoopbackAddress::Yes); |
| 129 | SKIP_IF_IP_UNAVAILABLE(address); |
| 130 | this->listen(address); |
| 131 | |
| 132 | auto clientChannel = this->makeChannel(typename T::Address()); |
| 133 | this->connect(*clientChannel); |
| 134 | |
| 135 | BOOST_CHECK_EQUAL(this->limitedIo.run(2, time::seconds(1)), LimitedIo::EXCEED_OPS); |
| 136 | |
| 137 | BOOST_CHECK_EQUAL(this->listenerChannel->size(), 1); |
| 138 | BOOST_CHECK_EQUAL(clientChannel->size(), 1); |
| 139 | |
| 140 | this->clientFaces.at(0)->close(); |
| 141 | |
| 142 | BOOST_CHECK_EQUAL(this->limitedIo.run(2, time::seconds(5)), LimitedIo::EXCEED_OPS); |
| 143 | |
| 144 | BOOST_CHECK_EQUAL(this->listenerChannel->size(), 0); |
| 145 | BOOST_CHECK_EQUAL(clientChannel->size(), 0); |
| 146 | } |
| 147 | |
| 148 | BOOST_AUTO_TEST_SUITE_END() // TestTcpUdpChannel |
| 149 | BOOST_AUTO_TEST_SUITE_END() // Face |
| 150 | |
| 151 | } // namespace tests |
Davide Pesavento | 8fd15e6 | 2017-04-06 19:58:54 -0400 | [diff] [blame] | 152 | } // namespace face |
Davide Pesavento | 9a00fab | 2016-09-27 11:22:46 +0200 | [diff] [blame] | 153 | } // namespace nfd |