blob: 3871ce04a598e7710b133fe216c234f12ee48481 [file] [log] [blame]
Chengyu Fanfc8aebb2014-10-22 16:35:23 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi7357ef22016-09-07 02:39:37 +00003 * Copyright (c) 2013-2016 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"
25
26namespace ndn {
27namespace nfd {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080028namespace tests {
Chengyu Fanfc8aebb2014-10-22 16:35:23 -060029
Junxiao Shi7357ef22016-09-07 02:39:37 +000030BOOST_AUTO_TEST_SUITE(Mgmt)
31BOOST_AUTO_TEST_SUITE(Nfd)
32BOOST_AUTO_TEST_SUITE(TestFaceQueryFilter)
Chengyu Fanfc8aebb2014-10-22 16:35:23 -060033
34BOOST_AUTO_TEST_CASE(Encode)
35{
36 FaceQueryFilter filter1;
37 BOOST_CHECK_EQUAL(filter1.hasFaceId(), false);
38 BOOST_CHECK_EQUAL(filter1.hasUriScheme(), false);
39 BOOST_CHECK_EQUAL(filter1.hasRemoteUri(), false);
40 BOOST_CHECK_EQUAL(filter1.hasLocalUri(), false);
41 BOOST_CHECK_EQUAL(filter1.hasFaceScope(), false);
42 BOOST_CHECK_EQUAL(filter1.hasFacePersistency(), false);
43 BOOST_CHECK_EQUAL(filter1.hasLinkType(), false);
44
45 filter1.setFaceId(100)
46 .setUriScheme("tcp4")
47 .setRemoteUri("tcp4://192.0.2.1:6363")
48 .setLocalUri("tcp4://192.0.2.2:55555")
49 .setFaceScope(FACE_SCOPE_LOCAL)
50 .setFacePersistency(FACE_PERSISTENCY_ON_DEMAND)
51 .setLinkType(LINK_TYPE_MULTI_ACCESS);
52
53 Block wire;
54 BOOST_REQUIRE_NO_THROW(wire = filter1.wireEncode());
55
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
74 BOOST_REQUIRE_NO_THROW(FaceQueryFilter(wire));
75
76 FaceQueryFilter filter2(wire);
77 BOOST_CHECK_EQUAL(filter1.getFaceId(), filter2.getFaceId());
78 BOOST_CHECK_EQUAL(filter1.getUriScheme(), filter2.getUriScheme());
79 BOOST_CHECK_EQUAL(filter1.getRemoteUri(), filter2.getRemoteUri());
80 BOOST_CHECK_EQUAL(filter1.getLocalUri(), filter2.getLocalUri());
81 BOOST_CHECK_EQUAL(filter1.getFaceScope(), filter2.getFaceScope());
82 BOOST_CHECK_EQUAL(filter1.getFacePersistency(), filter2.getFacePersistency());
83 BOOST_CHECK_EQUAL(filter1.getLinkType(), filter2.getLinkType());
84
85 std::ostringstream os;
86 os << filter2;
87 BOOST_CHECK_EQUAL(os.str(), "FaceQueryFilter(FaceID: 100,\n"
88 "UriScheme: tcp4,\n"
89 "RemoteUri: tcp4://192.0.2.1:6363,\n"
90 "LocalUri: tcp4://192.0.2.2:55555,\n"
91 "FaceScope: local,\n"
92 "FacePersistency: on-demand,\n"
93 "LinkType: multi-access,\n"
94 ")");
95}
96
Junxiao Shi7357ef22016-09-07 02:39:37 +000097BOOST_AUTO_TEST_SUITE_END() // TestFaceQueryFilter
98BOOST_AUTO_TEST_SUITE_END() // Nfd
99BOOST_AUTO_TEST_SUITE_END() // Mgmt
Chengyu Fanfc8aebb2014-10-22 16:35:23 -0600100
Spyridon Mastorakis429634f2015-02-19 17:35:33 -0800101} // namespace tests
Chengyu Fanfc8aebb2014-10-22 16:35:23 -0600102} // namespace nfd
103} // namespace ndn