blob: 8aca3dabf2570e75382fbf775058ceee0d77cad6 [file] [log] [blame]
Eric Newberryf68f3782015-12-11 00:31:32 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento22fba352017-10-17 15:53:51 -04002/*
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -05003 * Copyright (c) 2014-2024, Regents of the University of California,
Eric Newberryf68f3782015-12-11 00:31:32 -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
26#ifndef NFD_TESTS_DAEMON_FACE_UNIX_STREAM_TRANSPORT_FIXTURE_HPP
27#define NFD_TESTS_DAEMON_FACE_UNIX_STREAM_TRANSPORT_FIXTURE_HPP
28
29#include "face/unix-stream-transport.hpp"
Junxiao Shicde37ad2015-12-24 01:02:05 -070030#include "face/face.hpp"
Eric Newberryf68f3782015-12-11 00:31:32 -070031
Davide Pesaventocf7db2f2019-03-24 23:17:28 -040032#include "tests/test-common.hpp"
Davide Pesavento3dade002019-03-19 11:29:56 -060033#include "tests/daemon/limited-io.hpp"
Davide Pesaventoa8098582019-03-31 15:48:02 -040034#include "tests/daemon/face/dummy-link-service.hpp"
Davide Pesavento279af1c2022-08-29 20:18:32 -040035#include "tests/daemon/face/transport-test-common.hpp"
Eric Newberryf68f3782015-12-11 00:31:32 -070036
Davide Pesavento152874a2024-02-20 22:07:07 -050037#include <boost/filesystem/operations.hpp>
Eric Newberryf68f3782015-12-11 00:31:32 -070038
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040039namespace nfd::tests {
Eric Newberryf68f3782015-12-11 00:31:32 -070040
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040041using unix_stream = boost::asio::local::stream_protocol;
42using face::UnixStreamTransport;
Eric Newberryf68f3782015-12-11 00:31:32 -070043
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040044/**
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050045 * \brief Automatically unlinks the socket file of a Unix stream acceptor.
Eric Newberryf68f3782015-12-11 00:31:32 -070046 */
47class AcceptorWithCleanup : public unix_stream::acceptor
48{
49public:
50 explicit
Davide Pesaventoa9e1ab22023-10-02 22:10:45 -040051 AcceptorWithCleanup(boost::asio::io_context& io, const std::string& path = "")
Eric Newberryf68f3782015-12-11 00:31:32 -070052 : unix_stream::acceptor(io)
53 {
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050054 open();
Eric Newberryf68f3782015-12-11 00:31:32 -070055
56 if (path.empty()) {
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050057 bind("nfd-unix-stream-test." + std::to_string(time::system_clock::now().time_since_epoch().count()) + ".sock");
Eric Newberryf68f3782015-12-11 00:31:32 -070058 }
59 else {
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050060 bind(path);
Eric Newberryf68f3782015-12-11 00:31:32 -070061 }
62
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050063 listen(1);
Eric Newberryf68f3782015-12-11 00:31:32 -070064 }
65
66 ~AcceptorWithCleanup()
67 {
68 boost::system::error_code ec;
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050069 std::string path = local_endpoint(ec).path();
Eric Newberryf68f3782015-12-11 00:31:32 -070070 if (ec) {
71 return;
72 }
73
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050074 close(ec);
Eric Newberryf68f3782015-12-11 00:31:32 -070075 boost::filesystem::remove(path, ec);
76 }
77};
78
Davide Pesaventocf7db2f2019-03-24 23:17:28 -040079class UnixStreamTransportFixture : public GlobalIoFixture
Eric Newberryf68f3782015-12-11 00:31:32 -070080{
81protected:
Davide Pesavento279af1c2022-08-29 20:18:32 -040082 [[nodiscard]] std::tuple<bool, std::string>
Davide Pesavento22fba352017-10-17 15:53:51 -040083 checkPreconditions() const
84 {
85 return {true, ""};
86 }
87
Eric Newberryf68f3782015-12-11 00:31:32 -070088 void
89 initialize()
90 {
91 unix_stream::socket sock(g_io);
Davide Pesaventoef6a5282023-11-03 16:50:10 -040092 m_acceptor.async_accept(sock, [this] (const auto& error) {
Eric Newberryf68f3782015-12-11 00:31:32 -070093 BOOST_REQUIRE_EQUAL(error, boost::system::errc::success);
94 limitedIo.afterOp();
95 });
96
Davide Pesaventoef6a5282023-11-03 16:50:10 -040097 unix_stream::endpoint remoteEp(m_acceptor.local_endpoint());
98 remoteSocket.async_connect(remoteEp, [this] (const auto& error) {
Eric Newberryf68f3782015-12-11 00:31:32 -070099 BOOST_REQUIRE_EQUAL(error, boost::system::errc::success);
100 limitedIo.afterOp();
101 });
102
Davide Pesavento14e71f02019-03-28 17:35:25 -0400103 BOOST_REQUIRE_EQUAL(limitedIo.run(2, 1_s), LimitedIo::EXCEED_OPS);
Eric Newberryf68f3782015-12-11 00:31:32 -0700104
105 localEp = sock.local_endpoint();
Davide Pesaventoef6a5282023-11-03 16:50:10 -0400106 m_face = make_unique<Face>(make_unique<DummyLinkService>(),
107 make_unique<UnixStreamTransport>(std::move(sock)));
108 transport = static_cast<UnixStreamTransport*>(m_face->getTransport());
109 receivedPackets = &static_cast<DummyLinkService*>(m_face->getLinkService())->receivedPackets;
Eric Newberryf68f3782015-12-11 00:31:32 -0700110
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400111 BOOST_REQUIRE_EQUAL(transport->getState(), face::TransportState::UP);
Eric Newberryf68f3782015-12-11 00:31:32 -0700112 }
113
114 void
115 remoteWrite(const ndn::Buffer& buf, bool needToCheck = true)
116 {
117 boost::asio::async_write(remoteSocket, boost::asio::buffer(buf),
Davide Pesaventob3a23ca2019-05-04 20:40:21 -0400118 [needToCheck] (const auto& error, size_t) {
Eric Newberryf68f3782015-12-11 00:31:32 -0700119 if (needToCheck) {
120 BOOST_REQUIRE_EQUAL(error, boost::system::errc::success);
121 }
122 });
Davide Pesavento14e71f02019-03-28 17:35:25 -0400123 limitedIo.defer(1_s);
Eric Newberryf68f3782015-12-11 00:31:32 -0700124 }
125
126protected:
127 LimitedIo limitedIo;
Davide Pesaventoef6a5282023-11-03 16:50:10 -0400128 UnixStreamTransport* transport = nullptr;
Eric Newberryf68f3782015-12-11 00:31:32 -0700129 unix_stream::endpoint localEp;
Davide Pesaventoef6a5282023-11-03 16:50:10 -0400130 unix_stream::socket remoteSocket{g_io};
131 std::vector<RxPacket>* receivedPackets = nullptr;
Eric Newberryf68f3782015-12-11 00:31:32 -0700132
133private:
Davide Pesaventoef6a5282023-11-03 16:50:10 -0400134 AcceptorWithCleanup m_acceptor{g_io};
135 unique_ptr<Face> m_face;
Eric Newberryf68f3782015-12-11 00:31:32 -0700136};
137
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400138} // namespace nfd::tests
Eric Newberryf68f3782015-12-11 00:31:32 -0700139
Eric Newberry65caf202015-12-17 15:08:16 -0700140#endif // NFD_TESTS_DAEMON_FACE_UNIX_STREAM_TRANSPORT_FIXTURE_HPP