Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | 6dfeffe | 2017-01-30 22:40:32 -0800 | [diff] [blame] | 2 | /* |
Alexander Afanasyev | fc99b51 | 2017-01-04 11:10:36 -0800 | [diff] [blame] | 3 | * Copyright (c) 2013-2017 Regents of the University of California. |
Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 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. |
| 20 | */ |
| 21 | |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 22 | #ifndef NDN_TESTS_MGMT_NFD_CONTROLLER_FIXTURE_HPP |
| 23 | #define NDN_TESTS_MGMT_NFD_CONTROLLER_FIXTURE_HPP |
Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 24 | |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 25 | #include "mgmt/nfd/controller.hpp" |
Alexander Afanasyev | 6dfeffe | 2017-01-30 22:40:32 -0800 | [diff] [blame] | 26 | #include "util/dummy-client-face.hpp" |
| 27 | #include "security/v2/certificate-fetcher-offline.hpp" |
Junxiao Shi | 0f3f0b4 | 2016-07-14 13:26:37 +0000 | [diff] [blame] | 28 | |
Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 29 | #include "boost-test.hpp" |
Alexander Afanasyev | 6dfeffe | 2017-01-30 22:40:32 -0800 | [diff] [blame] | 30 | #include "dummy-validator.hpp" |
| 31 | #include "unit-tests/identity-management-time-fixture.hpp" |
Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 32 | |
| 33 | namespace ndn { |
| 34 | namespace nfd { |
| 35 | namespace tests { |
| 36 | |
| 37 | using namespace ndn::tests; |
| 38 | |
Alexander Afanasyev | 80782e0 | 2017-01-04 13:16:54 -0800 | [diff] [blame] | 39 | class ControllerFixture : public IdentityManagementTimeFixture |
Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 40 | { |
| 41 | protected: |
| 42 | ControllerFixture() |
Alexander Afanasyev | e4f8c3b | 2016-06-23 16:03:48 -0700 | [diff] [blame] | 43 | : face(io, m_keyChain) |
Alexander Afanasyev | 6dfeffe | 2017-01-30 22:40:32 -0800 | [diff] [blame] | 44 | , m_validator(true) |
Junxiao Shi | 0f3f0b4 | 2016-07-14 13:26:37 +0000 | [diff] [blame] | 45 | , controller(face, m_keyChain, m_validator) |
Junxiao Shi | e7c7f15 | 2016-08-20 22:36:22 +0000 | [diff] [blame] | 46 | , commandFailCallback(bind(&ControllerFixture::recordCommandFail, this, _1)) |
| 47 | , datasetFailCallback(bind(&ControllerFixture::recordDatasetFail, this, _1, _2)) |
Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 48 | { |
| 49 | Name identityName("/localhost/ControllerFixture"); |
Alexander Afanasyev | 80782e0 | 2017-01-04 13:16:54 -0800 | [diff] [blame] | 50 | m_keyChain.setDefaultIdentity(this->addIdentity(identityName)); |
Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Junxiao Shi | 0f3f0b4 | 2016-07-14 13:26:37 +0000 | [diff] [blame] | 53 | /** \brief controls whether Controller's validator should accept or reject validation requests |
| 54 | * |
| 55 | * Initially, the validator accepts all requests. |
| 56 | * Setting \p false causes validator to reject all requests. |
| 57 | */ |
| 58 | void |
| 59 | setValidationResult(bool shouldAccept) |
| 60 | { |
Alexander Afanasyev | 6dfeffe | 2017-01-30 22:40:32 -0800 | [diff] [blame] | 61 | m_validator.getPolicy().setResult(shouldAccept); |
Junxiao Shi | 0f3f0b4 | 2016-07-14 13:26:37 +0000 | [diff] [blame] | 62 | } |
| 63 | |
Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 64 | private: |
| 65 | void |
Junxiao Shi | e7c7f15 | 2016-08-20 22:36:22 +0000 | [diff] [blame] | 66 | recordCommandFail(const ControlResponse& response) |
| 67 | { |
| 68 | failCodes.push_back(response.getCode()); |
| 69 | } |
| 70 | |
| 71 | void |
| 72 | recordDatasetFail(uint32_t code, const std::string& reason) |
Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 73 | { |
| 74 | failCodes.push_back(code); |
| 75 | } |
| 76 | |
| 77 | protected: |
| 78 | ndn::util::DummyClientFace face; |
Alexander Afanasyev | 6dfeffe | 2017-01-30 22:40:32 -0800 | [diff] [blame] | 79 | DummyValidator m_validator; |
Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 80 | Controller controller; |
Junxiao Shi | e7c7f15 | 2016-08-20 22:36:22 +0000 | [diff] [blame] | 81 | Controller::CommandFailCallback commandFailCallback; |
| 82 | Controller::DatasetFailCallback datasetFailCallback; |
Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 83 | std::vector<uint32_t> failCodes; |
Junxiao Shi | 034c188 | 2016-06-24 18:06:51 +0000 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | } // namespace tests |
| 87 | } // namespace nfd |
| 88 | } // namespace ndn |
| 89 | |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 90 | #endif // NDN_TESTS_MGMT_NFD_CONTROLLER_FIXTURE_HPP |