Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 38b24c7 | 2017-01-05 02:59:31 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 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. |
| 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 Pesavento | 5f47aa6 | 2016-10-07 22:09:09 +0200 | [diff] [blame] | 27 | #include "core/random.hpp" |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 28 | #include "face/tcp-factory.hpp" |
| 29 | #include "face/udp-factory.hpp" |
| 30 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 31 | #include "nfd-manager-common-fixture.hpp" |
| 32 | #include "../face/dummy-face.hpp" |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 33 | #include "../face/dummy-transport.hpp" |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 34 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 35 | #include <ndn-cxx/encoding/tlv.hpp> |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame] | 36 | #include <ndn-cxx/mgmt/nfd/channel-status.hpp> |
| 37 | #include <ndn-cxx/mgmt/nfd/face-event-notification.hpp> |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 38 | |
| 39 | namespace nfd { |
| 40 | namespace tests { |
| 41 | |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 42 | class FaceManagerFixture : public NfdManagerCommonFixture |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 43 | { |
| 44 | public: |
| 45 | FaceManagerFixture() |
| 46 | : m_faceTable(m_forwarder.getFaceTable()) |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 47 | , m_manager(m_faceTable, m_dispatcher, *m_authenticator) |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 48 | { |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 49 | setTopPrefix(); |
Yanbiao Li | df846e5 | 2016-01-30 21:53:47 -0800 | [diff] [blame] | 50 | setPrivilege("faces"); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | public: |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 54 | enum AddFaceFlags { |
| 55 | REMOVE_LAST_NOTIFICATION = 1 << 0, |
| 56 | SET_SCOPE_LOCAL = 1 << 1, |
| 57 | SET_URI_TEST = 1 << 2, |
| 58 | RANDOMIZE_COUNTERS = 1 << 3 |
| 59 | }; |
| 60 | |
| 61 | /** \brief adds a face to the FaceTable |
| 62 | * \param options bitwise OR'ed AddFaceFlags |
| 63 | */ |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 64 | shared_ptr<Face> |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 65 | addFace(int flags = 0) |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 66 | { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 67 | std::string uri = "dummy://"; |
| 68 | ndn::nfd::FaceScope scope = ndn::nfd::FACE_SCOPE_NON_LOCAL; |
| 69 | |
| 70 | if ((flags & SET_SCOPE_LOCAL) != 0) { |
| 71 | scope = ndn::nfd::FACE_SCOPE_LOCAL; |
| 72 | } |
| 73 | if ((flags & SET_URI_TEST) != 0) { |
| 74 | uri = "test://"; |
| 75 | } |
| 76 | |
| 77 | auto face = make_shared<DummyFace>(uri, uri, scope); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 78 | m_faceTable.add(face); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 79 | |
| 80 | if ((flags & RANDOMIZE_COUNTERS) != 0) { |
| 81 | const face::FaceCounters& counters = face->getCounters(); |
| 82 | randomizeCounter(counters.nInInterests); |
| 83 | randomizeCounter(counters.nOutInterests); |
| 84 | randomizeCounter(counters.nInData); |
| 85 | randomizeCounter(counters.nOutData); |
| 86 | randomizeCounter(counters.nInNacks); |
| 87 | randomizeCounter(counters.nOutNacks); |
| 88 | randomizeCounter(counters.nInPackets); |
| 89 | randomizeCounter(counters.nOutPackets); |
| 90 | randomizeCounter(counters.nInBytes); |
| 91 | randomizeCounter(counters.nOutBytes); |
| 92 | } |
| 93 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 94 | advanceClocks(time::milliseconds(1), 10); // wait for notification posted |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 95 | if ((flags & REMOVE_LAST_NOTIFICATION) != 0) { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 96 | m_responses.pop_back(); |
| 97 | } |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 98 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 99 | return face; |
| 100 | } |
| 101 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 102 | private: |
| 103 | template<typename T> |
| 104 | static typename std::enable_if<std::is_base_of<SimpleCounter, T>::value>::type |
| 105 | randomizeCounter(const T& counter) |
| 106 | { |
Davide Pesavento | 5f47aa6 | 2016-10-07 22:09:09 +0200 | [diff] [blame] | 107 | static std::uniform_int_distribution<typename T::rep> dist; |
| 108 | const_cast<T&>(counter).set(dist(getGlobalRng())); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 111 | protected: |
| 112 | FaceTable& m_faceTable; |
| 113 | FaceManager m_manager; |
| 114 | }; |
| 115 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 116 | BOOST_AUTO_TEST_SUITE(Mgmt) |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 117 | BOOST_FIXTURE_TEST_SUITE(TestFaceManager, FaceManagerFixture) |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 118 | |
| 119 | BOOST_AUTO_TEST_SUITE(DestroyFace) |
| 120 | |
| 121 | BOOST_AUTO_TEST_CASE(Existing) |
| 122 | { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 123 | auto addedFace = addFace(REMOVE_LAST_NOTIFICATION | SET_SCOPE_LOCAL); // clear notification for creation |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 124 | |
| 125 | auto parameters = ControlParameters().setFaceId(addedFace->getId()); |
| 126 | auto command = makeControlCommandRequest("/localhost/nfd/faces/destroy", parameters); |
| 127 | |
| 128 | receiveInterest(command); |
| 129 | |
| 130 | BOOST_REQUIRE_EQUAL(m_responses.size(), 2); // one response and one notification |
| 131 | // notification is already tested, so ignore it |
| 132 | |
| 133 | BOOST_CHECK_EQUAL(checkResponse(1, command->getName(), makeResponse(200, "OK", parameters)), |
| 134 | CheckResponseResult::OK); |
| 135 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 136 | BOOST_CHECK_EQUAL(addedFace->getId(), face::INVALID_FACEID); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | BOOST_AUTO_TEST_CASE(NonExisting) |
| 140 | { |
| 141 | auto parameters = ControlParameters().setFaceId(65535); |
| 142 | auto command = makeControlCommandRequest("/localhost/nfd/faces/destroy", parameters); |
| 143 | |
| 144 | receiveInterest(command); |
| 145 | |
| 146 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 147 | |
| 148 | BOOST_CHECK_EQUAL(checkResponse(0, command->getName(), makeResponse(200, "OK", parameters)), |
| 149 | CheckResponseResult::OK); |
| 150 | } |
| 151 | |
| 152 | BOOST_AUTO_TEST_SUITE_END() // DestroyFace |
| 153 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 154 | BOOST_AUTO_TEST_SUITE(Datasets) |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 155 | |
| 156 | BOOST_AUTO_TEST_CASE(FaceDataset) |
| 157 | { |
| 158 | size_t nEntries = 303; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 159 | for (size_t i = 0; i < nEntries; ++i) { |
| 160 | addFace(REMOVE_LAST_NOTIFICATION | SET_URI_TEST | RANDOMIZE_COUNTERS); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | receiveInterest(makeInterest("/localhost/nfd/faces/list")); |
| 164 | |
| 165 | Block content; |
| 166 | BOOST_CHECK_NO_THROW(content = concatenateResponses()); |
| 167 | BOOST_CHECK_NO_THROW(content.parse()); |
| 168 | BOOST_REQUIRE_EQUAL(content.elements().size(), nEntries); |
| 169 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 170 | std::set<FaceId> faceIds; |
| 171 | for (size_t idx = 0; idx < nEntries; ++idx) { |
| 172 | BOOST_TEST_MESSAGE("processing element: " << idx); |
| 173 | |
| 174 | ndn::nfd::FaceStatus decodedStatus; |
| 175 | BOOST_REQUIRE_NO_THROW(decodedStatus.wireDecode(content.elements()[idx])); |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 176 | BOOST_CHECK(m_faceTable.get(decodedStatus.getFaceId()) != nullptr); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 177 | faceIds.insert(decodedStatus.getFaceId()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | BOOST_CHECK_EQUAL(faceIds.size(), nEntries); |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 181 | // TODO#3325 check dataset contents including counter values |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | BOOST_AUTO_TEST_CASE(FaceQuery) |
| 185 | { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 186 | auto face1 = addFace(REMOVE_LAST_NOTIFICATION); // dummy:// |
| 187 | auto face2 = addFace(REMOVE_LAST_NOTIFICATION | SET_SCOPE_LOCAL); // dummy://, local |
| 188 | auto face3 = addFace(REMOVE_LAST_NOTIFICATION | SET_URI_TEST); // test:// |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 189 | |
| 190 | auto generateQueryName = [] (const ndn::nfd::FaceQueryFilter& filter) { |
| 191 | return Name("/localhost/nfd/faces/query").append(filter.wireEncode()); |
| 192 | }; |
| 193 | |
| 194 | auto querySchemeName = |
| 195 | generateQueryName(ndn::nfd::FaceQueryFilter().setUriScheme("dummy")); |
| 196 | auto queryIdName = |
| 197 | generateQueryName(ndn::nfd::FaceQueryFilter().setFaceId(face1->getId())); |
| 198 | auto queryScopeName = |
| 199 | generateQueryName(ndn::nfd::FaceQueryFilter().setFaceScope(ndn::nfd::FACE_SCOPE_NON_LOCAL)); |
| 200 | auto invalidQueryName = |
| 201 | Name("/localhost/nfd/faces/query").append(ndn::makeStringBlock(tlv::Content, "invalid")); |
| 202 | |
| 203 | receiveInterest(makeInterest(querySchemeName)); // face1 and face2 expected |
| 204 | receiveInterest(makeInterest(queryIdName)); // face1 expected |
| 205 | receiveInterest(makeInterest(queryScopeName)); // face1 and face3 expected |
| 206 | receiveInterest(makeInterest(invalidQueryName)); // nack expected |
| 207 | |
| 208 | BOOST_REQUIRE_EQUAL(m_responses.size(), 4); |
| 209 | |
| 210 | Block content; |
| 211 | ndn::nfd::FaceStatus status; |
| 212 | |
| 213 | content = m_responses[0].getContent(); |
| 214 | BOOST_CHECK_NO_THROW(content.parse()); |
| 215 | BOOST_CHECK_EQUAL(content.elements().size(), 2); // face1 and face2 |
| 216 | BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[0])); |
| 217 | BOOST_CHECK_EQUAL(face1->getId(), status.getFaceId()); |
| 218 | BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[1])); |
| 219 | BOOST_CHECK_EQUAL(face2->getId(), status.getFaceId()); |
| 220 | |
| 221 | content = m_responses[1].getContent(); |
| 222 | BOOST_CHECK_NO_THROW(content.parse()); |
| 223 | BOOST_CHECK_EQUAL(content.elements().size(), 1); // face1 |
| 224 | BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[0])); |
| 225 | BOOST_CHECK_EQUAL(face1->getId(), status.getFaceId()); |
| 226 | |
| 227 | content = m_responses[2].getContent(); |
| 228 | BOOST_CHECK_NO_THROW(content.parse()); |
| 229 | BOOST_CHECK_EQUAL(content.elements().size(), 2); // face1 and face3 |
| 230 | BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[0])); |
| 231 | BOOST_CHECK_EQUAL(face1->getId(), status.getFaceId()); |
| 232 | BOOST_CHECK_NO_THROW(status.wireDecode(content.elements()[1])); |
| 233 | BOOST_CHECK_EQUAL(face3->getId(), status.getFaceId()); |
| 234 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 235 | ControlResponse expectedResponse(400, "Malformed filter"); // nack, 400, malformed filter |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 236 | BOOST_CHECK_EQUAL(checkResponse(3, invalidQueryName, expectedResponse, tlv::ContentType_Nack), |
| 237 | CheckResponseResult::OK); |
| 238 | } |
| 239 | |
| 240 | class TestChannel : public Channel |
| 241 | { |
| 242 | public: |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 243 | explicit |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 244 | TestChannel(const std::string& uri) |
| 245 | { |
| 246 | setUri(FaceUri(uri)); |
| 247 | } |
| 248 | }; |
| 249 | |
| 250 | class TestProtocolFactory : public ProtocolFactory |
| 251 | { |
| 252 | public: |
Junxiao Shi | c344304 | 2017-01-26 17:21:35 +0000 | [diff] [blame^] | 253 | void |
| 254 | processConfig(OptionalConfigSection configSection, |
| 255 | FaceSystem::ConfigContext& context) final |
| 256 | { |
| 257 | } |
| 258 | |
| 259 | void |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 260 | createFace(const FaceUri& uri, |
| 261 | ndn::nfd::FacePersistency persistency, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 262 | bool wantLocalFieldsEnabled, |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 263 | const FaceCreatedCallback& onCreated, |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 264 | const FaceCreationFailedCallback& onConnectFailed) final |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 265 | { |
| 266 | } |
| 267 | |
Junxiao Shi | c344304 | 2017-01-26 17:21:35 +0000 | [diff] [blame^] | 268 | std::vector<shared_ptr<const Channel>> |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 269 | getChannels() const final |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 270 | { |
| 271 | return m_channels; |
| 272 | } |
| 273 | |
| 274 | public: |
| 275 | shared_ptr<TestChannel> |
| 276 | addChannel(const std::string& channelUri) |
| 277 | { |
| 278 | auto channel = make_shared<TestChannel>(channelUri); |
| 279 | m_channels.push_back(channel); |
| 280 | return channel; |
| 281 | } |
| 282 | |
| 283 | private: |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 284 | std::vector<shared_ptr<const Channel>> m_channels; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 285 | }; |
| 286 | |
| 287 | BOOST_AUTO_TEST_CASE(ChannelDataset) |
| 288 | { |
Junxiao Shi | b47247d | 2017-01-24 15:09:16 +0000 | [diff] [blame] | 289 | m_manager.m_faceSystem.m_factories["test"] = make_unique<TestProtocolFactory>(); |
| 290 | auto factory = static_cast<TestProtocolFactory*>(m_manager.m_faceSystem.getFactoryById("test")); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 291 | |
| 292 | std::map<std::string, shared_ptr<TestChannel>> addedChannels; |
| 293 | size_t nEntries = 404; |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 294 | for (size_t i = 0; i < nEntries; i++) { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 295 | auto channel = factory->addChannel("test" + boost::lexical_cast<std::string>(i) + "://"); |
| 296 | addedChannels[channel->getUri().toString()] = channel; |
| 297 | } |
| 298 | |
| 299 | receiveInterest(makeInterest("/localhost/nfd/faces/channels")); |
| 300 | |
| 301 | Block content; |
| 302 | BOOST_CHECK_NO_THROW(content = concatenateResponses()); |
| 303 | BOOST_CHECK_NO_THROW(content.parse()); |
| 304 | BOOST_REQUIRE_EQUAL(content.elements().size(), nEntries); |
| 305 | |
| 306 | for (size_t idx = 0; idx < nEntries; ++idx) { |
| 307 | BOOST_TEST_MESSAGE("processing element: " << idx); |
| 308 | |
| 309 | ndn::nfd::ChannelStatus decodedStatus; |
| 310 | BOOST_CHECK_NO_THROW(decodedStatus.wireDecode(content.elements()[idx])); |
| 311 | BOOST_CHECK(addedChannels.find(decodedStatus.getLocalUri()) != addedChannels.end()); |
| 312 | } |
| 313 | } |
| 314 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 315 | BOOST_AUTO_TEST_SUITE_END() // Datasets |
| 316 | |
| 317 | BOOST_AUTO_TEST_SUITE(Notifications) |
| 318 | |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 319 | BOOST_AUTO_TEST_CASE(FaceEventCreated) |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 320 | { |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 321 | auto face = addFace(); // trigger FACE_EVENT_CREATED notification |
| 322 | BOOST_CHECK_NE(face->getId(), face::INVALID_FACEID); |
| 323 | FaceId faceId = face->getId(); |
| 324 | |
| 325 | BOOST_CHECK_EQUAL(m_manager.m_faceStateChangeConn.count(faceId), 1); |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 326 | |
| 327 | // check notification |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 328 | Block payload; |
| 329 | ndn::nfd::FaceEventNotification notification; |
| 330 | BOOST_REQUIRE_EQUAL(m_responses.size(), 1); |
| 331 | BOOST_CHECK_NO_THROW(payload = m_responses.back().getContent().blockFromValue()); |
| 332 | BOOST_CHECK_EQUAL(payload.type(), ndn::tlv::nfd::FaceEventNotification); |
| 333 | BOOST_CHECK_NO_THROW(notification.wireDecode(payload)); |
| 334 | BOOST_CHECK_EQUAL(notification.getKind(), ndn::nfd::FACE_EVENT_CREATED); |
| 335 | BOOST_CHECK_EQUAL(notification.getFaceId(), faceId); |
| 336 | BOOST_CHECK_EQUAL(notification.getRemoteUri(), face->getRemoteUri().toString()); |
| 337 | BOOST_CHECK_EQUAL(notification.getLocalUri(), face->getLocalUri().toString()); |
| 338 | BOOST_CHECK_EQUAL(notification.getFaceScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL); |
| 339 | BOOST_CHECK_EQUAL(notification.getFacePersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT); |
| 340 | BOOST_CHECK_EQUAL(notification.getLinkType(), ndn::nfd::LinkType::LINK_TYPE_POINT_TO_POINT); |
| 341 | BOOST_CHECK_EQUAL(notification.getFlags(), 0x0); |
| 342 | } |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 343 | |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 344 | BOOST_AUTO_TEST_CASE(FaceEventDownUp) |
| 345 | { |
| 346 | auto face = addFace(); |
| 347 | BOOST_CHECK_NE(face->getId(), face::INVALID_FACEID); |
| 348 | FaceId faceId = face->getId(); |
| 349 | |
| 350 | // trigger FACE_EVENT_DOWN notification |
| 351 | dynamic_cast<face::tests::DummyTransport*>(face->getTransport())->setState(face::FaceState::DOWN); |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 352 | advanceClocks(time::milliseconds(1), 10); |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 353 | BOOST_CHECK_EQUAL(face->getState(), face::FaceState::DOWN); |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 354 | |
| 355 | // check notification |
| 356 | { |
| 357 | Block payload; |
| 358 | ndn::nfd::FaceEventNotification notification; |
| 359 | BOOST_REQUIRE_EQUAL(m_responses.size(), 2); |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 360 | BOOST_CHECK_NO_THROW(payload = m_responses.back().getContent().blockFromValue()); |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 361 | BOOST_CHECK_EQUAL(payload.type(), ndn::tlv::nfd::FaceEventNotification); |
| 362 | BOOST_CHECK_NO_THROW(notification.wireDecode(payload)); |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 363 | BOOST_CHECK_EQUAL(notification.getKind(), ndn::nfd::FACE_EVENT_DOWN); |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 364 | BOOST_CHECK_EQUAL(notification.getFaceId(), faceId); |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 365 | BOOST_CHECK_EQUAL(notification.getRemoteUri(), face->getRemoteUri().toString()); |
| 366 | BOOST_CHECK_EQUAL(notification.getLocalUri(), face->getLocalUri().toString()); |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 367 | BOOST_CHECK_EQUAL(notification.getFaceScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL); |
| 368 | BOOST_CHECK_EQUAL(notification.getFacePersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT); |
| 369 | BOOST_CHECK_EQUAL(notification.getLinkType(), ndn::nfd::LinkType::LINK_TYPE_POINT_TO_POINT); |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 370 | BOOST_CHECK_EQUAL(notification.getFlags(), 0x0); |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 371 | } |
Eric Newberry | 1b4ba05 | 2016-10-07 23:04:07 -0700 | [diff] [blame] | 372 | |
| 373 | // trigger FACE_EVENT_UP notification |
| 374 | dynamic_cast<face::tests::DummyTransport*>(face->getTransport())->setState(face::FaceState::UP); |
| 375 | advanceClocks(time::milliseconds(1), 10); |
| 376 | BOOST_CHECK_EQUAL(face->getState(), face::FaceState::UP); |
| 377 | |
| 378 | // check notification |
| 379 | { |
| 380 | Block payload; |
| 381 | ndn::nfd::FaceEventNotification notification; |
| 382 | BOOST_REQUIRE_EQUAL(m_responses.size(), 3); |
| 383 | BOOST_CHECK_NO_THROW(payload = m_responses.back().getContent().blockFromValue()); |
| 384 | BOOST_CHECK_EQUAL(payload.type(), ndn::tlv::nfd::FaceEventNotification); |
| 385 | BOOST_CHECK_NO_THROW(notification.wireDecode(payload)); |
| 386 | BOOST_CHECK_EQUAL(notification.getKind(), ndn::nfd::FACE_EVENT_UP); |
| 387 | BOOST_CHECK_EQUAL(notification.getFaceId(), faceId); |
| 388 | BOOST_CHECK_EQUAL(notification.getRemoteUri(), face->getRemoteUri().toString()); |
| 389 | BOOST_CHECK_EQUAL(notification.getLocalUri(), face->getLocalUri().toString()); |
| 390 | BOOST_CHECK_EQUAL(notification.getFaceScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL); |
| 391 | BOOST_CHECK_EQUAL(notification.getFacePersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT); |
| 392 | BOOST_CHECK_EQUAL(notification.getLinkType(), ndn::nfd::LinkType::LINK_TYPE_POINT_TO_POINT); |
| 393 | BOOST_CHECK_EQUAL(notification.getFlags(), 0x0); |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | BOOST_AUTO_TEST_CASE(FaceEventDestroyed) |
| 398 | { |
| 399 | auto face = addFace(); |
| 400 | BOOST_CHECK_NE(face->getId(), face::INVALID_FACEID); |
| 401 | FaceId faceId = face->getId(); |
| 402 | |
| 403 | BOOST_CHECK_EQUAL(m_manager.m_faceStateChangeConn.count(faceId), 1); |
| 404 | |
| 405 | face->close(); // trigger FaceDestroy FACE_EVENT_DESTROYED |
| 406 | advanceClocks(time::milliseconds(1), 10); |
| 407 | |
| 408 | // check notification |
| 409 | Block payload; |
| 410 | ndn::nfd::FaceEventNotification notification; |
| 411 | BOOST_REQUIRE_EQUAL(m_responses.size(), 2); |
| 412 | BOOST_CHECK_NO_THROW(payload = m_responses.back().getContent().blockFromValue()); |
| 413 | BOOST_CHECK_EQUAL(payload.type(), ndn::tlv::nfd::FaceEventNotification); |
| 414 | BOOST_CHECK_NO_THROW(notification.wireDecode(payload)); |
| 415 | BOOST_CHECK_EQUAL(notification.getKind(), ndn::nfd::FACE_EVENT_DESTROYED); |
| 416 | BOOST_CHECK_EQUAL(notification.getFaceId(), faceId); |
| 417 | BOOST_CHECK_EQUAL(notification.getRemoteUri(), face->getRemoteUri().toString()); |
| 418 | BOOST_CHECK_EQUAL(notification.getLocalUri(), face->getLocalUri().toString()); |
| 419 | BOOST_CHECK_EQUAL(notification.getFaceScope(), ndn::nfd::FACE_SCOPE_NON_LOCAL); |
| 420 | BOOST_CHECK_EQUAL(notification.getFacePersistency(), ndn::nfd::FACE_PERSISTENCY_PERSISTENT); |
| 421 | BOOST_CHECK_EQUAL(notification.getLinkType(), ndn::nfd::LinkType::LINK_TYPE_POINT_TO_POINT); |
| 422 | BOOST_CHECK_EQUAL(notification.getFlags(), 0x0); |
| 423 | |
| 424 | BOOST_CHECK_EQUAL(face->getId(), face::INVALID_FACEID); |
| 425 | BOOST_CHECK_EQUAL(m_manager.m_faceStateChangeConn.count(faceId), 0); |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | BOOST_AUTO_TEST_SUITE_END() // Notifications |
| 429 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 430 | BOOST_AUTO_TEST_SUITE_END() // TestFaceManager |
| 431 | BOOST_AUTO_TEST_SUITE_END() // Mgmt |
| 432 | |
| 433 | } // namespace tests |
| 434 | } // namespace nfd |