blob: ed87b7108e5b34cdf77192b43e2b65a4f283eb6e [file] [log] [blame]
Junxiao Shi38f4ce92016-08-04 10:01:52 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shib347b7f2017-07-23 14:01:58 +00002/*
Ju Pan7570e772018-10-27 03:33:58 +00003 * Copyright (c) 2014-2018, Regents of the University of California,
Junxiao Shi38f4ce92016-08-04 10:01:52 +00004 * 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
Junxiao Shi331ade72016-08-19 14:07:19 +000026#include "nfdc/forwarder-general-module.hpp"
Junxiao Shi38f4ce92016-08-04 10:01:52 +000027
Junxiao Shi1f481fa2017-01-26 15:14:43 +000028#include "status-fixture.hpp"
Junxiao Shi38f4ce92016-08-04 10:01:52 +000029
Alexander Afanasyev01bbd092017-08-14 23:56:19 +000030#include <ndn-cxx/security/signing-helpers.hpp>
31
Junxiao Shi38f4ce92016-08-04 10:01:52 +000032namespace nfd {
33namespace tools {
Junxiao Shi331ade72016-08-19 14:07:19 +000034namespace nfdc {
Junxiao Shi38f4ce92016-08-04 10:01:52 +000035namespace tests {
36
Junxiao Shi331ade72016-08-19 14:07:19 +000037BOOST_AUTO_TEST_SUITE(Nfdc)
Junxiao Shi1f481fa2017-01-26 15:14:43 +000038BOOST_FIXTURE_TEST_SUITE(TestForwarderGeneralModule, StatusFixture<ForwarderGeneralModule>)
Junxiao Shi38f4ce92016-08-04 10:01:52 +000039
Junxiao Shi38f4ce92016-08-04 10:01:52 +000040const std::string STATUS_XML = stripXmlSpaces(R"XML(
41 <generalStatus>
Junxiao Shi38f4ce92016-08-04 10:01:52 +000042 <version>0.4.1-1-g704430c</version>
43 <startTime>2016-06-24T15:13:46.856000</startTime>
44 <currentTime>2016-07-17T17:55:54.109000</currentTime>
45 <uptime>PT1996927S</uptime>
46 <nNameTreeEntries>668</nNameTreeEntries>
47 <nFibEntries>70</nFibEntries>
48 <nPitEntries>7</nPitEntries>
49 <nMeasurementsEntries>1</nMeasurementsEntries>
50 <nCsEntries>65536</nCsEntries>
51 <packetCounters>
52 <incomingPackets>
53 <nInterests>20699052</nInterests>
Junxiao Shif03d4792017-04-06 16:41:22 +000054 <nData>5598070</nData>
Junxiao Shi38f4ce92016-08-04 10:01:52 +000055 <nNacks>7230</nNacks>
56 </incomingPackets>
57 <outgoingPackets>
58 <nInterests>36501092</nInterests>
Junxiao Shif03d4792017-04-06 16:41:22 +000059 <nData>5671942</nData>
Junxiao Shi38f4ce92016-08-04 10:01:52 +000060 <nNacks>26762</nNacks>
61 </outgoingPackets>
62 </packetCounters>
Ju Pan7570e772018-10-27 03:33:58 +000063 <nSatisfiedInterests>123</nSatisfiedInterests>
64 <nUnsatisfiedInterests>321</nUnsatisfiedInterests>
Junxiao Shi38f4ce92016-08-04 10:01:52 +000065 </generalStatus>
66)XML");
67
68const std::string STATUS_TEXT = std::string(R"TEXT(
69General NFD status:
Ju Pan7570e772018-10-27 03:33:58 +000070 version=0.4.1-1-g704430c
71 startTime=20160624T151346.856000
72 currentTime=20160717T175554.109000
73 uptime=1996927 seconds
74 nNameTreeEntries=668
75 nFibEntries=70
76 nPitEntries=7
77 nMeasurementsEntries=1
78 nCsEntries=65536
79 nInInterests=20699052
80 nOutInterests=36501092
81 nInData=5598070
82 nOutData=5671942
83 nInNacks=7230
84 nOutNacks=26762
85 nSatisfiedInterests=123
86 nUnsatisfiedInterests=321
Junxiao Shi38f4ce92016-08-04 10:01:52 +000087)TEXT").substr(1);
88
Alexander Afanasyev01bbd092017-08-14 23:56:19 +000089BOOST_AUTO_TEST_CASE(Status)
Junxiao Shi38f4ce92016-08-04 10:01:52 +000090{
91 this->fetchStatus();
92 ForwarderStatus payload;
93 payload.setNfdVersion("0.4.1-1-g704430c")
94 .setStartTimestamp(time::fromUnixTimestamp(time::milliseconds(1466781226856)))
95 .setCurrentTimestamp(time::fromUnixTimestamp(time::milliseconds(1468778154109)))
96 .setNNameTreeEntries(668)
97 .setNFibEntries(70)
98 .setNPitEntries(7)
99 .setNMeasurementsEntries(1)
100 .setNCsEntries(65536)
101 .setNInInterests(20699052)
Junxiao Shif03d4792017-04-06 16:41:22 +0000102 .setNInData(5598070)
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000103 .setNInNacks(7230)
104 .setNOutInterests(36501092)
Junxiao Shif03d4792017-04-06 16:41:22 +0000105 .setNOutData(5671942)
Ju Pan7570e772018-10-27 03:33:58 +0000106 .setNOutNacks(26762)
107 .setNSatisfiedInterests(123)
108 .setNUnsatisfiedInterests(321);
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000109 this->sendDataset("/localhost/nfd/status/general", payload);
110 this->prepareStatusOutput();
111
112 BOOST_CHECK(statusXml.is_equal(STATUS_XML));
113 BOOST_CHECK(statusText.is_equal(STATUS_TEXT));
114}
115
116BOOST_AUTO_TEST_CASE(StatusNoNfdId)
117{
118 this->fetchStatus();
119 ForwarderStatus payload;
120 payload.setNfdVersion("0.4.1-1-g704430c");
121 this->sendDataset("/localhost/nfd/status/general", payload);
122 BOOST_CHECK_NO_THROW(this->prepareStatusOutput());
123}
124
125BOOST_AUTO_TEST_SUITE_END() // TestForwarderGeneralModule
Junxiao Shi331ade72016-08-19 14:07:19 +0000126BOOST_AUTO_TEST_SUITE_END() // Nfdc
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000127
128} // namespace tests
Junxiao Shi331ade72016-08-19 14:07:19 +0000129} // namespace nfdc
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000130} // namespace tools
131} // namespace nfd