blob: c0ee2f865d90c860574ad10f949985d0c7cc8a8f [file] [log] [blame]
Eric Newberrya98bf932015-09-21 00:58:47 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Weiwei Liu280d7dd2016-03-02 23:19:26 -07003 * Copyright (c) 2014-2016, 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/websocket-channel.hpp"
Weiwei Liu280d7dd2016-03-02 23:19:26 -070027#include "face/websocket-transport.hpp"
Junxiao Shicde37ad2015-12-24 01:02:05 -070028
Davide Pesavento9a00fab2016-09-27 11:22:46 +020029#include "channel-fixture.hpp"
Davide Pesaventoeee53aa2016-04-11 17:20:21 +020030#include "test-ip.hpp"
Eric Newberrya98bf932015-09-21 00:58:47 -070031
32namespace nfd {
Junxiao Shicde37ad2015-12-24 01:02:05 -070033namespace tests {
Eric Newberrya98bf932015-09-21 00:58:47 -070034
Weiwei Liu280d7dd2016-03-02 23:19:26 -070035namespace ip = boost::asio::ip;
Junxiao Shicde37ad2015-12-24 01:02:05 -070036
Davide Pesavento9a00fab2016-09-27 11:22:46 +020037class WebSocketChannelFixture : public ChannelFixture<WebSocketChannel, websocket::Endpoint>
Weiwei Liu280d7dd2016-03-02 23:19:26 -070038{
39protected:
Davide Pesavento9a00fab2016-09-27 11:22:46 +020040 virtual unique_ptr<WebSocketChannel>
41 makeChannel(const ip::address& addr, uint16_t port = 0) final
Weiwei Liu280d7dd2016-03-02 23:19:26 -070042 {
43 if (port == 0)
Davide Pesavento9a00fab2016-09-27 11:22:46 +020044 port = getNextPort();
Weiwei Liu280d7dd2016-03-02 23:19:26 -070045
46 return make_unique<WebSocketChannel>(websocket::Endpoint(addr, port));
47 }
48
49 void
50 listen(const ip::address& addr,
51 const time::milliseconds& pingInterval = time::seconds(10),
52 const time::milliseconds& pongTimeout = time::seconds(1))
53 {
54 listenerEp = websocket::Endpoint(addr, 20030);
55 listenerChannel = makeChannel(addr, 20030);
56 listenerChannel->setPingInterval(pingInterval);
57 listenerChannel->setPongTimeout(pongTimeout);
58 listenerChannel->listen(bind(&WebSocketChannelFixture::listenerOnFaceCreated, this, _1));
59 }
60
61 void
62 clientConnect(websocket::Client& client)
63 {
64 client.clear_access_channels(websocketpp::log::alevel::all);
65 client.clear_error_channels(websocketpp::log::elevel::all);
66
67 client.init_asio(&g_io);
68 client.set_open_handler(bind(&WebSocketChannelFixture::clientHandleOpen, this, _1));
69 client.set_message_handler(bind(&WebSocketChannelFixture::clientHandleMessage, this, _1, _2));
70 client.set_ping_handler(bind(&WebSocketChannelFixture::clientHandlePing, this, _1, _2));
71
72 std::string uri = "ws://" + listenerEp.address().to_string() + ":" + to_string(listenerEp.port());
73 websocketpp::lib::error_code ec;
Davide Pesavento9a00fab2016-09-27 11:22:46 +020074 auto con = client.get_connection(uri, ec);
Weiwei Liu280d7dd2016-03-02 23:19:26 -070075 BOOST_REQUIRE_EQUAL(ec, websocketpp::lib::error_code());
76
77 client.connect(con);
78 }
79
80 void
81 initialize(const ip::address& addr,
82 const time::milliseconds& pingInterval = time::seconds(10),
83 const time::milliseconds& pongTimeout = time::seconds(1))
84 {
85 listen(addr, pingInterval, pongTimeout);
86 clientConnect(client);
87 BOOST_REQUIRE_EQUAL(limitedIo.run(2, // listenerOnFaceCreated, clientHandleOpen
88 time::seconds(1)), LimitedIo::EXCEED_OPS);
89 BOOST_REQUIRE_EQUAL(listenerChannel->size(), 1);
90 }
91
92 void
93 clientSendInterest(const Interest& interest)
94 {
95 const Block& payload = interest.wireEncode();
96 client.send(clientHandle, payload.wire(), payload.size(), websocketpp::frame::opcode::binary);
97 }
98
99private:
100 void
101 listenerOnFaceCreated(const shared_ptr<Face>& newFace)
102 {
103 BOOST_REQUIRE(newFace != nullptr);
104 newFace->afterReceiveInterest.connect(bind(&WebSocketChannelFixture::faceAfterReceiveInterest, this, _1));
105 connectFaceClosedSignal(*newFace, [this] { limitedIo.afterOp(); });
106 listenerFaces.push_back(newFace);
107 limitedIo.afterOp();
108 }
109
110 void
111 faceAfterReceiveInterest(const Interest& interest)
112 {
113 faceReceivedInterests.push_back(interest);
114 limitedIo.afterOp();
115 }
116
117 void
118 clientHandleOpen(websocketpp::connection_hdl hdl)
119 {
120 clientHandle = hdl;
121 limitedIo.afterOp();
122 }
123
124 void
125 clientHandleMessage(websocketpp::connection_hdl, websocket::Client::message_ptr msg)
126 {
127 clientReceivedMessages.push_back(msg->get_payload());
128 limitedIo.afterOp();
129 }
130
131 bool
132 clientHandlePing(websocketpp::connection_hdl, std::string)
133 {
134 auto now = time::steady_clock::now();
135 if (m_prevPingRecvTime != time::steady_clock::TimePoint()) {
136 measuredPingInterval = now - m_prevPingRecvTime;
137 }
138 m_prevPingRecvTime = now;
139
140 limitedIo.afterOp();
141 return clientShouldPong;
142 }
143
144protected:
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700145 std::vector<Interest> faceReceivedInterests;
146
147 websocket::Client client;
148 websocketpp::connection_hdl clientHandle;
149 std::vector<std::string> clientReceivedMessages;
Davide Pesavento9a00fab2016-09-27 11:22:46 +0200150
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700151 time::steady_clock::Duration measuredPingInterval;
Davide Pesavento9a00fab2016-09-27 11:22:46 +0200152 bool clientShouldPong = true; // set clientShouldPong false to disable the pong response,
153 // which will cause timeout in listenerChannel
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700154
155private:
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700156 time::steady_clock::TimePoint m_prevPingRecvTime;
157};
158
Davide Pesavento9a00fab2016-09-27 11:22:46 +0200159BOOST_AUTO_TEST_SUITE(Face)
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700160BOOST_FIXTURE_TEST_SUITE(TestWebSocketChannel, WebSocketChannelFixture)
161
162BOOST_AUTO_TEST_CASE(Uri)
163{
164 websocket::Endpoint ep(ip::address_v4::loopback(), 20070);
165 auto channel = makeChannel(ep.address(), ep.port());
Davide Pesaventoeee53aa2016-04-11 17:20:21 +0200166 BOOST_CHECK_EQUAL(channel->getUri(), FaceUri(ep, "ws"));
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700167}
168
169BOOST_AUTO_TEST_CASE(Listen)
170{
171 auto channel = makeChannel(ip::address_v4());
172 BOOST_CHECK_EQUAL(channel->isListening(), false);
173
174 channel->listen(nullptr);
175 BOOST_CHECK_EQUAL(channel->isListening(), true);
176
177 // listen() is idempotent
178 BOOST_CHECK_NO_THROW(channel->listen(nullptr));
179 BOOST_CHECK_EQUAL(channel->isListening(), true);
180}
181
182BOOST_AUTO_TEST_CASE(MultipleAccepts)
183{
Davide Pesaventoeee53aa2016-04-11 17:20:21 +0200184 auto address = getTestIp<ip::address_v4>(LoopbackAddress::Yes);
185 SKIP_IF_IP_UNAVAILABLE(address);
186 this->listen(address);
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700187
188 BOOST_CHECK_EQUAL(listenerChannel->isListening(), true);
189 BOOST_CHECK_EQUAL(listenerChannel->size(), 0);
190
191 websocket::Client client1;
Davide Pesaventoeee53aa2016-04-11 17:20:21 +0200192 this->clientConnect(client1);
193
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700194 BOOST_CHECK_EQUAL(limitedIo.run(2, // listenerOnFaceCreated, clientHandleOpen
195 time::seconds(1)), LimitedIo::EXCEED_OPS);
196 BOOST_CHECK_EQUAL(listenerChannel->size(), 1);
197
198 websocket::Client client2;
199 websocket::Client client3;
Davide Pesaventoeee53aa2016-04-11 17:20:21 +0200200 this->clientConnect(client2);
201 this->clientConnect(client3);
202
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700203 BOOST_CHECK_EQUAL(limitedIo.run(4, // 2 listenerOnFaceCreated, 2 clientHandleOpen
204 time::seconds(1)), LimitedIo::EXCEED_OPS);
205 BOOST_CHECK_EQUAL(listenerChannel->size(), 3);
206
207 // check face persistency
208 for (const auto& face : listenerFaces) {
209 BOOST_CHECK_EQUAL(face->getPersistency(), ndn::nfd::FACE_PERSISTENCY_ON_DEMAND);
210 }
211}
212
213BOOST_AUTO_TEST_CASE(Send)
214{
Davide Pesaventoeee53aa2016-04-11 17:20:21 +0200215 auto address = getTestIp<ip::address_v4>(LoopbackAddress::Yes);
216 SKIP_IF_IP_UNAVAILABLE(address);
217 this->initialize(address);
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700218 auto transport = listenerFaces.front()->getTransport();
219
220 Block pkt1 = ndn::encoding::makeStringBlock(300, "hello");
221 transport->send(face::Transport::Packet(Block(pkt1)));
222 BOOST_CHECK_EQUAL(limitedIo.run(1, // clientHandleMessage
223 time::seconds(1)), LimitedIo::EXCEED_OPS);
224
225 Block pkt2 = ndn::encoding::makeStringBlock(301, "world!");
226 transport->send(face::Transport::Packet(Block(pkt2)));
227 BOOST_CHECK_EQUAL(limitedIo.run(1, // clientHandleMessage
228 time::seconds(1)), LimitedIo::EXCEED_OPS);
229
230 BOOST_REQUIRE_EQUAL(clientReceivedMessages.size(), 2);
231 BOOST_CHECK_EQUAL_COLLECTIONS(
232 reinterpret_cast<const uint8_t*>(clientReceivedMessages[0].data()),
233 reinterpret_cast<const uint8_t*>(clientReceivedMessages[0].data()) + clientReceivedMessages[0].size(),
234 pkt1.begin(), pkt1.end());
235 BOOST_CHECK_EQUAL_COLLECTIONS(
236 reinterpret_cast<const uint8_t*>(clientReceivedMessages[1].data()),
237 reinterpret_cast<const uint8_t*>(clientReceivedMessages[1].data()) + clientReceivedMessages[1].size(),
238 pkt2.begin(), pkt2.end());
239}
240
241BOOST_AUTO_TEST_CASE(Receive)
242{
Davide Pesaventoeee53aa2016-04-11 17:20:21 +0200243 auto address = getTestIp<ip::address_v4>(LoopbackAddress::Yes);
244 SKIP_IF_IP_UNAVAILABLE(address);
245 this->initialize(address);
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700246
247 // use network-layer packets here, otherwise GenericLinkService
248 // won't recognize the packet type and will discard it
249 auto interest1 = makeInterest("ndn:/TpnzGvW9R");
250 auto interest2 = makeInterest("ndn:/QWiIMfj5sL");
251
252 clientSendInterest(*interest1);
253 BOOST_CHECK_EQUAL(limitedIo.run(1, // faceAfterReceiveInterest
254 time::seconds(1)), LimitedIo::EXCEED_OPS);
255
256 clientSendInterest(*interest2);
257 BOOST_CHECK_EQUAL(limitedIo.run(1, // faceAfterReceiveInterest
258 time::seconds(1)), LimitedIo::EXCEED_OPS);
259
260 BOOST_REQUIRE_EQUAL(faceReceivedInterests.size(), 2);
261 BOOST_CHECK_EQUAL(faceReceivedInterests[0].getName(), interest1->getName());
262 BOOST_CHECK_EQUAL(faceReceivedInterests[1].getName(), interest2->getName());
263}
264
265BOOST_AUTO_TEST_CASE(FaceClosure)
266{
Davide Pesaventoeee53aa2016-04-11 17:20:21 +0200267 auto address = getTestIp<ip::address_v4>(LoopbackAddress::Yes);
268 SKIP_IF_IP_UNAVAILABLE(address);
269 this->initialize(address);
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700270
271 listenerFaces.front()->close();
272 BOOST_CHECK_EQUAL(listenerChannel->size(), 0);
273}
274
275BOOST_AUTO_TEST_CASE(RemoteClose)
276{
Davide Pesaventoeee53aa2016-04-11 17:20:21 +0200277 auto address = getTestIp<ip::address_v4>(LoopbackAddress::Yes);
278 SKIP_IF_IP_UNAVAILABLE(address);
279 this->initialize(address);
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700280
281 client.close(clientHandle, websocketpp::close::status::going_away, "");
282 BOOST_CHECK_EQUAL(limitedIo.run(1, // faceClosedSignal
283 time::seconds(1)), LimitedIo::EXCEED_OPS);
284 BOOST_CHECK_EQUAL(listenerChannel->size(), 0);
285}
286
287BOOST_AUTO_TEST_CASE(SetPingInterval)
288{
289 auto pingInterval = time::milliseconds(300);
Davide Pesaventoeee53aa2016-04-11 17:20:21 +0200290 auto address = getTestIp<ip::address_v4>(LoopbackAddress::Yes);
291 SKIP_IF_IP_UNAVAILABLE(address);
292 this->initialize(address, pingInterval, time::milliseconds(1000));
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700293
294 BOOST_CHECK_EQUAL(limitedIo.run(2, // clientHandlePing
295 time::seconds(1)), LimitedIo::EXCEED_OPS);
296 BOOST_CHECK_LE(measuredPingInterval, pingInterval * 1.1);
297 BOOST_CHECK_GE(measuredPingInterval, pingInterval * 0.9);
298}
299
300BOOST_AUTO_TEST_CASE(SetPongTimeOut)
301{
Davide Pesaventoeee53aa2016-04-11 17:20:21 +0200302 auto address = getTestIp<ip::address_v4>(LoopbackAddress::Yes);
303 SKIP_IF_IP_UNAVAILABLE(address);
304 this->initialize(address, time::milliseconds(500), time::milliseconds(300));
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700305 clientShouldPong = false;
Davide Pesaventoeee53aa2016-04-11 17:20:21 +0200306
Weiwei Liu280d7dd2016-03-02 23:19:26 -0700307 BOOST_CHECK_EQUAL(limitedIo.run(2, // clientHandlePing, faceClosedSignal
308 time::seconds(2)), LimitedIo::EXCEED_OPS);
309 BOOST_CHECK_EQUAL(listenerChannel->size(), 0);
310
311 auto transport = static_cast<face::WebSocketTransport*>(listenerFaces.front()->getTransport());
312 BOOST_CHECK(transport->getState() == face::TransportState::FAILED ||
313 transport->getState() == face::TransportState::CLOSED);
314 BOOST_CHECK_EQUAL(transport->getCounters().nOutPings, 1);
315 BOOST_CHECK_EQUAL(transport->getCounters().nInPongs, 0);
316}
Junxiao Shicde37ad2015-12-24 01:02:05 -0700317
318BOOST_AUTO_TEST_SUITE_END() // TestWebSocketChannel
319BOOST_AUTO_TEST_SUITE_END() // Face
320
321} // namespace tests
Eric Newberrya98bf932015-09-21 00:58:47 -0700322} // namespace nfd