blob: 381163585f156266decffa57d4251e314cbfee75 [file] [log] [blame]
Steve DiBenedettoef04f272014-06-04 14:28:31 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08003 * Copyright (c) 2014-2015, Regents of the University of California,
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.
Steve DiBenedettoef04f272014-06-04 14:28:31 -060010 *
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
Davide Pesavento6ad890a2015-03-09 03:43:17 +010026#include "face/websocket-channel.hpp"
Steve DiBenedettoef04f272014-06-04 14:28:31 -060027#include "face/websocket-factory.hpp"
Yukai Tu2d6d5632015-10-26 11:06:02 -070028#include "face/websocketpp.hpp"
Davide Pesavento6ad890a2015-03-09 03:43:17 +010029
Steve DiBenedettoef04f272014-06-04 14:28:31 -060030#include "tests/test-common.hpp"
Wentao Shang93ef6c92014-06-19 11:59:17 -040031#include "tests/limited-io.hpp"
32
Steve DiBenedettoef04f272014-06-04 14:28:31 -060033namespace nfd {
34namespace tests {
35
Yukai Tu2d6d5632015-10-26 11:06:02 -070036BOOST_AUTO_TEST_SUITE(Face)
37BOOST_FIXTURE_TEST_SUITE(TestWebSocket, BaseFixture)
38
39using nfd::Face;
Steve DiBenedettoef04f272014-06-04 14:28:31 -060040
41BOOST_AUTO_TEST_CASE(GetChannels)
42{
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020043 WebSocketFactory factory;
Steve DiBenedettoef04f272014-06-04 14:28:31 -060044 BOOST_REQUIRE_EQUAL(factory.getChannels().empty(), true);
45
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020046 std::vector<shared_ptr<const Channel>> expectedChannels;
Steve DiBenedettoef04f272014-06-04 14:28:31 -060047 expectedChannels.push_back(factory.createChannel("127.0.0.1", "20070"));
48 expectedChannels.push_back(factory.createChannel("127.0.0.1", "20071"));
49 expectedChannels.push_back(factory.createChannel("::1", "20071"));
50
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020051 for (const auto& i : factory.getChannels()) {
52 auto pos = std::find(expectedChannels.begin(), expectedChannels.end(), i);
53 BOOST_REQUIRE(pos != expectedChannels.end());
54 expectedChannels.erase(pos);
55 }
Steve DiBenedettoef04f272014-06-04 14:28:31 -060056
57 BOOST_CHECK_EQUAL(expectedChannels.size(), 0);
58}
59
Yukai Tu7c90e6d2015-07-11 12:21:46 +080060BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate)
61{
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020062 WebSocketFactory factory;
Yukai Tu7c90e6d2015-07-11 12:21:46 +080063
64 BOOST_CHECK_THROW(factory.createFace(FaceUri("ws://127.0.0.1:20070"),
65 ndn::nfd::FACE_PERSISTENCY_PERMANENT,
66 bind([]{}),
67 bind([]{})),
68 ProtocolFactory::Error);
69
70 BOOST_CHECK_THROW(factory.createFace(FaceUri("ws://127.0.0.1:20070"),
71 ndn::nfd::FACE_PERSISTENCY_ON_DEMAND,
72 bind([]{}),
73 bind([]{})),
74 ProtocolFactory::Error);
75
76 BOOST_CHECK_THROW(factory.createFace(FaceUri("ws://127.0.0.1:20070"),
77 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
78 bind([]{}),
79 bind([]{})),
80 ProtocolFactory::Error);
81}
82
Wentao Shang93ef6c92014-06-19 11:59:17 -040083class EndToEndFixture : protected BaseFixture
84{
85public:
86 void
87 channel1_onFaceCreated(const shared_ptr<Face>& newFace)
88 {
89 BOOST_CHECK(!static_cast<bool>(face1));
90 face1 = newFace;
Junxiao Shic099ddb2014-12-25 20:53:20 -070091 face1->onReceiveInterest.connect(bind(&EndToEndFixture::face1_onReceiveInterest, this, _1));
92 face1->onReceiveData.connect(bind(&EndToEndFixture::face1_onReceiveData, this, _1));
93 face1->onFail.connect(bind(&EndToEndFixture::face1_onFail, this));
Wentao Shang93ef6c92014-06-19 11:59:17 -040094
95 limitedIo.afterOp();
96 }
97
98 void
99 face1_onReceiveInterest(const Interest& interest)
100 {
101 face1_receivedInterests.push_back(interest);
Wentao Shang93ef6c92014-06-19 11:59:17 -0400102 limitedIo.afterOp();
103 }
104
105 void
106 face1_onReceiveData(const Data& data)
107 {
108 face1_receivedDatas.push_back(data);
Wentao Shang93ef6c92014-06-19 11:59:17 -0400109 limitedIo.afterOp();
110 }
111
112 void
113 face1_onFail()
114 {
Junxiao Shid5134a72015-11-08 07:53:24 -0700115 g_io.post([this] {
116 face1.reset();
117 limitedIo.afterOp();
118 });
Wentao Shang93ef6c92014-06-19 11:59:17 -0400119 }
120
121 void
122 client1_onOpen(websocketpp::connection_hdl hdl)
123 {
124 handle = hdl;
125 limitedIo.afterOp();
126 }
127
128 void
129 client1_onClose(websocketpp::connection_hdl hdl)
130 {
131 limitedIo.afterOp();
132 }
133
134 void
135 client1_onFail(websocketpp::connection_hdl hdl)
136 {
137 limitedIo.afterOp();
138 }
139
Wentao Shang98733142014-09-17 12:13:57 -0700140 bool
141 client1_onPing(websocketpp::connection_hdl hdl, std::string msg)
142 {
143 limitedIo.afterOp();
144 // Return false to suppress the pong response,
145 // which will cause timeout in the websocket channel
146 return false;
147 }
148
Wentao Shang93ef6c92014-06-19 11:59:17 -0400149 void
150 client1_sendInterest(const Interest& interest)
151 {
152 const Block& payload = interest.wireEncode();
153 client1.send(handle, payload.wire(), payload.size(), websocketpp::frame::opcode::binary);
154 }
155
156 void
157 client1_sendData(const Data& data)
158 {
159 const Block& payload = data.wireEncode();
160 client1.send(handle, payload.wire(), payload.size(), websocketpp::frame::opcode::binary);
161 }
162
163 void
164 client1_onMessage(websocketpp::connection_hdl hdl,
165 websocketpp::config::asio_client::message_type::ptr msg)
166 {
Junxiao Shi78926c92015-02-28 22:56:06 -0700167 bool isOk = false;
Wentao Shang93ef6c92014-06-19 11:59:17 -0400168 Block element;
169 const std::string& payload = msg->get_payload();
Junxiao Shi78926c92015-02-28 22:56:06 -0700170 std::tie(isOk, element) = Block::fromBuffer(reinterpret_cast<const uint8_t*>(payload.c_str()),
171 payload.size());
Wentao Shang93ef6c92014-06-19 11:59:17 -0400172 if (isOk)
173 {
174 try {
175 if (element.type() == tlv::Interest)
176 {
177 shared_ptr<Interest> i = make_shared<Interest>();
178 i->wireDecode(element);
179 client1_onReceiveInterest(*i);
180 }
181 else if (element.type() == tlv::Data)
182 {
183 shared_ptr<Data> d = make_shared<Data>();
184 d->wireDecode(element);
185 client1_onReceiveData(*d);
186 }
187 }
188 catch (tlv::Error&) {
189 // Do something?
190 }
191 }
192 limitedIo.afterOp();
193 }
194
195 void
196 client1_onReceiveInterest(const Interest& interest)
197 {
198 client1_receivedInterests.push_back(interest);
199 limitedIo.afterOp();
200 }
201
202 void
203 client1_onReceiveData(const Data& data)
204 {
205 client1_receivedDatas.push_back(data);
206 limitedIo.afterOp();
207 }
208
209public:
210 LimitedIo limitedIo;
211
212 shared_ptr<Face> face1;
213 std::vector<Interest> face1_receivedInterests;
214 std::vector<Data> face1_receivedDatas;
Yukai Tu2d6d5632015-10-26 11:06:02 -0700215 websocket::Client client1;
Wentao Shang93ef6c92014-06-19 11:59:17 -0400216 websocketpp::connection_hdl handle;
217 std::vector<Interest> client1_receivedInterests;
218 std::vector<Data> client1_receivedDatas;
Wentao Shang93ef6c92014-06-19 11:59:17 -0400219};
220
221BOOST_FIXTURE_TEST_CASE(EndToEnd4, EndToEndFixture)
222{
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200223 WebSocketFactory factory1;
Wentao Shang93ef6c92014-06-19 11:59:17 -0400224
225 shared_ptr<WebSocketChannel> channel1 = factory1.createChannel("127.0.0.1", "20070");
Wentao Shang98733142014-09-17 12:13:57 -0700226 channel1->setPingInterval(time::milliseconds(3000));
227 channel1->setPongTimeout(time::milliseconds(1000));
Wentao Shang93ef6c92014-06-19 11:59:17 -0400228
229 BOOST_CHECK_EQUAL(channel1->isListening(), false);
230
231 channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1));
232
233 BOOST_CHECK_EQUAL(channel1->isListening(), true);
234
Wentao Shang93ef6c92014-06-19 11:59:17 -0400235 // Clear all logging info from websocketpp library
236 client1.clear_access_channels(websocketpp::log::alevel::all);
237
238 client1.init_asio(&getGlobalIoService());
239 client1.set_open_handler(bind(&EndToEndFixture::client1_onOpen, this, _1));
240 client1.set_close_handler(bind(&EndToEndFixture::client1_onClose, this, _1));
241 client1.set_fail_handler(bind(&EndToEndFixture::client1_onFail, this, _1));
242 client1.set_message_handler(bind(&EndToEndFixture::client1_onMessage, this, _1, _2));
Wentao Shang98733142014-09-17 12:13:57 -0700243 client1.set_ping_handler(bind(&EndToEndFixture::client1_onPing, this, _1, _2));
Wentao Shang93ef6c92014-06-19 11:59:17 -0400244
245 websocketpp::lib::error_code ec;
Yukai Tu2d6d5632015-10-26 11:06:02 -0700246 auto con = client1.get_connection("ws://127.0.0.1:20070", ec);
Wentao Shang93ef6c92014-06-19 11:59:17 -0400247 client1.connect(con);
248
249 BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(10)) == LimitedIo::EXCEED_OPS,
250 "WebSocketChannel error: cannot connect or cannot accept connection");
251
Wentao Shang98733142014-09-17 12:13:57 -0700252 BOOST_CHECK_EQUAL(channel1->size(), 1);
253
Davide Pesavento94279412015-02-27 01:29:32 +0100254 BOOST_REQUIRE(static_cast<bool>(face1));
Yukai Tu2d6d5632015-10-26 11:06:02 -0700255 BOOST_CHECK_EQUAL(face1->isLocal(), true);
Yukai Tu731f0d72015-07-04 11:14:44 +0800256 BOOST_CHECK_EQUAL(face1->getPersistency(), ndn::nfd::FACE_PERSISTENCY_ON_DEMAND);
Davide Pesavento94279412015-02-27 01:29:32 +0100257 BOOST_CHECK_EQUAL(face1->isMultiAccess(), false);
258 BOOST_CHECK_EQUAL(face1->getLocalUri().toString(), "ws://127.0.0.1:20070");
Wentao Shang93ef6c92014-06-19 11:59:17 -0400259
260 shared_ptr<Interest> interest1 = makeInterest("ndn:/TpnzGvW9R");
261 shared_ptr<Data> data1 = makeData("ndn:/KfczhUqVix");
262 shared_ptr<Interest> interest2 = makeInterest("ndn:/QWiIMfj5sL");
263 shared_ptr<Data> data2 = makeData("ndn:/XNBV796f");
264
265 client1_sendInterest(*interest1);
266 client1_sendInterest(*interest1);
267 client1_sendInterest(*interest1);
268 face1->sendData (*data1);
269 face1->sendInterest (*interest2);
270 client1_sendData (*data2);
271 client1_sendData (*data2);
272 client1_sendData (*data2);
Yukai Tu2d6d5632015-10-26 11:06:02 -0700273
Wentao Shange612e2f2014-08-04 10:24:59 -0400274 size_t nBytesSent = data1->wireEncode().size() + interest2->wireEncode().size();
275 size_t nBytesReceived = interest1->wireEncode().size() * 3 + data2->wireEncode().size() * 3;
Wentao Shang93ef6c92014-06-19 11:59:17 -0400276
277 BOOST_CHECK_MESSAGE(limitedIo.run(8, time::seconds(10)) == LimitedIo::EXCEED_OPS,
278 "WebSocketChannel error: cannot send or receive Interest/Data packets");
279
280 BOOST_REQUIRE_EQUAL(face1_receivedInterests.size(), 3);
281 BOOST_REQUIRE_EQUAL(face1_receivedDatas .size(), 3);
282 BOOST_REQUIRE_EQUAL(client1_receivedInterests.size(), 1);
283 BOOST_REQUIRE_EQUAL(client1_receivedDatas .size(), 1);
284
285 BOOST_CHECK_EQUAL(face1_receivedInterests[0].getName(), interest1->getName());
286 BOOST_CHECK_EQUAL(face1_receivedDatas [0].getName(), data2->getName());
287 BOOST_CHECK_EQUAL(client1_receivedInterests[0].getName(), interest2->getName());
288 BOOST_CHECK_EQUAL(client1_receivedDatas [0].getName(), data1->getName());
289
Junxiao Shida93f1f2015-11-11 06:13:16 -0700290 const face::FaceCounters& counters1 = face1->getCounters();
291 BOOST_CHECK_EQUAL(counters1.nInInterests, 3);
292 BOOST_CHECK_EQUAL(counters1.nInData, 3);
293 BOOST_CHECK_EQUAL(counters1.nOutInterests, 1);
294 BOOST_CHECK_EQUAL(counters1.nOutData, 1);
295 BOOST_CHECK_EQUAL(counters1.nInBytes, nBytesReceived);
296 BOOST_CHECK_EQUAL(counters1.nOutBytes, nBytesSent);
Wentao Shang98733142014-09-17 12:13:57 -0700297
298 limitedIo.run(LimitedIo::UNLIMITED_OPS, time::seconds(8));
299 BOOST_CHECK_EQUAL(channel1->size(), 0);
Wentao Shang93ef6c92014-06-19 11:59:17 -0400300}
301
Yukai Tu2d6d5632015-10-26 11:06:02 -0700302BOOST_AUTO_TEST_SUITE_END() // TestWebSocket
303BOOST_AUTO_TEST_SUITE_END() // Face
Steve DiBenedettoef04f272014-06-04 14:28:31 -0600304
305} // namespace tests
306} // namespace nfd