Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 6028619 | 2017-07-26 01:07:48 +0000 | [diff] [blame] | 2 | /* |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +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 | |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 26 | #include "mgmt/face-manager.hpp" |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 27 | #include "face-manager-command-fixture.hpp" |
| 28 | #include "nfd-manager-common-fixture.hpp" |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 29 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 30 | namespace nfd { |
| 31 | namespace tests { |
| 32 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 33 | BOOST_AUTO_TEST_SUITE(Mgmt) |
| 34 | BOOST_AUTO_TEST_SUITE(TestFaceManager) |
| 35 | |
| 36 | BOOST_FIXTURE_TEST_SUITE(CreateFace, BaseFixture) |
| 37 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 38 | class TcpFaceOnDemand |
| 39 | { |
| 40 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 41 | static ControlParameters |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 42 | getParameters() |
| 43 | { |
| 44 | return ControlParameters() |
| 45 | .setUri("tcp4://127.0.0.1:26363") |
| 46 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_ON_DEMAND); |
| 47 | } |
| 48 | }; |
| 49 | |
| 50 | class TcpFacePersistent |
| 51 | { |
| 52 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 53 | static ControlParameters |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 54 | getParameters() |
| 55 | { |
| 56 | return ControlParameters() |
| 57 | .setUri("tcp4://127.0.0.1:26363") |
| 58 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERSISTENT); |
| 59 | } |
| 60 | }; |
| 61 | |
| 62 | class TcpFacePermanent |
| 63 | { |
| 64 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 65 | static ControlParameters |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 66 | getParameters() |
| 67 | { |
| 68 | return ControlParameters() |
| 69 | .setUri("tcp4://127.0.0.1:26363") |
| 70 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERMANENT); |
| 71 | } |
| 72 | }; |
| 73 | |
| 74 | class UdpFaceOnDemand |
| 75 | { |
| 76 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 77 | static ControlParameters |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 78 | getParameters() |
| 79 | { |
| 80 | return ControlParameters() |
| 81 | .setUri("udp4://127.0.0.1:26363") |
| 82 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_ON_DEMAND); |
| 83 | } |
| 84 | }; |
| 85 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 86 | class UdpFacePersistent |
| 87 | { |
| 88 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 89 | static ControlParameters |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 90 | getParameters() |
| 91 | { |
| 92 | return ControlParameters() |
| 93 | .setUri("udp4://127.0.0.1:26363") |
| 94 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERSISTENT); |
| 95 | } |
| 96 | }; |
| 97 | |
| 98 | class UdpFacePermanent |
| 99 | { |
| 100 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 101 | static ControlParameters |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 102 | getParameters() |
| 103 | { |
| 104 | return ControlParameters() |
| 105 | .setUri("udp4://127.0.0.1:26363") |
| 106 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERMANENT); |
| 107 | } |
| 108 | }; |
| 109 | |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 110 | class LocalTcpFaceLocalFieldsEnabled |
| 111 | { |
| 112 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 113 | static ControlParameters |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 114 | getParameters() |
| 115 | { |
| 116 | return ControlParameters() |
| 117 | .setUri("tcp4://127.0.0.1:26363") |
| 118 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERSISTENT) |
| 119 | .setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, true); |
| 120 | } |
| 121 | }; |
| 122 | |
| 123 | class LocalTcpFaceLocalFieldsDisabled |
| 124 | { |
| 125 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 126 | static ControlParameters |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 127 | getParameters() |
| 128 | { |
| 129 | return ControlParameters() |
| 130 | .setUri("tcp4://127.0.0.1:26363") |
| 131 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERSISTENT) |
| 132 | .setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, false); |
| 133 | } |
| 134 | }; |
| 135 | |
| 136 | class NonLocalUdpFaceLocalFieldsEnabled // won't work because non-local scope |
| 137 | { |
| 138 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 139 | static ControlParameters |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 140 | getParameters() |
| 141 | { |
| 142 | return ControlParameters() |
| 143 | .setUri("udp4://127.0.0.1:26363") |
| 144 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERSISTENT) |
| 145 | .setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, true); |
| 146 | } |
| 147 | }; |
| 148 | |
| 149 | class NonLocalUdpFaceLocalFieldsDisabled |
| 150 | { |
| 151 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 152 | static ControlParameters |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 153 | getParameters() |
| 154 | { |
| 155 | return ControlParameters() |
| 156 | .setUri("udp4://127.0.0.1:26363") |
| 157 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERSISTENT) |
| 158 | .setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, false); |
| 159 | } |
| 160 | }; |
| 161 | |
Junxiao Shi | 38c7d9e | 2017-04-13 14:22:50 +0000 | [diff] [blame] | 162 | class FaceUriMalformed |
| 163 | { |
| 164 | public: |
| 165 | static ControlParameters |
| 166 | getParameters() |
| 167 | { |
| 168 | return ControlParameters() |
| 169 | .setUri("tcp4://127.0.0.1:not-a-port"); |
| 170 | } |
| 171 | }; |
| 172 | |
| 173 | class FaceUriNonCanonical |
| 174 | { |
| 175 | public: |
| 176 | static ControlParameters |
| 177 | getParameters() |
| 178 | { |
| 179 | return ControlParameters() |
| 180 | .setUri("udp://localhost"); |
| 181 | } |
| 182 | }; |
| 183 | |
| 184 | class FaceUriUnsupportedScheme |
| 185 | { |
| 186 | public: |
| 187 | static ControlParameters |
| 188 | getParameters() |
| 189 | { |
| 190 | return ControlParameters() |
| 191 | .setUri("dev://eth0"); |
| 192 | } |
| 193 | }; |
| 194 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 195 | namespace mpl = boost::mpl; |
| 196 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 197 | // pairs of CreateCommand and Success/Failure status |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 198 | using TestCases = mpl::vector< |
| 199 | mpl::pair<TcpFaceOnDemand, CommandFailure<406>>, |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 200 | mpl::pair<TcpFacePersistent, CommandSuccess>, |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 201 | mpl::pair<TcpFacePermanent, CommandSuccess>, |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 202 | mpl::pair<UdpFaceOnDemand, CommandFailure<406>>, |
| 203 | mpl::pair<UdpFacePersistent, CommandSuccess>, |
| 204 | mpl::pair<UdpFacePermanent, CommandSuccess>, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 205 | mpl::pair<LocalTcpFaceLocalFieldsEnabled, CommandSuccess>, |
| 206 | mpl::pair<LocalTcpFaceLocalFieldsDisabled, CommandSuccess>, |
| 207 | mpl::pair<NonLocalUdpFaceLocalFieldsEnabled, CommandFailure<406>>, |
Junxiao Shi | 38c7d9e | 2017-04-13 14:22:50 +0000 | [diff] [blame] | 208 | mpl::pair<NonLocalUdpFaceLocalFieldsDisabled, CommandSuccess>, |
| 209 | mpl::pair<FaceUriMalformed, CommandFailure<400>>, |
| 210 | mpl::pair<FaceUriNonCanonical, CommandFailure<400>>, |
| 211 | mpl::pair<FaceUriUnsupportedScheme, CommandFailure<406>>>; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 212 | |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 213 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(NewFace, T, TestCases, FaceManagerCommandFixture) |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 214 | { |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 215 | using FaceType = typename T::first; |
| 216 | using CreateResult = typename T::second; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 217 | |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 218 | Interest req = makeControlCommandRequest("/localhost/nfd/faces/create", FaceType::getParameters()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 219 | |
| 220 | bool hasCallbackFired = false; |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 221 | this->node1.face.onSendData.connect([this, req, &hasCallbackFired] (const Data& response) { |
| 222 | if (!req.getName().isPrefixOf(response.getName())) { |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 223 | return; |
| 224 | } |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 225 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 226 | ControlResponse actual(response.getContent().blockFromValue()); |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 227 | ControlResponse expected(CreateResult::getExpected()); |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 228 | BOOST_TEST_MESSAGE(actual.getText()); |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 229 | BOOST_CHECK_EQUAL(expected.getCode(), actual.getCode()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 230 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 231 | if (actual.getBody().hasWire()) { |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 232 | ControlParameters expectedParams(FaceType::getParameters()); |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 233 | ControlParameters actualParams(actual.getBody()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 234 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 235 | BOOST_CHECK(actualParams.hasFaceId()); |
| 236 | BOOST_CHECK_EQUAL(expectedParams.getFacePersistency(), actualParams.getFacePersistency()); |
| 237 | |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 238 | if (actual.getCode() == 200) { |
| 239 | if (expectedParams.hasFlags()) { |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 240 | BOOST_CHECK_EQUAL(expectedParams.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED), |
| 241 | actualParams.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED)); |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 242 | } |
| 243 | else { |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 244 | // local fields are disabled by default |
| 245 | BOOST_CHECK_EQUAL(actualParams.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED), false); |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 246 | } |
| 247 | } |
| 248 | else { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 249 | BOOST_CHECK_EQUAL(expectedParams.getUri(), actualParams.getUri()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 250 | } |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 251 | } |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 252 | |
| 253 | if (actual.getCode() != 200) { |
Junxiao Shi | 38c7d9e | 2017-04-13 14:22:50 +0000 | [diff] [blame] | 254 | FaceUri uri; |
| 255 | if (uri.parse(FaceType::getParameters().getUri())) { |
| 256 | // ensure face not created |
| 257 | auto& faceTable = this->node1.manager.m_faceTable; |
| 258 | BOOST_CHECK(std::none_of(faceTable.begin(), faceTable.end(), [uri] (Face& face) { |
| 259 | return face.getRemoteUri() == uri; |
| 260 | })); |
| 261 | } |
| 262 | else { |
| 263 | // do not check malformed FaceUri |
| 264 | } |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 267 | hasCallbackFired = true; |
| 268 | }); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 269 | |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 270 | this->node1.face.receive(req); |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 271 | this->advanceClocks(time::milliseconds(1), 5); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 272 | |
| 273 | BOOST_CHECK(hasCallbackFired); |
| 274 | } |
| 275 | |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 276 | BOOST_FIXTURE_TEST_CASE(ExistingFace, FaceManagerCommandFixture) |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 277 | { |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 278 | using FaceType = UdpFacePersistent; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 279 | |
| 280 | { |
| 281 | // create face |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 282 | Interest req = makeControlCommandRequest("/localhost/nfd/faces/create", FaceType::getParameters()); |
| 283 | this->node1.face.receive(req); |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 284 | this->advanceClocks(time::milliseconds(1), 5); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 285 | } |
| 286 | |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 287 | // find the created face |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 288 | auto foundFace = this->node1.findFaceByUri(FaceType::getParameters().getUri()); |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 289 | BOOST_REQUIRE(foundFace != nullptr); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 290 | |
| 291 | { |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 292 | // re-create face |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 293 | Interest req = makeControlCommandRequest("/localhost/nfd/faces/create", FaceType::getParameters()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 294 | |
| 295 | bool hasCallbackFired = false; |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 296 | this->node1.face.onSendData.connect( |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 297 | [this, req, &hasCallbackFired, foundFace] (const Data& response) { |
| 298 | if (!req.getName().isPrefixOf(response.getName())) { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 299 | return; |
| 300 | } |
| 301 | |
| 302 | ControlResponse actual(response.getContent().blockFromValue()); |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 303 | BOOST_REQUIRE_EQUAL(actual.getCode(), 409); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 304 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 305 | ControlParameters actualParams(actual.getBody()); |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 306 | BOOST_CHECK_EQUAL(foundFace->getId(), actualParams.getFaceId()); |
| 307 | BOOST_CHECK_EQUAL(foundFace->getRemoteUri().toString(), actualParams.getUri()); |
| 308 | BOOST_CHECK_EQUAL(foundFace->getPersistency(), actualParams.getFacePersistency()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 309 | |
| 310 | hasCallbackFired = true; |
| 311 | }); |
| 312 | |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame] | 313 | this->node1.face.receive(req); |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 314 | this->advanceClocks(time::milliseconds(1), 5); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 315 | |
| 316 | BOOST_CHECK(hasCallbackFired); |
| 317 | } |
| 318 | } |
| 319 | |
| 320 | BOOST_AUTO_TEST_SUITE_END() // CreateFace |
| 321 | BOOST_AUTO_TEST_SUITE_END() // TestFaceManager |
| 322 | BOOST_AUTO_TEST_SUITE_END() // Mgmt |
| 323 | |
Weiwei Liu | f5aee94 | 2016-03-19 07:00:42 +0000 | [diff] [blame] | 324 | } // namespace tests |
| 325 | } // namespace nfd |