blob: c602f97c3678f5193a3e827a720be27e09022a8a [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
Junxiao Shicde37ad2015-12-24 01:02:05 -070026#include "face/unix-stream-channel.hpp"
27
Davide Pesavento9a00fab2016-09-27 11:22:46 +020028#include "channel-fixture.hpp"
Eric Newberrya98bf932015-09-21 00:58:47 -070029
Spencer Lee75142a12016-04-13 16:55:10 -070030#include <boost/filesystem.hpp>
31#include <fstream>
32
Eric Newberrya98bf932015-09-21 00:58:47 -070033namespace nfd {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040034namespace face {
Junxiao Shicde37ad2015-12-24 01:02:05 -070035namespace tests {
Eric Newberrya98bf932015-09-21 00:58:47 -070036
Spencer Lee75142a12016-04-13 16:55:10 -070037namespace fs = boost::filesystem;
38namespace local = boost::asio::local;
Junxiao Shicde37ad2015-12-24 01:02:05 -070039
Davide Pesavento9a00fab2016-09-27 11:22:46 +020040class UnixStreamChannelFixture : public ChannelFixture<UnixStreamChannel, unix_stream::Endpoint>
Spencer Lee75142a12016-04-13 16:55:10 -070041{
42protected:
43 UnixStreamChannelFixture()
Spencer Lee75142a12016-04-13 16:55:10 -070044 {
Davide Pesavento9a00fab2016-09-27 11:22:46 +020045 listenerEp = unix_stream::Endpoint("nfd-test-unix-stream-channel.sock");
Spencer Lee75142a12016-04-13 16:55:10 -070046 }
47
Davide Pesavento8fd15e62017-04-06 19:58:54 -040048 unique_ptr<UnixStreamChannel>
Davide Pesavento9a00fab2016-09-27 11:22:46 +020049 makeChannel() final
Spencer Lee75142a12016-04-13 16:55:10 -070050 {
51 return make_unique<UnixStreamChannel>(listenerEp);
52 }
53
54 void
55 listen()
56 {
57 listenerChannel = makeChannel();
58 listenerChannel->listen(
59 [this] (const shared_ptr<Face>& newFace) {
60 BOOST_REQUIRE(newFace != nullptr);
61 connectFaceClosedSignal(*newFace, [this] { limitedIo.afterOp(); });
62 listenerFaces.push_back(newFace);
63 limitedIo.afterOp();
64 },
Davide Pesavento9a00fab2016-09-27 11:22:46 +020065 ChannelFixture::unexpectedFailure);
Spencer Lee75142a12016-04-13 16:55:10 -070066 }
67
68 void
Davide Pesavento9a00fab2016-09-27 11:22:46 +020069 clientConnect(local::stream_protocol::socket& client)
Spencer Lee75142a12016-04-13 16:55:10 -070070 {
71 client.async_connect(listenerEp,
72 [this] (const boost::system::error_code& error) {
73 BOOST_REQUIRE_EQUAL(error, boost::system::errc::success);
74 limitedIo.afterOp();
75 });
76 }
Spencer Lee75142a12016-04-13 16:55:10 -070077};
78
Davide Pesavento9a00fab2016-09-27 11:22:46 +020079BOOST_AUTO_TEST_SUITE(Face)
Spencer Lee75142a12016-04-13 16:55:10 -070080BOOST_FIXTURE_TEST_SUITE(TestUnixStreamChannel, UnixStreamChannelFixture)
81
Davide Pesavento9a00fab2016-09-27 11:22:46 +020082BOOST_AUTO_TEST_CASE(Uri)
83{
84 auto channel = makeChannel();
85 BOOST_CHECK_EQUAL(channel->getUri(), FaceUri(listenerEp));
86}
87
Spencer Lee75142a12016-04-13 16:55:10 -070088BOOST_AUTO_TEST_CASE(Listen)
89{
90 auto channel = makeChannel();
91 BOOST_CHECK_EQUAL(channel->isListening(), false);
92
93 channel->listen(nullptr, nullptr);
94 BOOST_CHECK_EQUAL(channel->isListening(), true);
95
96 // listen() is idempotent
97 BOOST_CHECK_NO_THROW(channel->listen(nullptr, nullptr));
98 BOOST_CHECK_EQUAL(channel->isListening(), true);
99}
100
101BOOST_AUTO_TEST_CASE(MultipleAccepts)
102{
103 this->listen();
104
105 BOOST_CHECK_EQUAL(listenerChannel->isListening(), true);
Davide Pesaventoc19408d2017-04-08 00:42:55 -0400106 BOOST_CHECK_EQUAL(listenerChannel->size(), 0);
Spencer Lee75142a12016-04-13 16:55:10 -0700107
108 local::stream_protocol::socket client1(g_io);
Davide Pesavento9a00fab2016-09-27 11:22:46 +0200109 this->clientConnect(client1);
Spencer Lee75142a12016-04-13 16:55:10 -0700110
111 BOOST_CHECK_EQUAL(limitedIo.run(2, time::seconds(1)), LimitedIo::EXCEED_OPS);
Davide Pesaventoc19408d2017-04-08 00:42:55 -0400112 BOOST_CHECK_EQUAL(listenerChannel->size(), 1);
Spencer Lee75142a12016-04-13 16:55:10 -0700113
114 local::stream_protocol::socket client2(g_io);
115 local::stream_protocol::socket client3(g_io);
Davide Pesavento9a00fab2016-09-27 11:22:46 +0200116 this->clientConnect(client2);
117 this->clientConnect(client3);
Spencer Lee75142a12016-04-13 16:55:10 -0700118
119 BOOST_CHECK_EQUAL(limitedIo.run(4, time::seconds(1)), LimitedIo::EXCEED_OPS);
Davide Pesaventoc19408d2017-04-08 00:42:55 -0400120 BOOST_CHECK_EQUAL(listenerChannel->size(), 3);
Spencer Lee75142a12016-04-13 16:55:10 -0700121 BOOST_CHECK_EQUAL(listenerFaces.size(), 3);
122
123 // check face persistency
124 for (const auto& face : listenerFaces) {
125 BOOST_CHECK_EQUAL(face->getPersistency(), ndn::nfd::FACE_PERSISTENCY_ON_DEMAND);
126 }
127}
128
129BOOST_AUTO_TEST_CASE(SocketFile)
130{
131 fs::path socketPath(listenerEp.path());
132 fs::remove(socketPath);
133
134 auto channel = makeChannel();
135 BOOST_CHECK_EQUAL(fs::symlink_status(socketPath).type(), fs::file_not_found);
136
137 channel->listen(nullptr, nullptr);
138 auto status = fs::symlink_status(socketPath);
139 BOOST_CHECK_EQUAL(status.type(), fs::socket_file);
140 BOOST_CHECK_EQUAL(status.permissions(), fs::owner_read | fs::group_read | fs::others_read |
141 fs::owner_write | fs::group_write | fs::others_write);
142
143 channel.reset();
144 BOOST_CHECK_EQUAL(fs::symlink_status(socketPath).type(), fs::file_not_found);
145}
146
147BOOST_AUTO_TEST_CASE(ExistingStaleSocketFile)
148{
149 fs::path socketPath(listenerEp.path());
150 fs::remove(socketPath);
151
152 local::stream_protocol::acceptor acceptor(g_io, listenerEp);
153 acceptor.close();
154 BOOST_CHECK_EQUAL(fs::symlink_status(socketPath).type(), fs::socket_file);
155
156 auto channel = makeChannel();
157 BOOST_CHECK_NO_THROW(channel->listen(nullptr, nullptr));
158 BOOST_CHECK_EQUAL(fs::symlink_status(socketPath).type(), fs::socket_file);
159}
160
161BOOST_AUTO_TEST_CASE(ExistingRegularFile)
162{
163 fs::path socketPath(listenerEp.path());
164 fs::remove(socketPath);
165
166 std::ofstream f(listenerEp.path());
167 f.close();
168
169 auto channel = makeChannel();
170 BOOST_CHECK_THROW(channel->listen(nullptr, nullptr), UnixStreamChannel::Error);
171
172 fs::remove(socketPath);
173}
Junxiao Shicde37ad2015-12-24 01:02:05 -0700174
175BOOST_AUTO_TEST_SUITE_END() // TestUnixStreamChannel
176BOOST_AUTO_TEST_SUITE_END() // Face
177
178} // namespace tests
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400179} // namespace face
Eric Newberrya98bf932015-09-21 00:58:47 -0700180} // namespace nfd