blob: d8dbc67aecce42df757878977f390d78291d7160 [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;
Junxiao Shia341ae82017-02-13 19:45:12 +000087 BOOST_CHECK_EQUAL(filter1.empty(), true);
Junxiao Shia825d262017-02-07 18:24:59 +000088 BOOST_CHECK_EQUAL(filter1, filter2);
89
90 filter1.setFaceId(100)
91 .setUriScheme("tcp4")
92 .setRemoteUri("tcp4://192.0.2.1:6363")
93 .setLocalUri("tcp4://192.0.2.2:55555")
94 .setFaceScope(FACE_SCOPE_LOCAL)
95 .setFacePersistency(FACE_PERSISTENCY_ON_DEMAND)
96 .setLinkType(LINK_TYPE_MULTI_ACCESS);
Junxiao Shia341ae82017-02-13 19:45:12 +000097 BOOST_CHECK_EQUAL(filter1.empty(), false);
Junxiao Shia825d262017-02-07 18:24:59 +000098 BOOST_CHECK_NE(filter1, filter2);
99
100 filter2 = filter1;
101 BOOST_CHECK_EQUAL(filter1, filter2);
102
103 filter2.setFaceScope(FACE_SCOPE_NON_LOCAL);
104 BOOST_CHECK_NE(filter1, filter2);
105}
106
107BOOST_AUTO_TEST_CASE(Print)
108{
109 FaceQueryFilter filter;
110 filter.setFaceId(100)
111 .setUriScheme("tcp4")
112 .setRemoteUri("tcp4://192.0.2.1:6363")
113 .setLocalUri("tcp4://192.0.2.2:55555")
114 .setFaceScope(FACE_SCOPE_LOCAL)
115 .setFacePersistency(FACE_PERSISTENCY_ON_DEMAND)
116 .setLinkType(LINK_TYPE_MULTI_ACCESS);
117 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(filter),
118 "FaceQueryFilter(FaceID: 100,\n"
119 "UriScheme: tcp4,\n"
120 "RemoteUri: tcp4://192.0.2.1:6363,\n"
121 "LocalUri: tcp4://192.0.2.2:55555,\n"
122 "FaceScope: local,\n"
123 "FacePersistency: on-demand,\n"
124 "LinkType: multi-access,\n"
125 ")");
126
127 filter.unsetFaceId()
128 .unsetUriScheme()
129 .unsetRemoteUri()
130 .unsetLocalUri()
131 .unsetFaceScope()
132 .unsetFacePersistency()
133 .unsetLinkType();
134 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(filter), "FaceQueryFilter()");
Chengyu Fanfc8aebb2014-10-22 16:35:23 -0600135}
136
Junxiao Shi7357ef22016-09-07 02:39:37 +0000137BOOST_AUTO_TEST_SUITE_END() // TestFaceQueryFilter
138BOOST_AUTO_TEST_SUITE_END() // Nfd
139BOOST_AUTO_TEST_SUITE_END() // Mgmt
Chengyu Fanfc8aebb2014-10-22 16:35:23 -0600140
Spyridon Mastorakis429634f2015-02-19 17:35:33 -0800141} // namespace tests
Chengyu Fanfc8aebb2014-10-22 16:35:23 -0600142} // namespace nfd
143} // namespace ndn