blob: c7af5aed35ee7dccc1d16ca3e723c057284b8c07 [file] [log] [blame]
laqinfan35731852017-08-08 06:17:39 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2018, The University of Memphis,
4 * Regents of the University of California,
5 * Arizona Board of Regents.
6 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
20 **/
21
22#include "tlv/routing-table-status.hpp"
23
24#include "../boost-test.hpp"
25
26namespace nlsr {
27namespace tlv {
28namespace test {
29
30BOOST_AUTO_TEST_SUITE(TlvTestRoutingTable)
31
32const uint8_t RoutingTableData1[] =
33{
34 // Header
35 0x90, 0x22,
36 // Routing table entry
37 0x91, 0x20,
38 // Destination
39 0x8e, 0x09, 0x07, 0x07, 0x08, 0x05, 0x64, 0x65, 0x73, 0x74, 0x31,
40 // Nexthop
41 0x8f, 0x13, 0x8d, 0x07, 0x6e, 0x65, 0x78, 0x74, 0x68, 0x6f, 0x70, 0x86, 0x08, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0xfa, 0x3f
42};
43
44const uint8_t RoutingTableData2[] =
45{
46 // Header
47 0x90, 0x00
48};
49
50BOOST_AUTO_TEST_CASE(RoutingTableEncode1)
51{
52 RoutingTableStatus rtStatus;
53
54 Destination des;
55 des.setName("dest1");
56
57 // RoutingtableEntry
58 RoutingTable rt;
59 rt.setDestination(des);
60
61 NextHop nexthops;
62 nexthops.setUri("nexthop");
63 nexthops.setCost(1.65);
64 rt.addNexthops(nexthops);
65
66 rtStatus.addRoutingTable(rt);
67
68 const ndn::Block& wire = rtStatus.wireEncode();
69
70 BOOST_REQUIRE_EQUAL_COLLECTIONS(RoutingTableData1,
71 RoutingTableData1 + sizeof(RoutingTableData1),
72 wire.begin(), wire.end());
73}
74
75BOOST_AUTO_TEST_CASE(RoutingTableEncode2)
76{
77 RoutingTableStatus rtStatus;
78
79 const ndn::Block& wire = rtStatus.wireEncode();
80
81 BOOST_REQUIRE_EQUAL_COLLECTIONS(RoutingTableData2,
82 RoutingTableData2 + sizeof(RoutingTableData2),
83 wire.begin(), wire.end());
84}
85
86BOOST_AUTO_TEST_CASE(RoutingTableDecode1)
87{
88 RoutingTableStatus rtStatus;
89
90 rtStatus.wireDecode(ndn::Block(RoutingTableData1, sizeof(RoutingTableData1)));
91
92 std::list<RoutingTable> rte = rtStatus.getRoutingtable();
93 std::list<RoutingTable>::const_iterator it1 = rte.begin();
94
95 Destination des1 = it1->getDestination();
96 BOOST_CHECK_EQUAL(des1.getName(), "dest1");
97
98 std::list<NextHop> nexthops = it1->getNextHops();
99 std::list<NextHop>::const_iterator it2 = nexthops.begin();
100 BOOST_CHECK_EQUAL(it2->getUri(), "nexthop");
101 BOOST_CHECK_EQUAL(it2->getCost(), 1.65);
102
103 BOOST_CHECK_EQUAL(rtStatus.hasRoutingTable(), true);
104}
105
106BOOST_AUTO_TEST_CASE(RoutingTableDecode2)
107{
108 RoutingTableStatus rtStatus;
109
110 rtStatus.wireDecode(ndn::Block(RoutingTableData2, sizeof(RoutingTableData2)));
111
112 BOOST_CHECK_EQUAL(rtStatus.hasRoutingTable(), false);
113}
114
115BOOST_AUTO_TEST_CASE(RoutingTableClear)
116{
117 RoutingTableStatus rtStatus;
118 Destination des;
119 des.setName("dest1");
120
121 // RoutingtableEntry
122 RoutingTable rt;
123 rt.setDestination(des);
124
125 NextHop nexthops;
126 nexthops.setUri("nexthop");
127 nexthops.setCost(1.65);
128 rt.addNexthops(nexthops);
129
130 rtStatus.addRoutingTable(rt);
131
132 BOOST_CHECK_EQUAL(rtStatus.hasRoutingTable(), true);
133 rtStatus.clearRoutingTable();
134 BOOST_CHECK_EQUAL(rtStatus.hasRoutingTable(), false);
135}
136
137BOOST_AUTO_TEST_CASE(RoutingTableOutputStream)
138{
139 RoutingTableStatus rtStatus;
140 Destination des;
141 des.setName("dest1");
142
143 // RoutingtableEntry
144 RoutingTable rt;
145 rt.setDestination(des);
146
147 NextHop nexthops;
148 nexthops.setUri("nexthop");
149 nexthops.setCost(99);
150 rt.addNexthops(nexthops);
151
152 rtStatus.addRoutingTable(rt);
153
154 std::ostringstream os;
155 os << rtStatus;
156
157 BOOST_CHECK_EQUAL(os.str(), "Routing Table Status: \n"
laqinfan35731852017-08-08 06:17:39 -0500158 "Destination: /dest1\n"
laqinfana073e2e2018-01-15 21:17:24 +0000159 "NexthopList(\n"
laqinfan35731852017-08-08 06:17:39 -0500160 "NextHop(Uri: nexthop, Cost: 99)\n"
laqinfana073e2e2018-01-15 21:17:24 +0000161 ")");
laqinfan35731852017-08-08 06:17:39 -0500162}
163
164BOOST_AUTO_TEST_SUITE_END()
165
166} // namespace test
167} // namespace tlv
168} // namespace nlsr