Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ju Pan | dca56ea | 2018-10-24 06:20:44 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2023 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 | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 22 | #include "ndn-cxx/mgmt/nfd/forwarder-status.hpp" |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame] | 23 | #include "ndn-cxx/util/concepts.hpp" |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 24 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 25 | #include "tests/boost-test.hpp" |
Davide Pesavento | df8fd8a | 2022-02-21 20:04:21 -0500 | [diff] [blame] | 26 | |
Davide Pesavento | 25e3d8c | 2017-02-08 22:17:46 -0500 | [diff] [blame] | 27 | #include <boost/lexical_cast.hpp> |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 28 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 29 | namespace ndn::tests { |
| 30 | |
| 31 | using namespace ndn::nfd; |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 32 | |
Davide Pesavento | 152ef44 | 2023-04-22 02:02:29 -0400 | [diff] [blame] | 33 | BOOST_CONCEPT_ASSERT((StatusDatasetItem<ForwarderStatus>)); |
| 34 | |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 35 | BOOST_AUTO_TEST_SUITE(Mgmt) |
| 36 | BOOST_AUTO_TEST_SUITE(Nfd) |
| 37 | BOOST_AUTO_TEST_SUITE(TestForwarderStatus) |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 38 | |
Davide Pesavento | 25e3d8c | 2017-02-08 22:17:46 -0500 | [diff] [blame] | 39 | static ForwarderStatus |
| 40 | makeForwarderStatus() |
| 41 | { |
| 42 | return ForwarderStatus() |
| 43 | .setNfdVersion("0.5.1-14-g05dd444") |
| 44 | .setStartTimestamp(time::fromUnixTimestamp(time::milliseconds(375193249325LL))) |
| 45 | .setCurrentTimestamp(time::fromUnixTimestamp(time::milliseconds(886109034272LL))) |
| 46 | .setNNameTreeEntries(1849943160) |
| 47 | .setNFibEntries(621739748) |
| 48 | .setNPitEntries(482129741) |
| 49 | .setNMeasurementsEntries(1771725298) |
| 50 | .setNCsEntries(1264968688) |
| 51 | .setNInInterests(612811615) |
Junxiao Shi | 9a53d78 | 2017-04-04 20:09:57 +0000 | [diff] [blame] | 52 | .setNInData(1843576050) |
Davide Pesavento | 25e3d8c | 2017-02-08 22:17:46 -0500 | [diff] [blame] | 53 | .setNInNacks(1234) |
| 54 | .setNOutInterests(952144445) |
Junxiao Shi | 9a53d78 | 2017-04-04 20:09:57 +0000 | [diff] [blame] | 55 | .setNOutData(138198826) |
Ju Pan | dca56ea | 2018-10-24 06:20:44 +0000 | [diff] [blame] | 56 | .setNOutNacks(4321) |
| 57 | .setNSatisfiedInterests(961020) |
| 58 | .setNUnsatisfiedInterests(941024); |
Davide Pesavento | 25e3d8c | 2017-02-08 22:17:46 -0500 | [diff] [blame] | 59 | } |
| 60 | |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 61 | BOOST_AUTO_TEST_CASE(Encode) |
| 62 | { |
Davide Pesavento | 25e3d8c | 2017-02-08 22:17:46 -0500 | [diff] [blame] | 63 | ForwarderStatus status1 = makeForwarderStatus(); |
| 64 | Block wire = status1.wireEncode(); |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 65 | |
| 66 | // These octets are obtained by the snippet below. |
| 67 | // This check is intended to detect unexpected encoding change in the future. |
Davide Pesavento | df8fd8a | 2022-02-21 20:04:21 -0500 | [diff] [blame] | 68 | // for (auto it = wire.begin(); it != wire.end(); ++it) { |
Davide Pesavento | 25e3d8c | 2017-02-08 22:17:46 -0500 | [diff] [blame] | 69 | // printf("0x%02x, ", *it); |
| 70 | // } |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 71 | static const uint8_t expected[] = { |
Ju Pan | dca56ea | 2018-10-24 06:20:44 +0000 | [diff] [blame] | 72 | 0x15, 0x71, 0x80, 0x11, 0x30, 0x2e, 0x35, 0x2e, 0x31, 0x2d, 0x31, 0x34, |
Davide Pesavento | 25e3d8c | 2017-02-08 22:17:46 -0500 | [diff] [blame] | 73 | 0x2d, 0x67, 0x30, 0x35, 0x64, 0x64, 0x34, 0x34, 0x34, 0x81, 0x08, 0x00, |
Hila Ben Abraham | 23f9e78 | 2014-12-02 02:21:34 -0600 | [diff] [blame] | 74 | 0x00, 0x00, 0x57, 0x5b, 0x42, 0xa6, 0x2d, 0x82, 0x08, 0x00, 0x00, 0x00, |
| 75 | 0xce, 0x50, 0x36, 0xd7, 0x20, 0x83, 0x04, 0x6e, 0x43, 0xe4, 0x78, 0x84, |
| 76 | 0x04, 0x25, 0x0e, 0xfe, 0xe4, 0x85, 0x04, 0x1c, 0xbc, 0xb7, 0x4d, 0x86, |
| 77 | 0x04, 0x69, 0x9a, 0x61, 0xf2, 0x87, 0x04, 0x4b, 0x65, 0xe3, 0xf0, 0x90, |
Eric Newberry | 95bd96a | 2015-09-04 23:34:22 -0700 | [diff] [blame] | 78 | 0x04, 0x24, 0x86, 0xc3, 0x5f, 0x91, 0x04, 0x6d, 0xe2, 0xbc, 0xf2, 0x97, |
| 79 | 0x02, 0x04, 0xd2, 0x92, 0x04, 0x38, 0xc0, 0x92, 0x3d, 0x93, 0x04, 0x08, |
Ju Pan | dca56ea | 2018-10-24 06:20:44 +0000 | [diff] [blame] | 80 | 0x3c, 0xbf, 0x2a, 0x98, 0x02, 0x10, 0xe1, 0x99, 0x04, 0x00, 0x0e, 0xa9, |
| 81 | 0xfc, 0x9a, 0x04, 0x00, 0x0e, 0x5b, 0xe0, |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 82 | }; |
Davide Pesavento | 25e3d8c | 2017-02-08 22:17:46 -0500 | [diff] [blame] | 83 | BOOST_CHECK_EQUAL_COLLECTIONS(expected, expected + sizeof(expected), |
| 84 | wire.begin(), wire.end()); |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 85 | |
Davide Pesavento | 25e3d8c | 2017-02-08 22:17:46 -0500 | [diff] [blame] | 86 | ForwarderStatus status2(wire); |
| 87 | BOOST_CHECK_EQUAL(status1, status2); |
| 88 | } |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 89 | |
Davide Pesavento | 25e3d8c | 2017-02-08 22:17:46 -0500 | [diff] [blame] | 90 | BOOST_AUTO_TEST_CASE(Equality) |
| 91 | { |
| 92 | ForwarderStatus status1, status2; |
| 93 | |
| 94 | status1 = makeForwarderStatus(); |
| 95 | status2 = status1; |
| 96 | BOOST_CHECK_EQUAL(status1, status2); |
| 97 | |
| 98 | status2.setNPitEntries(42); |
| 99 | BOOST_CHECK_NE(status1, status2); |
| 100 | } |
| 101 | |
| 102 | BOOST_AUTO_TEST_CASE(Print) |
| 103 | { |
| 104 | ForwarderStatus status; |
| 105 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(status), |
| 106 | "GeneralStatus(NfdVersion: ,\n" |
| 107 | " StartTimestamp: 0 nanoseconds since Jan 1, 1970,\n" |
| 108 | " CurrentTimestamp: 0 nanoseconds since Jan 1, 1970,\n" |
| 109 | " Counters: {NameTreeEntries: 0,\n" |
| 110 | " FibEntries: 0,\n" |
| 111 | " PitEntries: 0,\n" |
| 112 | " MeasurementsEntries: 0,\n" |
| 113 | " CsEntries: 0,\n" |
| 114 | " Interests: {in: 0, out: 0},\n" |
| 115 | " Data: {in: 0, out: 0},\n" |
Ju Pan | dca56ea | 2018-10-24 06:20:44 +0000 | [diff] [blame] | 116 | " Nacks: {in: 0, out: 0},\n" |
| 117 | " SatisfiedInterests: 0,\n" |
| 118 | " UnsatisfiedInterests: 0}\n" |
Davide Pesavento | 25e3d8c | 2017-02-08 22:17:46 -0500 | [diff] [blame] | 119 | " )"); |
| 120 | |
| 121 | status = makeForwarderStatus(); |
| 122 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(status), |
| 123 | "GeneralStatus(NfdVersion: 0.5.1-14-g05dd444,\n" |
| 124 | " StartTimestamp: 375193249325000000 nanoseconds since Jan 1, 1970,\n" |
| 125 | " CurrentTimestamp: 886109034272000000 nanoseconds since Jan 1, 1970,\n" |
| 126 | " Counters: {NameTreeEntries: 1849943160,\n" |
| 127 | " FibEntries: 621739748,\n" |
| 128 | " PitEntries: 482129741,\n" |
| 129 | " MeasurementsEntries: 1771725298,\n" |
| 130 | " CsEntries: 1264968688,\n" |
| 131 | " Interests: {in: 612811615, out: 952144445},\n" |
| 132 | " Data: {in: 1843576050, out: 138198826},\n" |
Ju Pan | dca56ea | 2018-10-24 06:20:44 +0000 | [diff] [blame] | 133 | " Nacks: {in: 1234, out: 4321},\n" |
| 134 | " SatisfiedInterests: 961020,\n" |
| 135 | " UnsatisfiedInterests: 941024}\n" |
Davide Pesavento | 25e3d8c | 2017-02-08 22:17:46 -0500 | [diff] [blame] | 136 | " )"); |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 137 | } |
| 138 | |
Junxiao Shi | 7357ef2 | 2016-09-07 02:39:37 +0000 | [diff] [blame] | 139 | BOOST_AUTO_TEST_SUITE_END() // TestForwarderStatus |
| 140 | BOOST_AUTO_TEST_SUITE_END() // Nfd |
| 141 | BOOST_AUTO_TEST_SUITE_END() // Mgmt |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 142 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 143 | } // namespace ndn::tests |