blob: 3cae12aea48ed0af8dc41103e75de871df176a50 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento0f830802018-01-16 23:58:58 -05002/*
3 * Copyright (c) 2013-2018 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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 Shi7b1ba1a2014-03-29 01:01:56 -070020 */
21
Junxiao Shi7357ef22016-09-07 02:39:37 +000022#include "mgmt/nfd/face-status.hpp"
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -070023
Alexander Afanasyevb1db7c62014-04-03 14:57:25 -070024#include "boost-test.hpp"
Davide Pesavento4ec7a5a2017-02-07 23:13:39 -050025#include <boost/lexical_cast.hpp>
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -070026
27namespace ndn {
28namespace nfd {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080029namespace tests {
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -070030
Junxiao Shi7357ef22016-09-07 02:39:37 +000031BOOST_AUTO_TEST_SUITE(Mgmt)
32BOOST_AUTO_TEST_SUITE(Nfd)
33BOOST_AUTO_TEST_SUITE(TestFaceStatus)
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -070034
Davide Pesavento4ec7a5a2017-02-07 23:13:39 -050035static FaceStatus
36makeFaceStatus()
37{
38 return FaceStatus()
39 .setFaceId(100)
40 .setRemoteUri("tcp4://192.0.2.1:6363")
41 .setLocalUri("tcp4://192.0.2.2:55555")
42 .setFaceScope(FACE_SCOPE_LOCAL)
43 .setFacePersistency(FACE_PERSISTENCY_ON_DEMAND)
44 .setLinkType(LINK_TYPE_MULTI_ACCESS)
Davide Pesavento0f830802018-01-16 23:58:58 -050045 .setExpirationPeriod(10_s)
Eric Newberry07d05c92018-01-22 16:08:01 -070046 .setBaseCongestionMarkingInterval(5_ns)
47 .setDefaultCongestionThreshold(7)
Davide Pesavento4ec7a5a2017-02-07 23:13:39 -050048 .setNInInterests(10)
Junxiao Shi9a53d782017-04-04 20:09:57 +000049 .setNInData(200)
Davide Pesavento4ec7a5a2017-02-07 23:13:39 -050050 .setNInNacks(1)
51 .setNOutInterests(3000)
Junxiao Shi9a53d782017-04-04 20:09:57 +000052 .setNOutData(4)
Davide Pesavento4ec7a5a2017-02-07 23:13:39 -050053 .setNOutNacks(2)
54 .setNInBytes(1329719163)
55 .setNOutBytes(999110448)
56 .setFlags(0x7);
57}
58
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -070059BOOST_AUTO_TEST_CASE(Encode)
60{
Davide Pesavento4ec7a5a2017-02-07 23:13:39 -050061 FaceStatus status1 = makeFaceStatus();
62 Block wire = status1.wireEncode();
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -070063
64 // These octets are obtained by the snippet below.
65 // This check is intended to detect unexpected encoding change in the future.
Alexander Afanasyeve63eaf62014-06-30 12:40:55 -070066 // for (Buffer::const_iterator it = wire.begin(); it != wire.end(); ++it) {
Davide Pesavento4ec7a5a2017-02-07 23:13:39 -050067 // printf("0x%02x, ", *it);
Alexander Afanasyeve63eaf62014-06-30 12:40:55 -070068 // }
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -070069 static const uint8_t expected[] = {
Eric Newberry07d05c92018-01-22 16:08:01 -070070 0x80, 0x67, 0x69, 0x01, 0x64, 0x72, 0x15, 0x74, 0x63, 0x70,
Chengyu Fan36dca992014-09-25 13:42:03 -060071 0x34, 0x3a, 0x2f, 0x2f, 0x31, 0x39, 0x32, 0x2e, 0x30, 0x2e,
72 0x32, 0x2e, 0x31, 0x3a, 0x36, 0x33, 0x36, 0x33, 0x81, 0x16,
73 0x74, 0x63, 0x70, 0x34, 0x3a, 0x2f, 0x2f, 0x31, 0x39, 0x32,
74 0x2e, 0x30, 0x2e, 0x32, 0x2e, 0x32, 0x3a, 0x35, 0x35, 0x35,
75 0x35, 0x35, 0x6d, 0x02, 0x27, 0x10, 0x84, 0x01, 0x01, 0x85,
Eric Newberry07d05c92018-01-22 16:08:01 -070076 0x01, 0x01, 0x86, 0x01, 0x01, 0x87, 0x01, 0x05, 0x88, 0x01,
77 0x07, 0x90, 0x01, 0x0a, 0x91, 0x01, 0xc8, 0x97, 0x01, 0x01,
78 0x92, 0x02, 0x0b, 0xb8, 0x93, 0x01, 0x04, 0x98, 0x01, 0x02,
79 0x94, 0x04, 0x4f, 0x41, 0xe7, 0x7b, 0x95, 0x04, 0x3b, 0x8d,
80 0x37, 0x30, 0x6c, 0x01, 0x07,
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -070081 };
Junxiao Shi13e637f2014-07-16 19:20:40 -070082 BOOST_CHECK_EQUAL_COLLECTIONS(expected, expected + sizeof(expected),
83 wire.begin(), wire.end());
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -070084
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -070085 FaceStatus status2(wire);
Davide Pesavento4ec7a5a2017-02-07 23:13:39 -050086 BOOST_CHECK_EQUAL(status1, status2);
87}
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -070088
Davide Pesavento4ec7a5a2017-02-07 23:13:39 -050089BOOST_AUTO_TEST_CASE(Equality)
90{
91 FaceStatus status1, status2;
92
93 status1 = makeFaceStatus();
94 status2 = status1;
95 BOOST_CHECK_EQUAL(status1, status2);
96
97 status2.setFaceId(42);
98 BOOST_CHECK_NE(status1, status2);
99}
100
101BOOST_AUTO_TEST_CASE(Print)
102{
103 FaceStatus status;
104 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(status),
105 "Face(FaceId: 0,\n"
106 " RemoteUri: ,\n"
107 " LocalUri: ,\n"
108 " ExpirationPeriod: infinite,\n"
109 " FaceScope: non-local,\n"
110 " FacePersistency: persistent,\n"
111 " LinkType: point-to-point,\n"
112 " Flags: 0x0,\n"
113 " Counters: {Interests: {in: 0, out: 0},\n"
114 " Data: {in: 0, out: 0},\n"
115 " Nacks: {in: 0, out: 0},\n"
116 " bytes: {in: 0, out: 0}}\n"
117 " )");
118
119 status = makeFaceStatus();
120 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(status),
121 "Face(FaceId: 100,\n"
122 " RemoteUri: tcp4://192.0.2.1:6363,\n"
123 " LocalUri: tcp4://192.0.2.2:55555,\n"
124 " ExpirationPeriod: 10000 milliseconds,\n"
125 " FaceScope: local,\n"
126 " FacePersistency: on-demand,\n"
127 " LinkType: multi-access,\n"
Eric Newberry07d05c92018-01-22 16:08:01 -0700128 " BaseCongestionMarkingInterval: 5 nanoseconds,\n"
129 " DefaultCongestionThreshold: 7 bytes,\n"
Davide Pesavento4ec7a5a2017-02-07 23:13:39 -0500130 " Flags: 0x7,\n"
131 " Counters: {Interests: {in: 10, out: 3000},\n"
132 " Data: {in: 200, out: 4},\n"
133 " Nacks: {in: 1, out: 2},\n"
134 " bytes: {in: 1329719163, out: 999110448}}\n"
135 " )");
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -0700136}
137
Davide Pesavento156c1ea2017-03-19 16:09:33 -0400138BOOST_AUTO_TEST_CASE(ExpirationPeriod)
139{
140 FaceStatus status;
141 BOOST_CHECK_EQUAL(status.hasExpirationPeriod(), false);
142
Davide Pesavento0f830802018-01-16 23:58:58 -0500143 status.setExpirationPeriod(1_min);
Davide Pesavento156c1ea2017-03-19 16:09:33 -0400144 BOOST_REQUIRE_EQUAL(status.hasExpirationPeriod(), true);
Davide Pesavento0f830802018-01-16 23:58:58 -0500145 BOOST_CHECK_EQUAL(status.getExpirationPeriod(), 1_min);
Davide Pesavento156c1ea2017-03-19 16:09:33 -0400146
147 status.unsetExpirationPeriod();
148 BOOST_CHECK_EQUAL(status.hasExpirationPeriod(), false);
149}
150
Eric Newberry1ce8ab22016-09-24 11:57:21 -0700151BOOST_AUTO_TEST_CASE(FlagBit)
152{
153 FaceStatus status;
154 status.setFlags(0x7);
155 BOOST_CHECK_EQUAL(status.getFlags(), 0x7);
156
157 BOOST_CHECK(status.getFlagBit(0));
158 BOOST_CHECK(status.getFlagBit(1));
159 BOOST_CHECK(status.getFlagBit(2));
160 BOOST_CHECK(!status.getFlagBit(3));
161
162 status.setFlagBit(3, true);
163 BOOST_CHECK_EQUAL(status.getFlags(), 0xf);
164 BOOST_CHECK(status.getFlagBit(3));
165
166 status.setFlagBit(1, false);
167 BOOST_CHECK_EQUAL(status.getFlags(), 0xd);
168 BOOST_CHECK(!status.getFlagBit(1));
169}
170
Junxiao Shi7357ef22016-09-07 02:39:37 +0000171BOOST_AUTO_TEST_SUITE_END() // TestFaceStatus
172BOOST_AUTO_TEST_SUITE_END() // Nfd
173BOOST_AUTO_TEST_SUITE_END() // Mgmt
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -0700174
Spyridon Mastorakis429634f2015-02-19 17:35:33 -0800175} // namespace tests
Junxiao Shi7b1ba1a2014-03-29 01:01:56 -0700176} // namespace nfd
177} // namespace ndn