Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 2 | /** |
Spyridon Mastorakis | 429634f | 2015-02-19 17:35:33 -0800 | [diff] [blame] | 3 | * Copyright (c) 2013-2015 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #include "management/nfd-controller.hpp" |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 23 | #include "management/nfd-control-response.hpp" |
| 24 | |
Alexander Afanasyev | 258ec2b | 2014-05-14 16:15:37 -0700 | [diff] [blame] | 25 | #include <boost/tuple/tuple.hpp> |
| 26 | |
Alexander Afanasyev | b1db7c6 | 2014-04-03 14:57:25 -0700 | [diff] [blame] | 27 | #include "boost-test.hpp" |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 28 | #include "util/dummy-client-face.hpp" |
Alexander Afanasyev | d3a55b2 | 2014-11-18 19:23:28 -0800 | [diff] [blame] | 29 | #include "../unit-test-time-fixture.hpp" |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 30 | |
| 31 | namespace ndn { |
| 32 | namespace nfd { |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 33 | namespace tests { |
| 34 | |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 35 | using ndn::util::DummyClientFace; |
| 36 | using ndn::util::makeDummyClientFace; |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 37 | |
Spyridon Mastorakis | 429634f | 2015-02-19 17:35:33 -0800 | [diff] [blame] | 38 | BOOST_AUTO_TEST_SUITE(ManagementNfdController) |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 39 | |
Alexander Afanasyev | d3a55b2 | 2014-11-18 19:23:28 -0800 | [diff] [blame] | 40 | class CommandFixture : public ndn::tests::UnitTestTimeFixture |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 41 | { |
| 42 | protected: |
| 43 | CommandFixture() |
Alexander Afanasyev | d3a55b2 | 2014-11-18 19:23:28 -0800 | [diff] [blame] | 44 | : face(makeDummyClientFace(io)) |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 45 | , controller(*face, keyChain) |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 46 | , commandSucceedCallback(bind(&CommandFixture::onCommandSucceed, this, _1)) |
| 47 | , commandFailCallback(bind(&CommandFixture::onCommandFail, this, _1, _2)) |
| 48 | { |
| 49 | } |
| 50 | |
| 51 | private: |
| 52 | void |
| 53 | onCommandSucceed(const ControlParameters& parameters) |
| 54 | { |
| 55 | commandSucceedHistory.push_back(boost::make_tuple(parameters)); |
| 56 | } |
| 57 | |
| 58 | void |
| 59 | onCommandFail(uint32_t code, const std::string& reason) |
| 60 | { |
| 61 | commandFailHistory.push_back(boost::make_tuple(code, reason)); |
| 62 | } |
| 63 | |
| 64 | protected: |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 65 | shared_ptr<DummyClientFace> face; |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 66 | KeyChain keyChain; |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 67 | Controller controller; |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 68 | |
| 69 | Controller::CommandSucceedCallback commandSucceedCallback; |
| 70 | typedef boost::tuple<ControlParameters> CommandSucceedArgs; |
| 71 | std::vector<CommandSucceedArgs> commandSucceedHistory; |
| 72 | |
| 73 | Controller::CommandFailCallback commandFailCallback; |
| 74 | typedef boost::tuple<uint32_t,std::string> CommandFailArgs; |
| 75 | std::vector<CommandFailArgs> commandFailHistory; |
| 76 | }; |
| 77 | |
| 78 | BOOST_FIXTURE_TEST_CASE(CommandSuccess, CommandFixture) |
| 79 | { |
| 80 | ControlParameters parameters; |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 81 | parameters.setUri("tcp4://192.0.2.1:6363"); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 82 | |
| 83 | BOOST_CHECK_NO_THROW(controller.start<FaceCreateCommand>( |
Junxiao Shi | 7091165 | 2014-08-12 10:14:24 -0700 | [diff] [blame] | 84 | parameters, |
| 85 | commandSucceedCallback, |
| 86 | commandFailCallback)); |
Alexander Afanasyev | d3a55b2 | 2014-11-18 19:23:28 -0800 | [diff] [blame] | 87 | |
| 88 | advanceClocks(time::milliseconds(1)); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 89 | |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 90 | BOOST_REQUIRE_EQUAL(face->sentInterests.size(), 1); |
| 91 | const Interest& requestInterest = face->sentInterests[0]; |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 92 | |
| 93 | FaceCreateCommand command; |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 94 | BOOST_CHECK(Name("/localhost/nfd/faces/create").isPrefixOf(requestInterest.getName())); |
| 95 | // 9 components: ndn:/localhost/nfd/faces/create/<parameters>/<signed Interest x4> |
Junxiao Shi | 6a90f37 | 2014-10-13 20:29:30 -0700 | [diff] [blame] | 96 | BOOST_REQUIRE_EQUAL(requestInterest.getName().size(), 9); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 97 | ControlParameters request; |
| 98 | // 4th component: <parameters> |
Junxiao Shi | 6a90f37 | 2014-10-13 20:29:30 -0700 | [diff] [blame] | 99 | BOOST_REQUIRE_NO_THROW(request.wireDecode(requestInterest.getName().at(4).blockFromValue())); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 100 | BOOST_CHECK_NO_THROW(command.validateRequest(request)); |
| 101 | BOOST_CHECK_EQUAL(request.getUri(), parameters.getUri()); |
Junxiao Shi | 415b17c | 2014-11-12 00:43:25 -0700 | [diff] [blame] | 102 | BOOST_CHECK_EQUAL(requestInterest.getInterestLifetime(), CommandOptions::DEFAULT_TIMEOUT); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 103 | |
| 104 | ControlParameters responseBody; |
| 105 | responseBody.setUri("tcp4://192.0.2.1:6363") |
| 106 | .setFaceId(22); |
| 107 | ControlResponse responsePayload(201, "created"); |
| 108 | responsePayload.setBody(responseBody.wireEncode()); |
| 109 | |
Junxiao Shi | 6a90f37 | 2014-10-13 20:29:30 -0700 | [diff] [blame] | 110 | Data responseData(requestInterest.getName()); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 111 | responseData.setContent(responsePayload.wireEncode()); |
| 112 | keyChain.sign(responseData); |
| 113 | face->receive(responseData); |
Alexander Afanasyev | d3a55b2 | 2014-11-18 19:23:28 -0800 | [diff] [blame] | 114 | |
| 115 | advanceClocks(time::milliseconds(1)); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 116 | |
| 117 | BOOST_CHECK_EQUAL(commandFailHistory.size(), 0); |
| 118 | BOOST_REQUIRE_EQUAL(commandSucceedHistory.size(), 1); |
| 119 | const ControlParameters& response = commandSucceedHistory[0].get<0>(); |
| 120 | BOOST_CHECK_EQUAL(response.getUri(), responseBody.getUri()); |
| 121 | BOOST_CHECK_EQUAL(response.getFaceId(), responseBody.getFaceId()); |
| 122 | } |
| 123 | |
| 124 | BOOST_FIXTURE_TEST_CASE(CommandInvalidRequest, CommandFixture) |
| 125 | { |
| 126 | ControlParameters parameters; |
| 127 | parameters.setName("ndn:/should-not-have-this-field"); |
| 128 | // Uri is missing |
| 129 | |
| 130 | BOOST_CHECK_THROW(controller.start<FaceCreateCommand>( |
| 131 | parameters, |
| 132 | commandSucceedCallback, |
| 133 | commandFailCallback), |
| 134 | ControlCommand::ArgumentError); |
| 135 | } |
| 136 | |
| 137 | BOOST_FIXTURE_TEST_CASE(CommandErrorCode, CommandFixture) |
| 138 | { |
| 139 | ControlParameters parameters; |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 140 | parameters.setUri("tcp4://192.0.2.1:6363"); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 141 | |
| 142 | BOOST_CHECK_NO_THROW(controller.start<FaceCreateCommand>( |
| 143 | parameters, |
| 144 | commandSucceedCallback, |
| 145 | commandFailCallback)); |
Alexander Afanasyev | d3a55b2 | 2014-11-18 19:23:28 -0800 | [diff] [blame] | 146 | advanceClocks(time::milliseconds(1)); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 147 | |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 148 | BOOST_REQUIRE_EQUAL(face->sentInterests.size(), 1); |
| 149 | const Interest& requestInterest = face->sentInterests[0]; |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 150 | |
| 151 | ControlResponse responsePayload(401, "Not Authenticated"); |
| 152 | |
Junxiao Shi | 6a90f37 | 2014-10-13 20:29:30 -0700 | [diff] [blame] | 153 | Data responseData(requestInterest.getName()); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 154 | responseData.setContent(responsePayload.wireEncode()); |
| 155 | keyChain.sign(responseData); |
| 156 | face->receive(responseData); |
Alexander Afanasyev | d3a55b2 | 2014-11-18 19:23:28 -0800 | [diff] [blame] | 157 | advanceClocks(time::milliseconds(1)); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 158 | |
| 159 | BOOST_CHECK_EQUAL(commandSucceedHistory.size(), 0); |
| 160 | BOOST_REQUIRE_EQUAL(commandFailHistory.size(), 1); |
| 161 | BOOST_CHECK_EQUAL(commandFailHistory[0].get<0>(), 401); |
| 162 | } |
| 163 | |
| 164 | BOOST_FIXTURE_TEST_CASE(CommandInvalidResponse, CommandFixture) |
| 165 | { |
| 166 | ControlParameters parameters; |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 167 | parameters.setUri("tcp4://192.0.2.1:6363"); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 168 | |
| 169 | BOOST_CHECK_NO_THROW(controller.start<FaceCreateCommand>( |
| 170 | parameters, |
| 171 | commandSucceedCallback, |
| 172 | commandFailCallback)); |
Alexander Afanasyev | d3a55b2 | 2014-11-18 19:23:28 -0800 | [diff] [blame] | 173 | advanceClocks(time::milliseconds(1)); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 174 | |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 175 | BOOST_REQUIRE_EQUAL(face->sentInterests.size(), 1); |
| 176 | const Interest& requestInterest = face->sentInterests[0]; |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 177 | |
| 178 | ControlParameters responseBody; |
| 179 | responseBody.setUri("tcp4://192.0.2.1:6363") |
| 180 | .setName("ndn:/should-not-have-this-field"); |
| 181 | // FaceId is missing |
| 182 | ControlResponse responsePayload(201, "created"); |
| 183 | responsePayload.setBody(responseBody.wireEncode()); |
| 184 | |
Junxiao Shi | 6a90f37 | 2014-10-13 20:29:30 -0700 | [diff] [blame] | 185 | Data responseData(requestInterest.getName()); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 186 | responseData.setContent(responsePayload.wireEncode()); |
| 187 | keyChain.sign(responseData); |
| 188 | face->receive(responseData); |
Alexander Afanasyev | d3a55b2 | 2014-11-18 19:23:28 -0800 | [diff] [blame] | 189 | advanceClocks(time::milliseconds(1)); |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 190 | |
| 191 | BOOST_CHECK_EQUAL(commandSucceedHistory.size(), 0); |
| 192 | BOOST_REQUIRE_EQUAL(commandFailHistory.size(), 1); |
| 193 | } |
| 194 | |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 195 | BOOST_FIXTURE_TEST_CASE(OptionsPrefix, CommandFixture) |
| 196 | { |
| 197 | ControlParameters parameters; |
| 198 | parameters.setName("/ndn/com/example"); |
| 199 | parameters.setFaceId(400); |
| 200 | |
| 201 | CommandOptions options; |
| 202 | options.setPrefix("/localhop/net/example/router1/nfd"); |
| 203 | |
| 204 | BOOST_CHECK_NO_THROW(controller.start<RibRegisterCommand>( |
| 205 | parameters, |
| 206 | commandSucceedCallback, |
| 207 | commandFailCallback, |
| 208 | options)); |
Alexander Afanasyev | d3a55b2 | 2014-11-18 19:23:28 -0800 | [diff] [blame] | 209 | advanceClocks(time::milliseconds(1)); |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 210 | |
Junxiao Shi | a60d936 | 2014-11-12 09:38:21 -0700 | [diff] [blame] | 211 | BOOST_REQUIRE_EQUAL(face->sentInterests.size(), 1); |
| 212 | const Interest& requestInterest = face->sentInterests[0]; |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 213 | |
| 214 | FaceCreateCommand command; |
| 215 | BOOST_CHECK(Name("/localhop/net/example/router1/nfd/rib/register").isPrefixOf( |
| 216 | requestInterest.getName())); |
| 217 | } |
| 218 | |
| 219 | BOOST_FIXTURE_TEST_CASE(OptionsTimeout, CommandFixture) |
| 220 | { |
| 221 | ControlParameters parameters; |
| 222 | parameters.setUri("tcp4://192.0.2.1:6363"); |
| 223 | |
| 224 | CommandOptions options; |
| 225 | options.setTimeout(time::milliseconds(50)); |
| 226 | |
| 227 | BOOST_CHECK_NO_THROW(controller.start<FaceCreateCommand>( |
| 228 | parameters, |
| 229 | commandSucceedCallback, |
| 230 | commandFailCallback, |
| 231 | options)); |
Alexander Afanasyev | d3a55b2 | 2014-11-18 19:23:28 -0800 | [diff] [blame] | 232 | advanceClocks(time::milliseconds(1), 101); // Face's PIT granularity is 100ms |
Junxiao Shi | 5de006b | 2014-10-26 20:20:52 -0700 | [diff] [blame] | 233 | |
| 234 | BOOST_REQUIRE_EQUAL(commandFailHistory.size(), 1); |
| 235 | BOOST_CHECK_EQUAL(commandFailHistory[0].get<0>(), Controller::ERROR_TIMEOUT); |
| 236 | } |
| 237 | |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 238 | BOOST_AUTO_TEST_SUITE_END() |
| 239 | |
Alexander Afanasyev | 4abdbf1 | 2014-08-11 12:48:54 -0700 | [diff] [blame] | 240 | } // namespace tests |
Junxiao Shi | 7b6b79d | 2014-03-26 20:59:35 -0700 | [diff] [blame] | 241 | } // namespace nfd |
| 242 | } // namespace ndn |