blob: 7e91b8de9ededd827604edcc3de78311ac8a9a54 [file] [log] [blame]
Chengyu Fanfc8aebb2014-10-22 16:35:23 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shia825d262017-02-07 18:24:59 +00003 * Copyright (c) 2013-2017 Regents of the University of California.
Chengyu Fanfc8aebb2014-10-22 16:35:23 -06004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
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.
20 */
21
Junxiao Shi7357ef22016-09-07 02:39:37 +000022#include "mgmt/nfd/face-query-filter.hpp"
Chengyu Fanfc8aebb2014-10-22 16:35:23 -060023
24#include "boost-test.hpp"
Junxiao Shia825d262017-02-07 18:24:59 +000025#include <boost/lexical_cast.hpp>
Chengyu Fanfc8aebb2014-10-22 16:35:23 -060026
27namespace ndn {
28namespace nfd {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080029namespace tests {
Chengyu Fanfc8aebb2014-10-22 16:35:23 -060030
Junxiao Shi7357ef22016-09-07 02:39:37 +000031BOOST_AUTO_TEST_SUITE(Mgmt)
32BOOST_AUTO_TEST_SUITE(Nfd)
33BOOST_AUTO_TEST_SUITE(TestFaceQueryFilter)
Chengyu Fanfc8aebb2014-10-22 16:35:23 -060034
35BOOST_AUTO_TEST_CASE(Encode)
36{
37 FaceQueryFilter filter1;
38 BOOST_CHECK_EQUAL(filter1.hasFaceId(), false);
39 BOOST_CHECK_EQUAL(filter1.hasUriScheme(), false);
40 BOOST_CHECK_EQUAL(filter1.hasRemoteUri(), false);
41 BOOST_CHECK_EQUAL(filter1.hasLocalUri(), false);
42 BOOST_CHECK_EQUAL(filter1.hasFaceScope(), false);
43 BOOST_CHECK_EQUAL(filter1.hasFacePersistency(), false);
44 BOOST_CHECK_EQUAL(filter1.hasLinkType(), false);
45
46 filter1.setFaceId(100)
47 .setUriScheme("tcp4")
48 .setRemoteUri("tcp4://192.0.2.1:6363")
49 .setLocalUri("tcp4://192.0.2.2:55555")
50 .setFaceScope(FACE_SCOPE_LOCAL)
51 .setFacePersistency(FACE_PERSISTENCY_ON_DEMAND)
52 .setLinkType(LINK_TYPE_MULTI_ACCESS);
53
Junxiao Shia825d262017-02-07 18:24:59 +000054 Block wire = filter1.wireEncode();
Chengyu Fanfc8aebb2014-10-22 16:35:23 -060055
56 // These octets are obtained by the snippet below.
57 // This check is intended to detect unexpected encoding change in the future.
58 // for (Buffer::const_iterator it = wire.begin(); it != wire.end(); ++it) {
59 // printf("0x%02x, ", *it);
60 // }
61 static const uint8_t expected[] = {
62 0x96, 0x41, 0x69, 0x01, 0x64, 0x83, 0x04, 0x74, 0x63, 0x70,
63 0x34, 0x72, 0x15, 0x74, 0x63, 0x70, 0x34, 0x3a, 0x2f, 0x2f,
64 0x31, 0x39, 0x32, 0x2e, 0x30, 0x2e, 0x32, 0x2e, 0x31, 0x3a,
65 0x36, 0x33, 0x36, 0x33, 0x81, 0x16, 0x74, 0x63, 0x70, 0x34,
66 0x3a, 0x2f, 0x2f, 0x31, 0x39, 0x32, 0x2e, 0x30, 0x2e, 0x32,
67 0x2e, 0x32, 0x3a, 0x35, 0x35, 0x35, 0x35, 0x35, 0x84, 0x01,
68 0x01, 0x85, 0x01, 0x01, 0x86, 0x01, 0x01,
69 };
70
71 BOOST_CHECK_EQUAL_COLLECTIONS(expected, expected + sizeof(expected),
72 wire.begin(), wire.end());
73
Chengyu Fanfc8aebb2014-10-22 16:35:23 -060074 FaceQueryFilter filter2(wire);
75 BOOST_CHECK_EQUAL(filter1.getFaceId(), filter2.getFaceId());
76 BOOST_CHECK_EQUAL(filter1.getUriScheme(), filter2.getUriScheme());
77 BOOST_CHECK_EQUAL(filter1.getRemoteUri(), filter2.getRemoteUri());
78 BOOST_CHECK_EQUAL(filter1.getLocalUri(), filter2.getLocalUri());
79 BOOST_CHECK_EQUAL(filter1.getFaceScope(), filter2.getFaceScope());
80 BOOST_CHECK_EQUAL(filter1.getFacePersistency(), filter2.getFacePersistency());
81 BOOST_CHECK_EQUAL(filter1.getLinkType(), filter2.getLinkType());
Junxiao Shia825d262017-02-07 18:24:59 +000082}
Chengyu Fanfc8aebb2014-10-22 16:35:23 -060083
Junxiao Shia825d262017-02-07 18:24:59 +000084BOOST_AUTO_TEST_CASE(Equality)
85{
86 FaceQueryFilter filter1, filter2;
87 BOOST_CHECK_EQUAL(filter1, filter2);
88
89 filter1.setFaceId(100)
90 .setUriScheme("tcp4")
91 .setRemoteUri("tcp4://192.0.2.1:6363")
92 .setLocalUri("tcp4://192.0.2.2:55555")
93 .setFaceScope(FACE_SCOPE_LOCAL)
94 .setFacePersistency(FACE_PERSISTENCY_ON_DEMAND)
95 .setLinkType(LINK_TYPE_MULTI_ACCESS);
96 BOOST_CHECK_NE(filter1, filter2);
97
98 filter2 = filter1;
99 BOOST_CHECK_EQUAL(filter1, filter2);
100
101 filter2.setFaceScope(FACE_SCOPE_NON_LOCAL);
102 BOOST_CHECK_NE(filter1, filter2);
103}
104
105BOOST_AUTO_TEST_CASE(Print)
106{
107 FaceQueryFilter filter;
108 filter.setFaceId(100)
109 .setUriScheme("tcp4")
110 .setRemoteUri("tcp4://192.0.2.1:6363")
111 .setLocalUri("tcp4://192.0.2.2:55555")
112 .setFaceScope(FACE_SCOPE_LOCAL)
113 .setFacePersistency(FACE_PERSISTENCY_ON_DEMAND)
114 .setLinkType(LINK_TYPE_MULTI_ACCESS);
115 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(filter),
116 "FaceQueryFilter(FaceID: 100,\n"
117 "UriScheme: tcp4,\n"
118 "RemoteUri: tcp4://192.0.2.1:6363,\n"
119 "LocalUri: tcp4://192.0.2.2:55555,\n"
120 "FaceScope: local,\n"
121 "FacePersistency: on-demand,\n"
122 "LinkType: multi-access,\n"
123 ")");
124
125 filter.unsetFaceId()
126 .unsetUriScheme()
127 .unsetRemoteUri()
128 .unsetLocalUri()
129 .unsetFaceScope()
130 .unsetFacePersistency()
131 .unsetLinkType();
132 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(filter), "FaceQueryFilter()");
Chengyu Fanfc8aebb2014-10-22 16:35:23 -0600133}
134
Junxiao Shi7357ef22016-09-07 02:39:37 +0000135BOOST_AUTO_TEST_SUITE_END() // TestFaceQueryFilter
136BOOST_AUTO_TEST_SUITE_END() // Nfd
137BOOST_AUTO_TEST_SUITE_END() // Mgmt
Chengyu Fanfc8aebb2014-10-22 16:35:23 -0600138
Spyridon Mastorakis429634f2015-02-19 17:35:33 -0800139} // namespace tests
Chengyu Fanfc8aebb2014-10-22 16:35:23 -0600140} // namespace nfd
141} // namespace ndn