blob: 9e4228bfe83b71f72c8c17ee04e520a465327336 [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());
128 auto command = makeControlCommandRequest("/localhost/nfd/faces/destroy", parameters);
129
130 receiveInterest(command);
131
132 BOOST_REQUIRE_EQUAL(m_responses.size(), 2); // one response and one notification
133 // notification is already tested, so ignore it
134
135 BOOST_CHECK_EQUAL(checkResponse(1, command->getName(), makeResponse(200, "OK", parameters)),
136 CheckResponseResult::OK);
137
Junxiao Shicde37ad2015-12-24 01:02:05 -0700138 BOOST_CHECK_EQUAL(addedFace->getId(), face::INVALID_FACEID);
Yanbiao Li73860e32015-08-19 16:30:16 -0700139}
140
141BOOST_AUTO_TEST_CASE(NonExisting)
142{
143 auto parameters = ControlParameters().setFaceId(65535);
144 auto command = makeControlCommandRequest("/localhost/nfd/faces/destroy", parameters);
145
146 receiveInterest(command);
147
148 BOOST_REQUIRE_EQUAL(m_responses.size(), 1);
149
150 BOOST_CHECK_EQUAL(checkResponse(0, command->getName(), makeResponse(200, "OK", parameters)),
151 CheckResponseResult::OK);
152}
153
154BOOST_AUTO_TEST_SUITE_END() // DestroyFace
155
Davide Pesavento97210d52016-10-14 15:45:48 +0200156BOOST_AUTO_TEST_SUITE(Datasets)
Yanbiao Li73860e32015-08-19 16:30:16 -0700157
158BOOST_AUTO_TEST_CASE(FaceDataset)
159{
160 size_t nEntries = 303;
Junxiao Shicde37ad2015-12-24 01:02:05 -0700161 for (size_t i = 0; i < nEntries; ++i) {
162 addFace(REMOVE_LAST_NOTIFICATION | SET_URI_TEST | RANDOMIZE_COUNTERS);
Yanbiao Li73860e32015-08-19 16:30:16 -0700163 }
164
165 receiveInterest(makeInterest("/localhost/nfd/faces/list"));
166
167 Block content;
168 BOOST_CHECK_NO_THROW(content = concatenateResponses());
169 BOOST_CHECK_NO_THROW(content.parse());
170 BOOST_REQUIRE_EQUAL(content.elements().size(), nEntries);
171
Yanbiao Li73860e32015-08-19 16:30:16 -0700172 std::set<FaceId> faceIds;
173 for (size_t idx = 0; idx < nEntries; ++idx) {
174 BOOST_TEST_MESSAGE("processing element: " << idx);
175
176 ndn::nfd::FaceStatus decodedStatus;
177 BOOST_REQUIRE_NO_THROW(decodedStatus.wireDecode(content.elements()[idx]));
Junxiao Shida93f1f2015-11-11 06:13:16 -0700178 BOOST_CHECK(m_faceTable.get(decodedStatus.getFaceId()) != nullptr);
Yanbiao Li73860e32015-08-19 16:30:16 -0700179 faceIds.insert(decodedStatus.getFaceId());
Yanbiao Li73860e32015-08-19 16:30:16 -0700180 }
181
182 BOOST_CHECK_EQUAL(faceIds.size(), nEntries);
Junxiao Shida93f1f2015-11-11 06:13:16 -0700183 // TODO#3325 check dataset contents including counter values
Yanbiao Li73860e32015-08-19 16:30:16 -0700184}
185
186BOOST_AUTO_TEST_CASE(FaceQuery)
187{
Junxiao Shicde37ad2015-12-24 01:02:05 -0700188 auto face1 = addFace(REMOVE_LAST_NOTIFICATION); // dummy://
189 auto face2 = addFace(REMOVE_LAST_NOTIFICATION | SET_SCOPE_LOCAL); // dummy://, local
190 auto face3 = addFace(REMOVE_LAST_NOTIFICATION | SET_URI_TEST); // test://
Yanbiao Li73860e32015-08-19 16:30:16 -0700191
192 auto generateQueryName = [] (const ndn::nfd::FaceQueryFilter& filter) {
193 return Name("/localhost/nfd/faces/query").append(filter.wireEncode());
194 };
195
196 auto querySchemeName =
197 generateQueryName(ndn::nfd::FaceQueryFilter().setUriScheme("dummy"));
198 auto queryIdName =
199 generateQueryName(ndn::nfd::FaceQueryFilter().setFaceId(face1->getId()));
200 auto queryScopeName =
201 generateQueryName(ndn::nfd::FaceQueryFilter().setFaceScope(ndn::nfd::FACE_SCOPE_NON_LOCAL));
202 auto invalidQueryName =
203 Name("/localhost/nfd/faces/query").append(ndn::makeStringBlock(tlv::Content, "invalid"));
204
205 receiveInterest(makeInterest(querySchemeName)); // face1 and face2 expected
206 receiveInterest(makeInterest(queryIdName)); // face1 expected
207 receiveInterest(makeInterest(queryScopeName)); // face1 and face3 expected
208 receiveInterest(makeInterest(invalidQueryName)); // nack expected
209
210 BOOST_REQUIRE_EQUAL(m_responses.size(), 4);
211
212 Block content;
213 ndn::nfd::FaceStatus status;
214
215 content = m_responses[0].getContent();
216 BOOST_CHECK_NO_THROW(content.parse());
217 BOOST_CHECK_EQUAL(content.elements().size(), 2); // face1 and face2
218 BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[0]));
219 BOOST_CHECK_EQUAL(face1->getId(), status.getFaceId());
220 BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[1]));
221 BOOST_CHECK_EQUAL(face2->getId(), status.getFaceId());
222
223 content = m_responses[1].getContent();
224 BOOST_CHECK_NO_THROW(content.parse());
225 BOOST_CHECK_EQUAL(content.elements().size(), 1); // face1
226 BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[0]));
227 BOOST_CHECK_EQUAL(face1->getId(), status.getFaceId());
228
229 content = m_responses[2].getContent();
230 BOOST_CHECK_NO_THROW(content.parse());
231 BOOST_CHECK_EQUAL(content.elements().size(), 2); // face1 and face3
232 BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[0]));
233 BOOST_CHECK_EQUAL(face1->getId(), status.getFaceId());
234 BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[1]));
235 BOOST_CHECK_EQUAL(face3->getId(), status.getFaceId());
236
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200237 ControlResponse expectedResponse(400, "Malformed filter"); // nack, 400, malformed filter
Yanbiao Li73860e32015-08-19 16:30:16 -0700238 BOOST_CHECK_EQUAL(checkResponse(3, invalidQueryName, expectedResponse, tlv::ContentType_Nack),
239 CheckResponseResult::OK);
240}
241
242class TestChannel : public Channel
243{
244public:
Davide Pesavento97210d52016-10-14 15:45:48 +0200245 explicit
Yanbiao Li73860e32015-08-19 16:30:16 -0700246 TestChannel(const std::string& uri)
247 {
248 setUri(FaceUri(uri));
249 }
250};
251
252class TestProtocolFactory : public ProtocolFactory
253{
254public:
Junxiao Shic3443042017-01-26 17:21:35 +0000255 void
256 processConfig(OptionalConfigSection configSection,
257 FaceSystem::ConfigContext& context) final
258 {
259 }
260
261 void
Yanbiao Li73860e32015-08-19 16:30:16 -0700262 createFace(const FaceUri& uri,
263 ndn::nfd::FacePersistency persistency,
Eric Newberryf40551a2016-09-05 15:41:16 -0700264 bool wantLocalFieldsEnabled,
Yanbiao Li73860e32015-08-19 16:30:16 -0700265 const FaceCreatedCallback& onCreated,
Davide Pesavento97210d52016-10-14 15:45:48 +0200266 const FaceCreationFailedCallback& onConnectFailed) final
Yanbiao Li73860e32015-08-19 16:30:16 -0700267 {
268 }
269
Junxiao Shic3443042017-01-26 17:21:35 +0000270 std::vector<shared_ptr<const Channel>>
Davide Pesavento97210d52016-10-14 15:45:48 +0200271 getChannels() const final
Yanbiao Li73860e32015-08-19 16:30:16 -0700272 {
273 return m_channels;
274 }
275
276public:
277 shared_ptr<TestChannel>
278 addChannel(const std::string& channelUri)
279 {
280 auto channel = make_shared<TestChannel>(channelUri);
281 m_channels.push_back(channel);
282 return channel;
283 }
284
285private:
Davide Pesavento1d7e7af2015-10-10 23:54:08 +0200286 std::vector<shared_ptr<const Channel>> m_channels;
Yanbiao Li73860e32015-08-19 16:30:16 -0700287};
288
289BOOST_AUTO_TEST_CASE(ChannelDataset)
290{
Junxiao Shib47247d2017-01-24 15:09:16 +0000291 m_manager.m_faceSystem.m_factories["test"] = make_unique<TestProtocolFactory>();
292 auto factory = static_cast<TestProtocolFactory*>(m_manager.m_faceSystem.getFactoryById("test"));
Yanbiao Li73860e32015-08-19 16:30:16 -0700293
294 std::map<std::string, shared_ptr<TestChannel>> addedChannels;
295 size_t nEntries = 404;
Eric Newberry1b4ba052016-10-07 23:04:07 -0700296 for (size_t i = 0; i < nEntries; i++) {
Yanbiao Li73860e32015-08-19 16:30:16 -0700297 auto channel = factory->addChannel("test" + boost::lexical_cast<std::string>(i) + "://");
298 addedChannels[channel->getUri().toString()] = channel;
299 }
300
301 receiveInterest(makeInterest("/localhost/nfd/faces/channels"));
302
303 Block content;
304 BOOST_CHECK_NO_THROW(content = concatenateResponses());
305 BOOST_CHECK_NO_THROW(content.parse());
306 BOOST_REQUIRE_EQUAL(content.elements().size(), nEntries);
307
308 for (size_t idx = 0; idx < nEntries; ++idx) {
309 BOOST_TEST_MESSAGE("processing element: " << idx);
310
311 ndn::nfd::ChannelStatus decodedStatus;
312 BOOST_CHECK_NO_THROW(decodedStatus.wireDecode(content.elements()[idx]));
313 BOOST_CHECK(addedChannels.find(decodedStatus.getLocalUri()) != addedChannels.end());
314 }
315}
316
Davide Pesavento97210d52016-10-14 15:45:48 +0200317BOOST_AUTO_TEST_SUITE_END() // Datasets
318
319BOOST_AUTO_TEST_SUITE(Notifications)
320
Eric Newberry1b4ba052016-10-07 23:04:07 -0700321BOOST_AUTO_TEST_CASE(FaceEventCreated)
Davide Pesavento97210d52016-10-14 15:45:48 +0200322{
Eric Newberry1b4ba052016-10-07 23:04:07 -0700323 auto face = addFace(); // trigger FACE_EVENT_CREATED notification
324 BOOST_CHECK_NE(face->getId(), face::INVALID_FACEID);
325 FaceId faceId = face->getId();
326
327 BOOST_CHECK_EQUAL(m_manager.m_faceStateChangeConn.count(faceId), 1);
Davide Pesavento97210d52016-10-14 15:45:48 +0200328
329 // check notification
Eric Newberry1b4ba052016-10-07 23:04:07 -0700330 Block payload;
331 ndn::nfd::FaceEventNotification notification;
332 BOOST_REQUIRE_EQUAL(m_responses.size(), 1);
333 BOOST_CHECK_NO_THROW(payload = m_responses.back().getContent().blockFromValue());
334 BOOST_CHECK_EQUAL(payload.type(), ndn::tlv::nfd::FaceEventNotification);
335 BOOST_CHECK_NO_THROW(notification.wireDecode(payload));
336 BOOST_CHECK_EQUAL(notification.getKind(), ndn::nfd::FACE_EVENT_CREATED);
337 BOOST_CHECK_EQUAL(notification.getFaceId(), faceId);
338 BOOST_CHECK_EQUAL(notification.getRemoteUri(), face->getRemoteUri().toString());
339 BOOST_CHECK_EQUAL(notification.getLocalUri(), face->getLocalUri().toString());
340 BOOST_CHECK_EQUAL(notification.getFaceScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL);
341 BOOST_CHECK_EQUAL(notification.getFacePersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
342 BOOST_CHECK_EQUAL(notification.getLinkType(), ndn::nfd::LinkType::LINK_TYPE_POINT_TO_POINT);
343 BOOST_CHECK_EQUAL(notification.getFlags(), 0x0);
344}
Davide Pesavento97210d52016-10-14 15:45:48 +0200345
Eric Newberry1b4ba052016-10-07 23:04:07 -0700346BOOST_AUTO_TEST_CASE(FaceEventDownUp)
347{
348 auto face = addFace();
349 BOOST_CHECK_NE(face->getId(), face::INVALID_FACEID);
350 FaceId faceId = face->getId();
351
352 // trigger FACE_EVENT_DOWN notification
353 dynamic_cast<face::tests::DummyTransport*>(face->getTransport())->setState(face::FaceState::DOWN);
Davide Pesavento97210d52016-10-14 15:45:48 +0200354 advanceClocks(time::milliseconds(1), 10);
Eric Newberry1b4ba052016-10-07 23:04:07 -0700355 BOOST_CHECK_EQUAL(face->getState(), face::FaceState::DOWN);
Davide Pesavento97210d52016-10-14 15:45:48 +0200356
357 // check notification
358 {
359 Block payload;
360 ndn::nfd::FaceEventNotification notification;
361 BOOST_REQUIRE_EQUAL(m_responses.size(), 2);
Eric Newberry1b4ba052016-10-07 23:04:07 -0700362 BOOST_CHECK_NO_THROW(payload = m_responses.back().getContent().blockFromValue());
Davide Pesavento97210d52016-10-14 15:45:48 +0200363 BOOST_CHECK_EQUAL(payload.type(), ndn::tlv::nfd::FaceEventNotification);
364 BOOST_CHECK_NO_THROW(notification.wireDecode(payload));
Eric Newberry1b4ba052016-10-07 23:04:07 -0700365 BOOST_CHECK_EQUAL(notification.getKind(), ndn::nfd::FACE_EVENT_DOWN);
Davide Pesavento97210d52016-10-14 15:45:48 +0200366 BOOST_CHECK_EQUAL(notification.getFaceId(), faceId);
Eric Newberry1b4ba052016-10-07 23:04:07 -0700367 BOOST_CHECK_EQUAL(notification.getRemoteUri(), face->getRemoteUri().toString());
368 BOOST_CHECK_EQUAL(notification.getLocalUri(), face->getLocalUri().toString());
Davide Pesavento97210d52016-10-14 15:45:48 +0200369 BOOST_CHECK_EQUAL(notification.getFaceScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL);
370 BOOST_CHECK_EQUAL(notification.getFacePersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
371 BOOST_CHECK_EQUAL(notification.getLinkType(), ndn::nfd::LinkType::LINK_TYPE_POINT_TO_POINT);
Eric Newberry1b4ba052016-10-07 23:04:07 -0700372 BOOST_CHECK_EQUAL(notification.getFlags(), 0x0);
Davide Pesavento97210d52016-10-14 15:45:48 +0200373 }
Eric Newberry1b4ba052016-10-07 23:04:07 -0700374
375 // trigger FACE_EVENT_UP notification
376 dynamic_cast<face::tests::DummyTransport*>(face->getTransport())->setState(face::FaceState::UP);
377 advanceClocks(time::milliseconds(1), 10);
378 BOOST_CHECK_EQUAL(face->getState(), face::FaceState::UP);
379
380 // check notification
381 {
382 Block payload;
383 ndn::nfd::FaceEventNotification notification;
384 BOOST_REQUIRE_EQUAL(m_responses.size(), 3);
385 BOOST_CHECK_NO_THROW(payload = m_responses.back().getContent().blockFromValue());
386 BOOST_CHECK_EQUAL(payload.type(), ndn::tlv::nfd::FaceEventNotification);
387 BOOST_CHECK_NO_THROW(notification.wireDecode(payload));
388 BOOST_CHECK_EQUAL(notification.getKind(), ndn::nfd::FACE_EVENT_UP);
389 BOOST_CHECK_EQUAL(notification.getFaceId(), faceId);
390 BOOST_CHECK_EQUAL(notification.getRemoteUri(), face->getRemoteUri().toString());
391 BOOST_CHECK_EQUAL(notification.getLocalUri(), face->getLocalUri().toString());
392 BOOST_CHECK_EQUAL(notification.getFaceScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL);
393 BOOST_CHECK_EQUAL(notification.getFacePersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
394 BOOST_CHECK_EQUAL(notification.getLinkType(), ndn::nfd::LinkType::LINK_TYPE_POINT_TO_POINT);
395 BOOST_CHECK_EQUAL(notification.getFlags(), 0x0);
396 }
397}
398
399BOOST_AUTO_TEST_CASE(FaceEventDestroyed)
400{
401 auto face = addFace();
402 BOOST_CHECK_NE(face->getId(), face::INVALID_FACEID);
403 FaceId faceId = face->getId();
404
405 BOOST_CHECK_EQUAL(m_manager.m_faceStateChangeConn.count(faceId), 1);
406
407 face->close(); // trigger FaceDestroy FACE_EVENT_DESTROYED
408 advanceClocks(time::milliseconds(1), 10);
409
410 // check notification
411 Block payload;
412 ndn::nfd::FaceEventNotification notification;
413 BOOST_REQUIRE_EQUAL(m_responses.size(), 2);
414 BOOST_CHECK_NO_THROW(payload = m_responses.back().getContent().blockFromValue());
415 BOOST_CHECK_EQUAL(payload.type(), ndn::tlv::nfd::FaceEventNotification);
416 BOOST_CHECK_NO_THROW(notification.wireDecode(payload));
417 BOOST_CHECK_EQUAL(notification.getKind(), ndn::nfd::FACE_EVENT_DESTROYED);
418 BOOST_CHECK_EQUAL(notification.getFaceId(), faceId);
419 BOOST_CHECK_EQUAL(notification.getRemoteUri(), face->getRemoteUri().toString());
420 BOOST_CHECK_EQUAL(notification.getLocalUri(), face->getLocalUri().toString());
421 BOOST_CHECK_EQUAL(notification.getFaceScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL);
422 BOOST_CHECK_EQUAL(notification.getFacePersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT);
423 BOOST_CHECK_EQUAL(notification.getLinkType(), ndn::nfd::LinkType::LINK_TYPE_POINT_TO_POINT);
424 BOOST_CHECK_EQUAL(notification.getFlags(), 0x0);
425
426 BOOST_CHECK_EQUAL(face->getId(), face::INVALID_FACEID);
427 BOOST_CHECK_EQUAL(m_manager.m_faceStateChangeConn.count(faceId), 0);
Davide Pesavento97210d52016-10-14 15:45:48 +0200428}
429
430BOOST_AUTO_TEST_SUITE_END() // Notifications
431
Yanbiao Li73860e32015-08-19 16:30:16 -0700432BOOST_AUTO_TEST_SUITE_END() // TestFaceManager
433BOOST_AUTO_TEST_SUITE_END() // Mgmt
434
435} // namespace tests
436} // namespace nfd