blob: 845e314103d179f5ae1589d124d3cf089e397386 [file] [log] [blame]
Chengyu Fanfc8aebb2014-10-22 16:35:23 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Spyridon Mastorakis429634f2015-02-19 17:35:33 -08003 * Copyright (c) 2013-2015 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
22#include "management/nfd-face-query-filter.hpp"
23
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
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080030BOOST_AUTO_TEST_SUITE(ManagementNfdFaceQueryFilter)
Chengyu Fanfc8aebb2014-10-22 16:35:23 -060031
32BOOST_AUTO_TEST_CASE(Encode)
33{
34 FaceQueryFilter filter1;
35 BOOST_CHECK_EQUAL(filter1.hasFaceId(), false);
36 BOOST_CHECK_EQUAL(filter1.hasUriScheme(), false);
37 BOOST_CHECK_EQUAL(filter1.hasRemoteUri(), false);
38 BOOST_CHECK_EQUAL(filter1.hasLocalUri(), false);
39 BOOST_CHECK_EQUAL(filter1.hasFaceScope(), false);
40 BOOST_CHECK_EQUAL(filter1.hasFacePersistency(), false);
41 BOOST_CHECK_EQUAL(filter1.hasLinkType(), false);
42
43 filter1.setFaceId(100)
44 .setUriScheme("tcp4")
45 .setRemoteUri("tcp4://192.0.2.1:6363")
46 .setLocalUri("tcp4://192.0.2.2:55555")
47 .setFaceScope(FACE_SCOPE_LOCAL)
48 .setFacePersistency(FACE_PERSISTENCY_ON_DEMAND)
49 .setLinkType(LINK_TYPE_MULTI_ACCESS);
50
51 Block wire;
52 BOOST_REQUIRE_NO_THROW(wire = filter1.wireEncode());
53
54 // These octets are obtained by the snippet below.
55 // This check is intended to detect unexpected encoding change in the future.
56 // for (Buffer::const_iterator it = wire.begin(); it != wire.end(); ++it) {
57 // printf("0x%02x, ", *it);
58 // }
59 static const uint8_t expected[] = {
60 0x96, 0x41, 0x69, 0x01, 0x64, 0x83, 0x04, 0x74, 0x63, 0x70,
61 0x34, 0x72, 0x15, 0x74, 0x63, 0x70, 0x34, 0x3a, 0x2f, 0x2f,
62 0x31, 0x39, 0x32, 0x2e, 0x30, 0x2e, 0x32, 0x2e, 0x31, 0x3a,
63 0x36, 0x33, 0x36, 0x33, 0x81, 0x16, 0x74, 0x63, 0x70, 0x34,
64 0x3a, 0x2f, 0x2f, 0x31, 0x39, 0x32, 0x2e, 0x30, 0x2e, 0x32,
65 0x2e, 0x32, 0x3a, 0x35, 0x35, 0x35, 0x35, 0x35, 0x84, 0x01,
66 0x01, 0x85, 0x01, 0x01, 0x86, 0x01, 0x01,
67 };
68
69 BOOST_CHECK_EQUAL_COLLECTIONS(expected, expected + sizeof(expected),
70 wire.begin(), wire.end());
71
72 BOOST_REQUIRE_NO_THROW(FaceQueryFilter(wire));
73
74 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());
82
83 std::ostringstream os;
84 os << filter2;
85 BOOST_CHECK_EQUAL(os.str(), "FaceQueryFilter(FaceID: 100,\n"
86 "UriScheme: tcp4,\n"
87 "RemoteUri: tcp4://192.0.2.1:6363,\n"
88 "LocalUri: tcp4://192.0.2.2:55555,\n"
89 "FaceScope: local,\n"
90 "FacePersistency: on-demand,\n"
91 "LinkType: multi-access,\n"
92 ")");
93}
94
95BOOST_AUTO_TEST_SUITE_END()
96
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080097} // namespace tests
Chengyu Fanfc8aebb2014-10-22 16:35:23 -060098} // namespace nfd
99} // namespace ndn