Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 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 | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 110 | class UdpFaceConnectToSelf // face that will cause afterCreateFaceFailure to be invoked |
| 111 | // fails because remote endpoint is prohibited |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 112 | { |
| 113 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 114 | static ControlParameters |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 115 | getParameters() |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 116 | { |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 117 | return ControlParameters() |
| 118 | .setUri("udp4://0.0.0.0:16363"); // cannot connect to self |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 119 | } |
| 120 | }; |
| 121 | |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 122 | class LocalTcpFaceLocalFieldsEnabled |
| 123 | { |
| 124 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 125 | static ControlParameters |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 126 | getParameters() |
| 127 | { |
| 128 | return ControlParameters() |
| 129 | .setUri("tcp4://127.0.0.1:26363") |
| 130 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERSISTENT) |
| 131 | .setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, true); |
| 132 | } |
| 133 | }; |
| 134 | |
| 135 | class LocalTcpFaceLocalFieldsDisabled |
| 136 | { |
| 137 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 138 | static ControlParameters |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 139 | getParameters() |
| 140 | { |
| 141 | return ControlParameters() |
| 142 | .setUri("tcp4://127.0.0.1:26363") |
| 143 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERSISTENT) |
| 144 | .setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, false); |
| 145 | } |
| 146 | }; |
| 147 | |
| 148 | class NonLocalUdpFaceLocalFieldsEnabled // won't work because non-local scope |
| 149 | { |
| 150 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 151 | static ControlParameters |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 152 | getParameters() |
| 153 | { |
| 154 | return ControlParameters() |
| 155 | .setUri("udp4://127.0.0.1:26363") |
| 156 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERSISTENT) |
| 157 | .setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, true); |
| 158 | } |
| 159 | }; |
| 160 | |
| 161 | class NonLocalUdpFaceLocalFieldsDisabled |
| 162 | { |
| 163 | public: |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 164 | static ControlParameters |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 165 | getParameters() |
| 166 | { |
| 167 | return ControlParameters() |
| 168 | .setUri("udp4://127.0.0.1:26363") |
| 169 | .setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERSISTENT) |
| 170 | .setFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED, false); |
| 171 | } |
| 172 | }; |
| 173 | |
Junxiao Shi | 38c7d9e | 2017-04-13 14:22:50 +0000 | [diff] [blame] | 174 | class FaceUriMalformed |
| 175 | { |
| 176 | public: |
| 177 | static ControlParameters |
| 178 | getParameters() |
| 179 | { |
| 180 | return ControlParameters() |
| 181 | .setUri("tcp4://127.0.0.1:not-a-port"); |
| 182 | } |
| 183 | }; |
| 184 | |
| 185 | class FaceUriNonCanonical |
| 186 | { |
| 187 | public: |
| 188 | static ControlParameters |
| 189 | getParameters() |
| 190 | { |
| 191 | return ControlParameters() |
| 192 | .setUri("udp://localhost"); |
| 193 | } |
| 194 | }; |
| 195 | |
| 196 | class FaceUriUnsupportedScheme |
| 197 | { |
| 198 | public: |
| 199 | static ControlParameters |
| 200 | getParameters() |
| 201 | { |
| 202 | return ControlParameters() |
| 203 | .setUri("dev://eth0"); |
| 204 | } |
| 205 | }; |
| 206 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 207 | namespace mpl = boost::mpl; |
| 208 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 209 | // pairs of CreateCommand and Success/Failure status |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 210 | using TestCases = mpl::vector< |
| 211 | mpl::pair<TcpFaceOnDemand, CommandFailure<406>>, |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 212 | mpl::pair<TcpFacePersistent, CommandSuccess>, |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 213 | mpl::pair<TcpFacePermanent, CommandSuccess>, |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 214 | mpl::pair<UdpFaceOnDemand, CommandFailure<406>>, |
| 215 | mpl::pair<UdpFacePersistent, CommandSuccess>, |
| 216 | mpl::pair<UdpFacePermanent, CommandSuccess>, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 217 | mpl::pair<UdpFaceConnectToSelf, CommandFailure<406>>, |
| 218 | mpl::pair<LocalTcpFaceLocalFieldsEnabled, CommandSuccess>, |
| 219 | mpl::pair<LocalTcpFaceLocalFieldsDisabled, CommandSuccess>, |
| 220 | mpl::pair<NonLocalUdpFaceLocalFieldsEnabled, CommandFailure<406>>, |
Junxiao Shi | 38c7d9e | 2017-04-13 14:22:50 +0000 | [diff] [blame] | 221 | mpl::pair<NonLocalUdpFaceLocalFieldsDisabled, CommandSuccess>, |
| 222 | mpl::pair<FaceUriMalformed, CommandFailure<400>>, |
| 223 | mpl::pair<FaceUriNonCanonical, CommandFailure<400>>, |
| 224 | mpl::pair<FaceUriUnsupportedScheme, CommandFailure<406>>>; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 225 | |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 226 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(NewFace, T, TestCases, FaceManagerCommandFixture) |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 227 | { |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 228 | using FaceType = typename T::first; |
| 229 | using CreateResult = typename T::second; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 230 | |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame^] | 231 | Interest req = makeControlCommandRequest("/localhost/nfd/faces/create", FaceType::getParameters()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 232 | |
| 233 | bool hasCallbackFired = false; |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame^] | 234 | this->node1.face.onSendData.connect([this, req, &hasCallbackFired] (const Data& response) { |
| 235 | if (!req.getName().isPrefixOf(response.getName())) { |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 236 | return; |
| 237 | } |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 238 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 239 | ControlResponse actual(response.getContent().blockFromValue()); |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 240 | ControlResponse expected(CreateResult::getExpected()); |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 241 | BOOST_TEST_MESSAGE(actual.getText()); |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 242 | BOOST_CHECK_EQUAL(expected.getCode(), actual.getCode()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 243 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 244 | if (actual.getBody().hasWire()) { |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 245 | ControlParameters expectedParams(FaceType::getParameters()); |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 246 | ControlParameters actualParams(actual.getBody()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 247 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 248 | BOOST_CHECK(actualParams.hasFaceId()); |
| 249 | BOOST_CHECK_EQUAL(expectedParams.getFacePersistency(), actualParams.getFacePersistency()); |
| 250 | |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 251 | if (actual.getCode() == 200) { |
| 252 | if (expectedParams.hasFlags()) { |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 253 | BOOST_CHECK_EQUAL(expectedParams.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED), |
| 254 | actualParams.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED)); |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 255 | } |
| 256 | else { |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 257 | // local fields are disabled by default |
| 258 | BOOST_CHECK_EQUAL(actualParams.getFlagBit(ndn::nfd::BIT_LOCAL_FIELDS_ENABLED), false); |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 259 | } |
| 260 | } |
| 261 | else { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 262 | BOOST_CHECK_EQUAL(expectedParams.getUri(), actualParams.getUri()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 263 | } |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 264 | } |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 265 | |
| 266 | if (actual.getCode() != 200) { |
Junxiao Shi | 38c7d9e | 2017-04-13 14:22:50 +0000 | [diff] [blame] | 267 | FaceUri uri; |
| 268 | if (uri.parse(FaceType::getParameters().getUri())) { |
| 269 | // ensure face not created |
| 270 | auto& faceTable = this->node1.manager.m_faceTable; |
| 271 | BOOST_CHECK(std::none_of(faceTable.begin(), faceTable.end(), [uri] (Face& face) { |
| 272 | return face.getRemoteUri() == uri; |
| 273 | })); |
| 274 | } |
| 275 | else { |
| 276 | // do not check malformed FaceUri |
| 277 | } |
Eric Newberry | b5aa7f5 | 2016-09-03 20:36:12 -0700 | [diff] [blame] | 278 | } |
| 279 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 280 | hasCallbackFired = true; |
| 281 | }); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 282 | |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame^] | 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 | BOOST_CHECK(hasCallbackFired); |
| 287 | } |
| 288 | |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 289 | BOOST_FIXTURE_TEST_CASE(ExistingFace, FaceManagerCommandFixture) |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 290 | { |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 291 | using FaceType = UdpFacePersistent; |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 292 | |
| 293 | { |
| 294 | // create face |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame^] | 295 | Interest req = makeControlCommandRequest("/localhost/nfd/faces/create", FaceType::getParameters()); |
| 296 | this->node1.face.receive(req); |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 297 | this->advanceClocks(time::milliseconds(1), 5); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 298 | } |
| 299 | |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 300 | // find the created face |
Davide Pesavento | a3c9ddb | 2017-04-10 22:15:24 -0400 | [diff] [blame] | 301 | auto foundFace = this->node1.findFaceByUri(FaceType::getParameters().getUri()); |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 302 | BOOST_REQUIRE(foundFace != nullptr); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 303 | |
| 304 | { |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 305 | // re-create face |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame^] | 306 | Interest req = makeControlCommandRequest("/localhost/nfd/faces/create", FaceType::getParameters()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 307 | |
| 308 | bool hasCallbackFired = false; |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 309 | this->node1.face.onSendData.connect( |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame^] | 310 | [this, req, &hasCallbackFired, foundFace] (const Data& response) { |
| 311 | if (!req.getName().isPrefixOf(response.getName())) { |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 312 | return; |
| 313 | } |
| 314 | |
| 315 | ControlResponse actual(response.getContent().blockFromValue()); |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 316 | BOOST_REQUIRE_EQUAL(actual.getCode(), 409); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 317 | |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 318 | ControlParameters actualParams(actual.getBody()); |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 319 | BOOST_CHECK_EQUAL(foundFace->getId(), actualParams.getFaceId()); |
| 320 | BOOST_CHECK_EQUAL(foundFace->getRemoteUri().toString(), actualParams.getUri()); |
| 321 | BOOST_CHECK_EQUAL(foundFace->getPersistency(), actualParams.getFacePersistency()); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 322 | |
| 323 | hasCallbackFired = true; |
| 324 | }); |
| 325 | |
Junxiao Shi | 8a1f170 | 2017-07-03 00:05:08 +0000 | [diff] [blame^] | 326 | this->node1.face.receive(req); |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 327 | this->advanceClocks(time::milliseconds(1), 5); |
Yanbiao Li | 73860e3 | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 328 | |
| 329 | BOOST_CHECK(hasCallbackFired); |
| 330 | } |
| 331 | } |
| 332 | |
| 333 | BOOST_AUTO_TEST_SUITE_END() // CreateFace |
| 334 | BOOST_AUTO_TEST_SUITE_END() // TestFaceManager |
| 335 | BOOST_AUTO_TEST_SUITE_END() // Mgmt |
| 336 | |
Weiwei Liu | f5aee94 | 2016-03-19 07:00:42 +0000 | [diff] [blame] | 337 | } // namespace tests |
| 338 | } // namespace nfd |