blob: 0897c0111661b5c0eaecbf7225e9719c734f0cf3 [file] [log] [blame]
Junxiao Shi38f4ce92016-08-04 10:01:52 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ju Pan13839ac2019-06-04 03:50:04 +00002/*
3 * Copyright (c) 2014-2019, 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/fib-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
30namespace nfd {
31namespace tools {
Junxiao Shi331ade72016-08-19 14:07:19 +000032namespace nfdc {
Junxiao Shi38f4ce92016-08-04 10:01:52 +000033namespace tests {
34
Junxiao Shi331ade72016-08-19 14:07:19 +000035BOOST_AUTO_TEST_SUITE(Nfdc)
Junxiao Shi1f481fa2017-01-26 15:14:43 +000036BOOST_FIXTURE_TEST_SUITE(TestFibModule, StatusFixture<FibModule>)
Junxiao Shi38f4ce92016-08-04 10:01:52 +000037
38const std::string STATUS_XML = stripXmlSpaces(R"XML(
39 <fib>
40 <fibEntry>
41 <prefix>/</prefix>
42 <nextHops>
43 <nextHop>
44 <faceId>262</faceId>
Ju Pan13839ac2019-06-04 03:50:04 +000045 <endpointId>1</endpointId>
Junxiao Shi38f4ce92016-08-04 10:01:52 +000046 <cost>9</cost>
47 </nextHop>
48 <nextHop>
49 <faceId>272</faceId>
Ju Pan13839ac2019-06-04 03:50:04 +000050 <endpointId>2</endpointId>
Junxiao Shi38f4ce92016-08-04 10:01:52 +000051 <cost>50</cost>
52 </nextHop>
53 <nextHop>
54 <faceId>274</faceId>
Ju Pan13839ac2019-06-04 03:50:04 +000055 <endpointId>3</endpointId>
Junxiao Shi38f4ce92016-08-04 10:01:52 +000056 <cost>78</cost>
57 </nextHop>
Ju Pan13839ac2019-06-04 03:50:04 +000058 <nextHop>
59 <faceId>275</faceId>
60 <endpointId>0</endpointId>
61 <cost>80</cost>
62 </nextHop>
Junxiao Shi38f4ce92016-08-04 10:01:52 +000063 </nextHops>
64 </fibEntry>
65 <fibEntry>
66 <prefix>/localhost/nfd</prefix>
67 <nextHops>
68 <nextHop>
69 <faceId>1</faceId>
Ju Pan13839ac2019-06-04 03:50:04 +000070 <endpointId>0</endpointId>
Junxiao Shi38f4ce92016-08-04 10:01:52 +000071 <cost>0</cost>
72 </nextHop>
73 <nextHop>
74 <faceId>274</faceId>
Ju Pan13839ac2019-06-04 03:50:04 +000075 <endpointId>5</endpointId>
Junxiao Shi38f4ce92016-08-04 10:01:52 +000076 <cost>0</cost>
77 </nextHop>
78 </nextHops>
79 </fibEntry>
80 </fib>
81)XML");
82
83const std::string STATUS_TEXT = std::string(R"TEXT(
84FIB:
Ju Pan13839ac2019-06-04 03:50:04 +000085 / nexthops={face=262:1 (cost=9), face=272:2 (cost=50), face=274:3 (cost=78), face=275 (cost=80)}
86 /localhost/nfd nexthops={face=1 (cost=0), face=274:5 (cost=0)}
Junxiao Shi38f4ce92016-08-04 10:01:52 +000087)TEXT").substr(1);
88
89BOOST_AUTO_TEST_CASE(Status)
90{
91 this->fetchStatus();
92 FibEntry payload1;
93 payload1.setPrefix("/")
Ju Pan13839ac2019-06-04 03:50:04 +000094 .addNextHopRecord(NextHopRecord().setFaceId(262).setEndpointId(1).setCost(9))
95 .addNextHopRecord(NextHopRecord().setFaceId(272).setEndpointId(2).setCost(50))
96 .addNextHopRecord(NextHopRecord().setFaceId(274).setEndpointId(3).setCost(78))
97 .addNextHopRecord(NextHopRecord().setFaceId(275).setCost(80));
Junxiao Shi38f4ce92016-08-04 10:01:52 +000098 FibEntry payload2;
99 payload2.setPrefix("/localhost/nfd")
100 .addNextHopRecord(NextHopRecord().setFaceId(1).setCost(0))
Ju Pan13839ac2019-06-04 03:50:04 +0000101 .addNextHopRecord(NextHopRecord().setFaceId(274).setEndpointId(5).setCost(0));
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000102 this->sendDataset("/localhost/nfd/fib/list", payload1, payload2);
103 this->prepareStatusOutput();
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000104 BOOST_CHECK(statusXml.is_equal(STATUS_XML));
105 BOOST_CHECK(statusText.is_equal(STATUS_TEXT));
106}
107
108BOOST_AUTO_TEST_SUITE_END() // TestFibModule
Junxiao Shi331ade72016-08-19 14:07:19 +0000109BOOST_AUTO_TEST_SUITE_END() // Nfdc
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000110
111} // namespace tests
Junxiao Shi331ade72016-08-19 14:07:19 +0000112} // namespace nfdc
Junxiao Shi38f4ce92016-08-04 10:01:52 +0000113} // namespace tools
114} // namespace nfd