Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ju Pan | 6eb1ac9 | 2018-10-26 16:26:15 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2019, Regents of the University of California, |
Yanbiao Li | 7cec7ea | 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/forwarder-status-manager.hpp" |
Junxiao Shi | 9f5b01d | 2016-08-05 03:54:28 +0000 | [diff] [blame] | 27 | #include "core/version.hpp" |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 28 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 29 | #include "manager-common-fixture.hpp" |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 30 | |
| 31 | namespace nfd { |
| 32 | namespace tests { |
| 33 | |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 34 | class ForwarderStatusManagerFixture : public ManagerCommonFixture |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 35 | { |
Junxiao Shi | 8094624 | 2015-12-29 17:53:18 -0700 | [diff] [blame] | 36 | protected: |
| 37 | ForwarderStatusManagerFixture() |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 38 | : m_manager(m_forwarder, m_dispatcher) |
| 39 | , m_startTime(time::system_clock::now()) |
Junxiao Shi | 8094624 | 2015-12-29 17:53:18 -0700 | [diff] [blame] | 40 | { |
Junxiao Shi | 9ddf1b5 | 2016-08-22 03:58:55 +0000 | [diff] [blame] | 41 | setTopPrefix(); |
Junxiao Shi | 8094624 | 2015-12-29 17:53:18 -0700 | [diff] [blame] | 42 | } |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 43 | |
Junxiao Shi | 8094624 | 2015-12-29 17:53:18 -0700 | [diff] [blame] | 44 | protected: |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 45 | Forwarder m_forwarder; |
| 46 | ForwarderStatusManager m_manager; |
| 47 | time::system_clock::TimePoint m_startTime; |
Junxiao Shi | 8094624 | 2015-12-29 17:53:18 -0700 | [diff] [blame] | 48 | }; |
| 49 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 50 | BOOST_AUTO_TEST_SUITE(Mgmt) |
Junxiao Shi | 8094624 | 2015-12-29 17:53:18 -0700 | [diff] [blame] | 51 | BOOST_FIXTURE_TEST_SUITE(TestForwarderStatusManager, ForwarderStatusManagerFixture) |
| 52 | |
Davide Pesavento | 97210d5 | 2016-10-14 15:45:48 +0200 | [diff] [blame] | 53 | BOOST_AUTO_TEST_CASE(GeneralStatusDataset) |
Junxiao Shi | 8094624 | 2015-12-29 17:53:18 -0700 | [diff] [blame] | 54 | { |
| 55 | // cause counters to be non-zero |
| 56 | this->advanceClocks(time::seconds(3600)); |
| 57 | m_forwarder.getFib().insert("ndn:/fib1"); |
| 58 | m_forwarder.getPit().insert(*makeInterest("ndn:/pit1")); |
| 59 | m_forwarder.getPit().insert(*makeInterest("ndn:/pit2")); |
| 60 | m_forwarder.getPit().insert(*makeInterest("ndn:/pit3")); |
| 61 | m_forwarder.getPit().insert(*makeInterest("ndn:/pit4")); |
| 62 | m_forwarder.getMeasurements().get("ndn:/measurements1"); |
| 63 | m_forwarder.getMeasurements().get("ndn:/measurements2"); |
| 64 | m_forwarder.getMeasurements().get("ndn:/measurements3"); |
| 65 | m_forwarder.getCs().insert(*makeData("ndn:/cs1")); |
| 66 | m_forwarder.getCs().insert(*makeData("ndn:/cs2")); |
Ju Pan | 6eb1ac9 | 2018-10-26 16:26:15 +0000 | [diff] [blame] | 67 | shared_ptr<pit::Entry> pitA = m_forwarder.getPit().insert(*makeInterest("ndn:/pitA")).first; |
| 68 | pitA->isSatisfied = false; |
| 69 | m_forwarder.onInterestFinalize(pitA); |
| 70 | shared_ptr<pit::Entry> pitB = m_forwarder.getPit().insert(*makeInterest("ndn:/pitB")).first; |
| 71 | pitB->isSatisfied = true; |
| 72 | m_forwarder.onInterestFinalize(pitB); |
| 73 | |
Junxiao Shi | 8094624 | 2015-12-29 17:53:18 -0700 | [diff] [blame] | 74 | BOOST_CHECK_GE(m_forwarder.getFib().size(), 1); |
| 75 | BOOST_CHECK_GE(m_forwarder.getPit().size(), 4); |
| 76 | BOOST_CHECK_GE(m_forwarder.getMeasurements().size(), 3); |
| 77 | BOOST_CHECK_GE(m_forwarder.getCs().size(), 2); |
Ju Pan | 6eb1ac9 | 2018-10-26 16:26:15 +0000 | [diff] [blame] | 78 | BOOST_CHECK_EQUAL(m_forwarder.getCounters().nSatisfiedInterests, 1); |
| 79 | BOOST_CHECK_EQUAL(m_forwarder.getCounters().nUnsatisfiedInterests, 1); |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 80 | |
| 81 | // request |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 82 | auto beforeRequest = time::system_clock::now(); |
| 83 | receiveInterest(Interest("/localhost/nfd/status/general").setCanBePrefix(true)); |
| 84 | auto afterRequest = time::system_clock::now(); |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 85 | |
| 86 | // verify |
Junxiao Shi | 8094624 | 2015-12-29 17:53:18 -0700 | [diff] [blame] | 87 | Block response = this->concatenateResponses(0, m_responses.size()); |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 88 | ndn::nfd::ForwarderStatus status; |
Junxiao Shi | 8094624 | 2015-12-29 17:53:18 -0700 | [diff] [blame] | 89 | BOOST_REQUIRE_NO_THROW(status.wireDecode(response)); |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 90 | |
| 91 | BOOST_CHECK_EQUAL(status.getNfdVersion(), NFD_VERSION_BUILD_STRING); |
Davide Pesavento | 78ddcab | 2019-02-28 22:00:03 -0500 | [diff] [blame] | 92 | BOOST_CHECK_EQUAL(time::toUnixTimestamp(status.getStartTimestamp()), time::toUnixTimestamp(m_startTime)); |
Junxiao Shi | 8094624 | 2015-12-29 17:53:18 -0700 | [diff] [blame] | 93 | BOOST_CHECK_GE(time::toUnixTimestamp(status.getCurrentTimestamp()), time::toUnixTimestamp(beforeRequest)); |
| 94 | BOOST_CHECK_LE(time::toUnixTimestamp(status.getCurrentTimestamp()), time::toUnixTimestamp(afterRequest)); |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 95 | |
| 96 | // Interest/Data toward ForwarderStatusManager don't go through Forwarder, |
| 97 | // so request and response won't affect table size |
Junxiao Shi | 8094624 | 2015-12-29 17:53:18 -0700 | [diff] [blame] | 98 | BOOST_CHECK_EQUAL(status.getNNameTreeEntries(), m_forwarder.getNameTree().size()); |
| 99 | BOOST_CHECK_EQUAL(status.getNFibEntries(), m_forwarder.getFib().size()); |
| 100 | BOOST_CHECK_EQUAL(status.getNPitEntries(), m_forwarder.getPit().size()); |
| 101 | BOOST_CHECK_EQUAL(status.getNMeasurementsEntries(), m_forwarder.getMeasurements().size()); |
| 102 | BOOST_CHECK_EQUAL(status.getNCsEntries(), m_forwarder.getCs().size()); |
Junxiao Shi | da93f1f | 2015-11-11 06:13:16 -0700 | [diff] [blame] | 103 | // TODO#3325 check packet counter values |
Ju Pan | 6eb1ac9 | 2018-10-26 16:26:15 +0000 | [diff] [blame] | 104 | |
| 105 | BOOST_CHECK_EQUAL(status.getNSatisfiedInterests(), m_forwarder.getCounters().nSatisfiedInterests); |
| 106 | BOOST_CHECK_EQUAL(status.getNUnsatisfiedInterests(), m_forwarder.getCounters().nUnsatisfiedInterests); |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Yanbiao Li | 7cec7ea | 2015-08-19 16:30:16 -0700 | [diff] [blame] | 109 | BOOST_AUTO_TEST_SUITE_END() // TestForwarderStatusManager |
| 110 | BOOST_AUTO_TEST_SUITE_END() // Mgmt |
| 111 | |
| 112 | } // namespace tests |
| 113 | } // namespace nfd |