blob: 2dbb58073dc149159ae3ab2d1828337f38b5dc88 [file] [log] [blame]
Junxiao Shi95fdebe2014-11-08 23:45:03 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesaventoeee3e822016-11-26 19:19:34 +01003 * Copyright (c) 2013-2016 Regents of the University of California.
Junxiao Shi95fdebe2014-11-08 23:45:03 -07004 *
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 */
Davide Pesaventoeee3e822016-11-26 19:19:34 +010021
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080022#include "encoding/nfd-constants.hpp"
Junxiao Shi95fdebe2014-11-08 23:45:03 -070023
Junxiao Shi18ef4de2015-10-17 16:58:23 +000024#include "boost-test.hpp"
25#include <boost/lexical_cast.hpp>
26
27namespace ndn {
28namespace nfd {
29namespace tests {
30
31BOOST_AUTO_TEST_SUITE(Encoding)
32BOOST_AUTO_TEST_SUITE(TestNfdConstants)
33
Davide Pesaventoe55589c2017-02-20 03:02:51 -050034BOOST_AUTO_TEST_CASE(PrintFaceScope)
Junxiao Shi18ef4de2015-10-17 16:58:23 +000035{
36 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(FACE_SCOPE_NONE), "none");
37 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(FACE_SCOPE_NON_LOCAL), "non-local");
38 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(FACE_SCOPE_LOCAL), "local");
39 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(static_cast<FaceScope>(126)), "126");
40}
41
Davide Pesaventoe55589c2017-02-20 03:02:51 -050042BOOST_AUTO_TEST_CASE(PrintFacePersistency)
Junxiao Shi18ef4de2015-10-17 16:58:23 +000043{
44 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(FACE_PERSISTENCY_NONE), "none");
45 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(FACE_PERSISTENCY_ON_DEMAND), "on-demand");
46 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(FACE_PERSISTENCY_PERSISTENT), "persistent");
47 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(FACE_PERSISTENCY_PERMANENT), "permanent");
48 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(static_cast<FacePersistency>(110)), "110");
49}
50
Davide Pesaventoe55589c2017-02-20 03:02:51 -050051BOOST_AUTO_TEST_CASE(PrintLinkType)
Junxiao Shi18ef4de2015-10-17 16:58:23 +000052{
53 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(LINK_TYPE_NONE), "none");
54 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(LINK_TYPE_POINT_TO_POINT), "point-to-point");
55 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(LINK_TYPE_MULTI_ACCESS), "multi-access");
56 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(static_cast<LinkType>(104)), "104");
57}
58
Davide Pesaventoe55589c2017-02-20 03:02:51 -050059BOOST_AUTO_TEST_CASE(PrintFaceEventKind)
60{
61 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(FACE_EVENT_NONE), "none");
62 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(FACE_EVENT_CREATED), "created");
63 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(FACE_EVENT_DESTROYED), "destroyed");
64 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(FACE_EVENT_UP), "up");
65 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(FACE_EVENT_DOWN), "down");
66 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(static_cast<FaceEventKind>(175)), "175");
67}
68
69BOOST_AUTO_TEST_CASE(PrintRouteOrigin)
Junxiao Shi18ef4de2015-10-17 16:58:23 +000070{
71 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(ROUTE_ORIGIN_NONE), "none");
72 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(ROUTE_ORIGIN_APP), "app");
73 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(ROUTE_ORIGIN_AUTOREG), "autoreg");
74 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(ROUTE_ORIGIN_CLIENT), "client");
75 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(ROUTE_ORIGIN_AUTOCONF), "autoconf");
76 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(ROUTE_ORIGIN_NLSR), "nlsr");
77 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(ROUTE_ORIGIN_STATIC), "static");
78 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(static_cast<RouteOrigin>(27)), "27");
79}
80
Davide Pesaventoe55589c2017-02-20 03:02:51 -050081BOOST_AUTO_TEST_CASE(PrintRouteFlags)
Junxiao Shi18ef4de2015-10-17 16:58:23 +000082{
83 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(ROUTE_FLAGS_NONE), "none");
84 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(ROUTE_FLAG_CHILD_INHERIT), "child-inherit");
85 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(ROUTE_FLAG_CAPTURE), "capture");
86 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(static_cast<RouteFlags>(
Davide Pesaventoe55589c2017-02-20 03:02:51 -050087 ROUTE_FLAG_CHILD_INHERIT | ROUTE_FLAG_CAPTURE)), "child-inherit|capture");
Junxiao Shi18ef4de2015-10-17 16:58:23 +000088 BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(static_cast<RouteFlags>(
Davide Pesaventoe55589c2017-02-20 03:02:51 -050089 ROUTE_FLAG_CAPTURE | 0x9c)), "capture|0x9c");
Junxiao Shi18ef4de2015-10-17 16:58:23 +000090}
91
92BOOST_AUTO_TEST_SUITE_END() // TestNfdConstants
93BOOST_AUTO_TEST_SUITE_END() // Encoding
94
95} // namespace tests
96} // namespace nfd
97} // namespace ndn