blob: 52e2a1155c8307d87f719c0f35ce3af66de9cfd5 [file] [log] [blame]
Yanbiao Li73860e32015-08-19 16:30:16 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi38b24c72017-01-05 02:59:31 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Yanbiao Li73860e32015-08-19 16:30:16 -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#include "mgmt/face-manager.hpp"
Davide Pesavento5f47aa62016-10-07 22:09:09 +020027#include "core/random.hpp"
Junxiao Shiea47bde2017-01-26 17:49:16 +000028#include "face/protocol-factory.hpp"
Yanbiao Li73860e32015-08-19 16:30:16 -070029
Davide Pesavento97210d52016-10-14 15:45:48 +020030#include "nfd-manager-common-fixture.hpp"
31#include "../face/dummy-face.hpp"
Eric Newberry1b4ba052016-10-07 23:04:07 -070032#include "../face/dummy-transport.hpp"
Davide Pesavento97210d52016-10-14 15:45:48 +020033
Yanbiao Li73860e32015-08-19 16:30:16 -070034#include <ndn-cxx/encoding/tlv.hpp>
Davide Pesavento7a294d42017-02-21 21:46:44 -050035#include <ndn-cxx/encoding/tlv-nfd.hpp>
Junxiao Shi25c6ce42016-09-09 13:49:59 +000036#include <ndn-cxx/mgmt/nfd/channel-status.hpp>
37#include <ndn-cxx/mgmt/nfd/face-event-notification.hpp>
Yanbiao Li73860e32015-08-19 16:30:16 -070038
39namespace nfd {
40namespace tests {
41
Yanbiao Lidf846e52016-01-30 21:53:47 -080042class FaceManagerFixture : public NfdManagerCommonFixture
Yanbiao Li73860e32015-08-19 16:30:16 -070043{
44public:
45 FaceManagerFixture()
46 : m_faceTable(m_forwarder.getFaceTable())
Junxiao Shiea47bde2017-01-26 17:49:16 +000047 , m_faceSystem(m_faceTable)
48 , m_manager(m_faceSystem, m_dispatcher, *m_authenticator)
Yanbiao Li73860e32015-08-19 16:30:16 -070049 {
Junxiao Shi9ddf1b52016-08-22 03:58:55 +000050 setTopPrefix();
Yanbiao Lidf846e52016-01-30 21:53:47 -080051 setPrivilege("faces");
Yanbiao Li73860e32015-08-19 16:30:16 -070052 }
53
54public:
Junxiao Shicde37ad2015-12-24 01:02:05 -070055 enum AddFaceFlags {
56 REMOVE_LAST_NOTIFICATION = 1 << 0,
57 SET_SCOPE_LOCAL = 1 << 1,
58 SET_URI_TEST = 1 << 2,
59 RANDOMIZE_COUNTERS = 1 << 3
60 };
61
62 /** \brief adds a face to the FaceTable
63 * \param options bitwise OR'ed AddFaceFlags
64 */
Yanbiao Li73860e32015-08-19 16:30:16 -070065 shared_ptr<Face>
Junxiao Shicde37ad2015-12-24 01:02:05 -070066 addFace(int flags = 0)
Yanbiao Li73860e32015-08-19 16:30:16 -070067 {
Junxiao Shicde37ad2015-12-24 01:02:05 -070068 std::string uri = "dummy://";
69 ndn::nfd::FaceScope scope = ndn::nfd::FACE_SCOPE_NON_LOCAL;
70
71 if ((flags & SET_SCOPE_LOCAL) != 0) {
72 scope = ndn::nfd::FACE_SCOPE_LOCAL;
73 }
74 if ((flags & SET_URI_TEST) != 0) {
75 uri = "test://";
76 }
77
78 auto face = make_shared<DummyFace>(uri, uri, scope);
Yanbiao Li73860e32015-08-19 16:30:16 -070079 m_faceTable.add(face);
Junxiao Shicde37ad2015-12-24 01:02:05 -070080
81 if ((flags & RANDOMIZE_COUNTERS) != 0) {
82 const face::FaceCounters& counters = face->getCounters();
83 randomizeCounter(counters.nInInterests);
84 randomizeCounter(counters.nOutInterests);
85 randomizeCounter(counters.nInData);
86 randomizeCounter(counters.nOutData);
87 randomizeCounter(counters.nInNacks);
88 randomizeCounter(counters.nOutNacks);
89 randomizeCounter(counters.nInPackets);
90 randomizeCounter(counters.nOutPackets);
91 randomizeCounter(counters.nInBytes);
92 randomizeCounter(counters.nOutBytes);
93 }
94
Yanbiao Li73860e32015-08-19 16:30:16 -070095 advanceClocks(time::milliseconds(1), 10); // wait for notification posted
Junxiao Shicde37ad2015-12-24 01:02:05 -070096 if ((flags & REMOVE_LAST_NOTIFICATION) != 0) {
Yanbiao Li73860e32015-08-19 16:30:16 -070097 m_responses.pop_back();
98 }
Junxiao Shicde37ad2015-12-24 01:02:05 -070099
Yanbiao Li73860e32015-08-19 16:30:16 -0700100 return face;
101 }
102
Junxiao Shicde37ad2015-12-24 01:02:05 -0700103private:
104 template<typename T>
105 static typename std::enable_if<std::is_base_of<SimpleCounter, T>::value>::type
106 randomizeCounter(const T& counter)
107 {
Davide Pesavento5f47aa62016-10-07 22:09:09 +0200108 static std::uniform_int_distribution<typename T::rep> dist;
109 const_cast<T&>(counter).set(dist(getGlobalRng()));
Junxiao Shicde37ad2015-12-24 01:02:05 -0700110 }
111
Yanbiao Li73860e32015-08-19 16:30:16 -0700112protected:
113 FaceTable& m_faceTable;
Junxiao Shiea47bde2017-01-26 17:49:16 +0000114 FaceSystem m_faceSystem;
Yanbiao Li73860e32015-08-19 16:30:16 -0700115 FaceManager m_manager;
116};
117
Davide Pesavento97210d52016-10-14 15:45:48 +0200118BOOST_AUTO_TEST_SUITE(Mgmt)
Junxiao Shicde37ad2015-12-24 01:02:05 -0700119BOOST_FIXTURE_TEST_SUITE(TestFaceManager, FaceManagerFixture)
Yanbiao Li73860e32015-08-19 16:30:16 -0700120
121BOOST_AUTO_TEST_SUITE(DestroyFace)
122
123BOOST_AUTO_TEST_CASE(Existing)
124{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700125 auto addedFace = addFace(REMOVE_LAST_NOTIFICATION | SET_SCOPE_LOCAL); // clear notification for creation
Yanbiao Li73860e32015-08-19 16:30:16 -0700126
127 auto parameters = ControlParameters().setFaceId(addedFace->getId());
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000128 auto req = makeControlCommandRequest("/localhost/nfd/faces/destroy", parameters);
129 receiveInterest(req);
Yanbiao Li73860e32015-08-19 16:30:16 -0700130
131 BOOST_REQUIRE_EQUAL(m_responses.size(), 2); // one response and one notification
132 // notification is already tested, so ignore it
133
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000134 BOOST_CHECK_EQUAL(checkResponse(1, req.getName(), makeResponse(200, "OK", parameters)),
Yanbiao Li73860e32015-08-19 16:30:16 -0700135 CheckResponseResult::OK);
136
Junxiao Shicde37ad2015-12-24 01:02:05 -0700137 BOOST_CHECK_EQUAL(addedFace->getId(), face::INVALID_FACEID);
Yanbiao Li73860e32015-08-19 16:30:16 -0700138}
139
140BOOST_AUTO_TEST_CASE(NonExisting)
141{
142 auto parameters = ControlParameters().setFaceId(65535);
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000143 auto req = makeControlCommandRequest("/localhost/nfd/faces/destroy", parameters);
144 receiveInterest(req);
Yanbiao Li73860e32015-08-19 16:30:16 -0700145
146 BOOST_REQUIRE_EQUAL(m_responses.size(), 1);
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000147 BOOST_CHECK_EQUAL(checkResponse(0, req.getName(), makeResponse(200, "OK", parameters)),
Yanbiao Li73860e32015-08-19 16:30:16 -0700148 CheckResponseResult::OK);
149}
150
151BOOST_AUTO_TEST_SUITE_END() // DestroyFace
152
Davide Pesavento97210d52016-10-14 15:45:48 +0200153BOOST_AUTO_TEST_SUITE(Datasets)
Yanbiao Li73860e32015-08-19 16:30:16 -0700154
155BOOST_AUTO_TEST_CASE(FaceDataset)
156{
157 size_t nEntries = 303;
Junxiao Shicde37ad2015-12-24 01:02:05 -0700158 for (size_t i = 0; i < nEntries; ++i) {
159 addFace(REMOVE_LAST_NOTIFICATION | SET_URI_TEST | RANDOMIZE_COUNTERS);
Yanbiao Li73860e32015-08-19 16:30:16 -0700160 }
161
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000162 receiveInterest(Interest("/localhost/nfd/faces/list"));
Yanbiao Li73860e32015-08-19 16:30:16 -0700163
164 Block content;
165 BOOST_CHECK_NO_THROW(content = concatenateResponses());
166 BOOST_CHECK_NO_THROW(content.parse());
167 BOOST_REQUIRE_EQUAL(content.elements().size(), nEntries);
168
Yanbiao Li73860e32015-08-19 16:30:16 -0700169 std::set<FaceId> faceIds;
170 for (size_t idx = 0; idx < nEntries; ++idx) {
171 BOOST_TEST_MESSAGE("processing element: " << idx);
172
173 ndn::nfd::FaceStatus decodedStatus;
174 BOOST_REQUIRE_NO_THROW(decodedStatus.wireDecode(content.elements()[idx]));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700175 BOOST_CHECK(m_faceTable.get(decodedStatus.getFaceId()) != nullptr);
Yanbiao Li73860e32015-08-19 16:30:16 -0700176 faceIds.insert(decodedStatus.getFaceId());
Yanbiao Li73860e32015-08-19 16:30:16 -0700177 }
178
179 BOOST_CHECK_EQUAL(faceIds.size(), nEntries);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700180 // TODO#3325 check dataset contents including counter values
Yanbiao Li73860e32015-08-19 16:30:16 -0700181}
182
183BOOST_AUTO_TEST_CASE(FaceQuery)
184{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700185 auto face1 = addFace(REMOVE_LAST_NOTIFICATION); // dummy://
186 auto face2 = addFace(REMOVE_LAST_NOTIFICATION | SET_SCOPE_LOCAL); // dummy://, local
187 auto face3 = addFace(REMOVE_LAST_NOTIFICATION | SET_URI_TEST); // test://
Yanbiao Li73860e32015-08-19 16:30:16 -0700188
189 auto generateQueryName = [] (const ndn::nfd::FaceQueryFilter& filter) {
190 return Name("/localhost/nfd/faces/query").append(filter.wireEncode());
191 };
192
193 auto querySchemeName =
194 generateQueryName(ndn::nfd::FaceQueryFilter().setUriScheme("dummy"));
195 auto queryIdName =
196 generateQueryName(ndn::nfd::FaceQueryFilter().setFaceId(face1->getId()));
197 auto queryScopeName =
198 generateQueryName(ndn::nfd::FaceQueryFilter().setFaceScope(ndn::nfd::FACE_SCOPE_NON_LOCAL));
199 auto invalidQueryName =
200 Name("/localhost/nfd/faces/query").append(ndn::makeStringBlock(tlv::Content, "invalid"));
201
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000202 receiveInterest(Interest(querySchemeName)); // face1 and face2 expected
203 receiveInterest(Interest(queryIdName)); // face1 expected
204 receiveInterest(Interest(queryScopeName)); // face1 and face3 expected
205 receiveInterest(Interest(invalidQueryName)); // nack expected
Yanbiao Li73860e32015-08-19 16:30:16 -0700206
207 BOOST_REQUIRE_EQUAL(m_responses.size(), 4);
208
209 Block content;
210 ndn::nfd::FaceStatus status;
211
212 content = m_responses[0].getContent();
213 BOOST_CHECK_NO_THROW(content.parse());
214 BOOST_CHECK_EQUAL(content.elements().size(), 2); // face1 and face2
215 BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[0]));
216 BOOST_CHECK_EQUAL(face1->getId(), status.getFaceId());
217 BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[1]));
218 BOOST_CHECK_EQUAL(face2->getId(), status.getFaceId());
219
220 content = m_responses[1].getContent();
221 BOOST_CHECK_NO_THROW(content.parse());
222 BOOST_CHECK_EQUAL(content.elements().size(), 1); // face1
223 BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[0]));
224 BOOST_CHECK_EQUAL(face1->getId(), status.getFaceId());
225
226 content = m_responses[2].getContent();
227 BOOST_CHECK_NO_THROW(content.parse());
228 BOOST_CHECK_EQUAL(content.elements().size(), 2); // face1 and face3
229 BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[0]));
230 BOOST_CHECK_EQUAL(face1->getId(), status.getFaceId());
231 BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[1]));
232 BOOST_CHECK_EQUAL(face3->getId(), status.getFaceId());
233
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200234 ControlResponse expectedResponse(400, "Malformed filter"); // nack, 400, malformed filter
Yanbiao Li73860e32015-08-19 16:30:16 -0700235 BOOST_CHECK_EQUAL(checkResponse(3, invalidQueryName, expectedResponse, tlv::ContentType_Nack),
236 CheckResponseResult::OK);
237}
238
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400239class TestChannel : public face::Channel
Yanbiao Li73860e32015-08-19 16:30:16 -0700240{
241public:
Davide Pesavento97210d52016-10-14 15:45:48 +0200242 explicit
Yanbiao Li73860e32015-08-19 16:30:16 -0700243 TestChannel(const std::string& uri)
244 {
245 setUri(FaceUri(uri));
246 }
Davide Pesaventoc19408d2017-04-08 00:42:55 -0400247
248 bool
249 isListening() const final
250 {
251 return false;
252 }
253
254 size_t
255 size() const final
256 {
257 return 0;
258 }
Yanbiao Li73860e32015-08-19 16:30:16 -0700259};
260
Davide Pesaventoe5eebad2017-04-06 20:23:26 -0400261class TestProtocolFactory : public face::ProtocolFactory
Yanbiao Li73860e32015-08-19 16:30:16 -0700262{
263public:
Junxiao Shic3443042017-01-26 17:21:35 +0000264 void
265 processConfig(OptionalConfigSection configSection,
266 FaceSystem::ConfigContext& context) final
267 {
268 }
269
270 void
Eric Newberry78e32b02017-04-01 14:34:44 +0000271 createFace(const FaceUri& remoteUri,
272 const ndn::optional<FaceUri>& localUri,
Yanbiao Li73860e32015-08-19 16:30:16 -0700273 ndn::nfd::FacePersistency persistency,
Eric Newberryf40551a2016-09-05 15:41:16 -0700274 bool wantLocalFieldsEnabled,
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400275 const face::FaceCreatedCallback& onCreated,
276 const face::FaceCreationFailedCallback& onConnectFailed) final
Yanbiao Li73860e32015-08-19 16:30:16 -0700277 {
278 }
279
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400280 std::vector<shared_ptr<const face::Channel>>
Davide Pesavento97210d52016-10-14 15:45:48 +0200281 getChannels() const final
Yanbiao Li73860e32015-08-19 16:30:16 -0700282 {
283 return m_channels;
284 }
285
286public:
287 shared_ptr<TestChannel>
288 addChannel(const std::string& channelUri)
289 {
290 auto channel = make_shared<TestChannel>(channelUri);
291 m_channels.push_back(channel);
292 return channel;
293 }
294
295private:
Davide Pesavento8fd15e62017-04-06 19:58:54 -0400296 std::vector<shared_ptr<const face::Channel>> m_channels;
Yanbiao Li73860e32015-08-19 16:30:16 -0700297};
298
299BOOST_AUTO_TEST_CASE(ChannelDataset)
300{
Junxiao Shib47247d2017-01-24 15:09:16 +0000301 m_manager.m_faceSystem.m_factories["test"] = make_unique<TestProtocolFactory>();
302 auto factory = static_cast<TestProtocolFactory*>(m_manager.m_faceSystem.getFactoryById("test"));
Yanbiao Li73860e32015-08-19 16:30:16 -0700303
304 std::map<std::string, shared_ptr<TestChannel>> addedChannels;
305 size_t nEntries = 404;
Eric Newberry1b4ba052016-10-07 23:04:07 -0700306 for (size_t i = 0; i < nEntries; i++) {
Yanbiao Li73860e32015-08-19 16:30:16 -0700307 auto channel = factory->addChannel("test" + boost::lexical_cast<std::string>(i) + "://");
308 addedChannels[channel->getUri().toString()] = channel;
309 }
310
Junxiao Shi8a1f1702017-07-03 00:05:08 +0000311 receiveInterest(Interest("/localhost/nfd/faces/channels"));
Yanbiao Li73860e32015-08-19 16:30:16 -0700312
313 Block content;
314 BOOST_CHECK_NO_THROW(content = concatenateResponses());
315 BOOST_CHECK_NO_THROW(content.parse());
316 BOOST_REQUIRE_EQUAL(content.elements().size(), nEntries);
317
318 for (size_t idx = 0; idx < nEntries; ++idx) {
319 BOOST_TEST_MESSAGE("processing element: " << idx);
320
321 ndn::nfd::ChannelStatus decodedStatus;
322 BOOST_CHECK_NO_THROW(decodedStatus.wireDecode(content.elements()[idx]));
323 BOOST_CHECK(addedChannels.find(decodedStatus.getLocalUri()) != addedChannels.end());
324 }
325}
326
Davide Pesavento97210d52016-10-14 15:45:48 +0200327BOOST_AUTO_TEST_SUITE_END() // Datasets
328
329BOOST_AUTO_TEST_SUITE(Notifications)
330
Eric Newberry1b4ba052016-10-07 23:04:07 -0700331BOOST_AUTO_TEST_CASE(FaceEventCreated)
Davide Pesavento97210d52016-10-14 15:45:48 +0200332{
Eric Newberry1b4ba052016-10-07 23:04:07 -0700333 auto face = addFace(); // trigger FACE_EVENT_CREATED notification
334 BOOST_CHECK_NE(face->getId(), face::INVALID_FACEID);
335 FaceId faceId = face->getId();
336
337 BOOST_CHECK_EQUAL(m_manager.m_faceStateChangeConn.count(faceId), 1);
Davide Pesavento97210d52016-10-14 15:45:48 +0200338
339 // check notification
Eric Newberry1b4ba052016-10-07 23:04:07 -0700340 Block payload;
341 ndn::nfd::FaceEventNotification notification;
342 BOOST_REQUIRE_EQUAL(m_responses.size(), 1);
343 BOOST_CHECK_NO_THROW(payload = m_responses.back().getContent().blockFromValue());
344 BOOST_CHECK_EQUAL(payload.type(), ndn::tlv::nfd::FaceEventNotification);
345 BOOST_CHECK_NO_THROW(notification.wireDecode(payload));
346 BOOST_CHECK_EQUAL(notification.getKind(), ndn::nfd::FACE_EVENT_CREATED);
347 BOOST_CHECK_EQUAL(notification.getFaceId(), faceId);
348 BOOST_CHECK_EQUAL(notification.getRemoteUri(), face->getRemoteUri().toString());
349 BOOST_CHECK_EQUAL(notification.getLocalUri(), face->getLocalUri().toString());
350 BOOST_CHECK_EQUAL(notification.getFaceScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL);
351 BOOST_CHECK_EQUAL(notification.getFacePersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
352 BOOST_CHECK_EQUAL(notification.getLinkType(), ndn::nfd::LinkType::LINK_TYPE_POINT_TO_POINT);
353 BOOST_CHECK_EQUAL(notification.getFlags(), 0x0);
354}
Davide Pesavento97210d52016-10-14 15:45:48 +0200355
Eric Newberry1b4ba052016-10-07 23:04:07 -0700356BOOST_AUTO_TEST_CASE(FaceEventDownUp)
357{
358 auto face = addFace();
359 BOOST_CHECK_NE(face->getId(), face::INVALID_FACEID);
360 FaceId faceId = face->getId();
361
362 // trigger FACE_EVENT_DOWN notification
363 dynamic_cast<face::tests::DummyTransport*>(face->getTransport())->setState(face::FaceState::DOWN);
Davide Pesavento97210d52016-10-14 15:45:48 +0200364 advanceClocks(time::milliseconds(1), 10);
Eric Newberry1b4ba052016-10-07 23:04:07 -0700365 BOOST_CHECK_EQUAL(face->getState(), face::FaceState::DOWN);
Davide Pesavento97210d52016-10-14 15:45:48 +0200366
367 // check notification
368 {
369 Block payload;
370 ndn::nfd::FaceEventNotification notification;
371 BOOST_REQUIRE_EQUAL(m_responses.size(), 2);
Eric Newberry1b4ba052016-10-07 23:04:07 -0700372 BOOST_CHECK_NO_THROW(payload = m_responses.back().getContent().blockFromValue());
Davide Pesavento97210d52016-10-14 15:45:48 +0200373 BOOST_CHECK_EQUAL(payload.type(), ndn::tlv::nfd::FaceEventNotification);
374 BOOST_CHECK_NO_THROW(notification.wireDecode(payload));
Eric Newberry1b4ba052016-10-07 23:04:07 -0700375 BOOST_CHECK_EQUAL(notification.getKind(), ndn::nfd::FACE_EVENT_DOWN);
Davide Pesavento97210d52016-10-14 15:45:48 +0200376 BOOST_CHECK_EQUAL(notification.getFaceId(), faceId);
Eric Newberry1b4ba052016-10-07 23:04:07 -0700377 BOOST_CHECK_EQUAL(notification.getRemoteUri(), face->getRemoteUri().toString());
378 BOOST_CHECK_EQUAL(notification.getLocalUri(), face->getLocalUri().toString());
Davide Pesavento97210d52016-10-14 15:45:48 +0200379 BOOST_CHECK_EQUAL(notification.getFaceScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL);
380 BOOST_CHECK_EQUAL(notification.getFacePersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
381 BOOST_CHECK_EQUAL(notification.getLinkType(), ndn::nfd::LinkType::LINK_TYPE_POINT_TO_POINT);
Eric Newberry1b4ba052016-10-07 23:04:07 -0700382 BOOST_CHECK_EQUAL(notification.getFlags(), 0x0);
Davide Pesavento97210d52016-10-14 15:45:48 +0200383 }
Eric Newberry1b4ba052016-10-07 23:04:07 -0700384
385 // trigger FACE_EVENT_UP notification
386 dynamic_cast<face::tests::DummyTransport*>(face->getTransport())->setState(face::FaceState::UP);
387 advanceClocks(time::milliseconds(1), 10);
388 BOOST_CHECK_EQUAL(face->getState(), face::FaceState::UP);
389
390 // check notification
391 {
392 Block payload;
393 ndn::nfd::FaceEventNotification notification;
394 BOOST_REQUIRE_EQUAL(m_responses.size(), 3);
395 BOOST_CHECK_NO_THROW(payload = m_responses.back().getContent().blockFromValue());
396 BOOST_CHECK_EQUAL(payload.type(), ndn::tlv::nfd::FaceEventNotification);
397 BOOST_CHECK_NO_THROW(notification.wireDecode(payload));
398 BOOST_CHECK_EQUAL(notification.getKind(), ndn::nfd::FACE_EVENT_UP);
399 BOOST_CHECK_EQUAL(notification.getFaceId(), faceId);
400 BOOST_CHECK_EQUAL(notification.getRemoteUri(), face->getRemoteUri().toString());
401 BOOST_CHECK_EQUAL(notification.getLocalUri(), face->getLocalUri().toString());
402 BOOST_CHECK_EQUAL(notification.getFaceScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL);
403 BOOST_CHECK_EQUAL(notification.getFacePersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
404 BOOST_CHECK_EQUAL(notification.getLinkType(), ndn::nfd::LinkType::LINK_TYPE_POINT_TO_POINT);
405 BOOST_CHECK_EQUAL(notification.getFlags(), 0x0);
406 }
407}
408
409BOOST_AUTO_TEST_CASE(FaceEventDestroyed)
410{
411 auto face = addFace();
412 BOOST_CHECK_NE(face->getId(), face::INVALID_FACEID);
413 FaceId faceId = face->getId();
414
415 BOOST_CHECK_EQUAL(m_manager.m_faceStateChangeConn.count(faceId), 1);
416
417 face->close(); // trigger FaceDestroy FACE_EVENT_DESTROYED
418 advanceClocks(time::milliseconds(1), 10);
419
420 // check notification
421 Block payload;
422 ndn::nfd::FaceEventNotification notification;
423 BOOST_REQUIRE_EQUAL(m_responses.size(), 2);
424 BOOST_CHECK_NO_THROW(payload = m_responses.back().getContent().blockFromValue());
425 BOOST_CHECK_EQUAL(payload.type(), ndn::tlv::nfd::FaceEventNotification);
426 BOOST_CHECK_NO_THROW(notification.wireDecode(payload));
427 BOOST_CHECK_EQUAL(notification.getKind(), ndn::nfd::FACE_EVENT_DESTROYED);
428 BOOST_CHECK_EQUAL(notification.getFaceId(), faceId);
429 BOOST_CHECK_EQUAL(notification.getRemoteUri(), face->getRemoteUri().toString());
430 BOOST_CHECK_EQUAL(notification.getLocalUri(), face->getLocalUri().toString());
431 BOOST_CHECK_EQUAL(notification.getFaceScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL);
432 BOOST_CHECK_EQUAL(notification.getFacePersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
433 BOOST_CHECK_EQUAL(notification.getLinkType(), ndn::nfd::LinkType::LINK_TYPE_POINT_TO_POINT);
434 BOOST_CHECK_EQUAL(notification.getFlags(), 0x0);
435
436 BOOST_CHECK_EQUAL(face->getId(), face::INVALID_FACEID);
437 BOOST_CHECK_EQUAL(m_manager.m_faceStateChangeConn.count(faceId), 0);
Davide Pesavento97210d52016-10-14 15:45:48 +0200438}
439
440BOOST_AUTO_TEST_SUITE_END() // Notifications
441
Yanbiao Li73860e32015-08-19 16:30:16 -0700442BOOST_AUTO_TEST_SUITE_END() // TestFaceManager
443BOOST_AUTO_TEST_SUITE_END() // Mgmt
444
445} // namespace tests
446} // namespace nfd