Eric Newberry | f68f378 | 2015-12-11 00:31:32 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 84d62cb | 2017-07-12 16:15:18 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Eric Newberry | f68f378 | 2015-12-11 00:31:32 -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 | |
| 26 | #ifndef NFD_TESTS_DAEMON_FACE_TCP_TRANSPORT_FIXTURE_HPP |
| 27 | #define NFD_TESTS_DAEMON_FACE_TCP_TRANSPORT_FIXTURE_HPP |
| 28 | |
| 29 | #include "face/tcp-transport.hpp" |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 30 | #include "face/face.hpp" |
Eric Newberry | f68f378 | 2015-12-11 00:31:32 -0700 | [diff] [blame] | 31 | |
| 32 | #include "dummy-receive-link-service.hpp" |
Eric Newberry | f68f378 | 2015-12-11 00:31:32 -0700 | [diff] [blame] | 33 | #include "tests/limited-io.hpp" |
| 34 | |
| 35 | namespace nfd { |
| 36 | namespace face { |
| 37 | namespace tests { |
| 38 | |
| 39 | using namespace nfd::tests; |
| 40 | namespace ip = boost::asio::ip; |
| 41 | using ip::tcp; |
| 42 | |
| 43 | class TcpTransportFixture : public BaseFixture |
| 44 | { |
| 45 | protected: |
| 46 | TcpTransportFixture() |
| 47 | : transport(nullptr) |
| 48 | , remoteSocket(g_io) |
| 49 | , receivedPackets(nullptr) |
| 50 | , acceptor(g_io) |
| 51 | { |
| 52 | } |
| 53 | |
| 54 | void |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 55 | startAccept(const tcp::endpoint& remoteEp) |
Eric Newberry | f68f378 | 2015-12-11 00:31:32 -0700 | [diff] [blame] | 56 | { |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 57 | BOOST_REQUIRE(!acceptor.is_open()); |
Eric Newberry | f68f378 | 2015-12-11 00:31:32 -0700 | [diff] [blame] | 58 | acceptor.open(remoteEp.protocol()); |
| 59 | acceptor.set_option(tcp::acceptor::reuse_address(true)); |
| 60 | acceptor.bind(remoteEp); |
| 61 | acceptor.listen(1); |
| 62 | acceptor.async_accept(remoteSocket, [this] (const boost::system::error_code& error) { |
| 63 | BOOST_REQUIRE_EQUAL(error, boost::system::errc::success); |
| 64 | limitedIo.afterOp(); |
| 65 | }); |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | void |
| 69 | stopAccept() |
| 70 | { |
| 71 | BOOST_REQUIRE(acceptor.is_open()); |
| 72 | acceptor.close(); |
| 73 | } |
| 74 | |
| 75 | void |
Davide Pesavento | 22fba35 | 2017-10-17 15:53:51 -0400 | [diff] [blame] | 76 | initialize(ip::address address, |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 77 | ndn::nfd::FacePersistency persistency = ndn::nfd::FACE_PERSISTENCY_PERSISTENT) |
| 78 | { |
| 79 | tcp::endpoint remoteEp(address, 7070); |
| 80 | startAccept(remoteEp); |
Eric Newberry | f68f378 | 2015-12-11 00:31:32 -0700 | [diff] [blame] | 81 | |
| 82 | tcp::socket sock(g_io); |
| 83 | sock.async_connect(remoteEp, [this] (const boost::system::error_code& error) { |
| 84 | BOOST_REQUIRE_EQUAL(error, boost::system::errc::success); |
| 85 | limitedIo.afterOp(); |
| 86 | }); |
| 87 | |
| 88 | BOOST_REQUIRE_EQUAL(limitedIo.run(2, time::seconds(1)), LimitedIo::EXCEED_OPS); |
| 89 | |
| 90 | localEp = sock.local_endpoint(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 91 | face = make_unique<Face>(make_unique<DummyReceiveLinkService>(), |
Weiwei Liu | dcdf621 | 2016-08-31 14:34:22 -0700 | [diff] [blame] | 92 | make_unique<TcpTransport>(std::move(sock), persistency)); |
Eric Newberry | f68f378 | 2015-12-11 00:31:32 -0700 | [diff] [blame] | 93 | transport = static_cast<TcpTransport*>(face->getTransport()); |
| 94 | receivedPackets = &static_cast<DummyReceiveLinkService*>(face->getLinkService())->receivedPackets; |
| 95 | |
| 96 | BOOST_REQUIRE_EQUAL(transport->getState(), TransportState::UP); |
| 97 | } |
| 98 | |
| 99 | void |
Eric Newberry | 65caf20 | 2015-12-17 15:08:16 -0700 | [diff] [blame] | 100 | remoteWrite(const std::vector<uint8_t>& buf, bool needToCheck = true) |
Eric Newberry | f68f378 | 2015-12-11 00:31:32 -0700 | [diff] [blame] | 101 | { |
| 102 | boost::asio::async_write(remoteSocket, boost::asio::buffer(buf), |
| 103 | [needToCheck] (const boost::system::error_code& error, size_t) { |
| 104 | if (needToCheck) { |
| 105 | BOOST_REQUIRE_EQUAL(error, boost::system::errc::success); |
| 106 | } |
| 107 | }); |
Eric Newberry | 65caf20 | 2015-12-17 15:08:16 -0700 | [diff] [blame] | 108 | limitedIo.defer(time::seconds(1)); |
Eric Newberry | f68f378 | 2015-12-11 00:31:32 -0700 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | protected: |
| 112 | LimitedIo limitedIo; |
| 113 | TcpTransport* transport; |
| 114 | tcp::endpoint localEp; |
| 115 | tcp::socket remoteSocket; |
| 116 | std::vector<Transport::Packet>* receivedPackets; |
| 117 | |
| 118 | private: |
| 119 | tcp::acceptor acceptor; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 120 | unique_ptr<Face> face; |
Eric Newberry | f68f378 | 2015-12-11 00:31:32 -0700 | [diff] [blame] | 121 | }; |
| 122 | |
| 123 | } // namespace tests |
| 124 | } // namespace face |
| 125 | } // namespace nfd |
| 126 | |
| 127 | #endif // NFD_TESTS_DAEMON_FACE_TCP_TRANSPORT_FIXTURE_HPP |