Teng Liang | d94b7b3 | 2022-07-10 21:29:37 +0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2014-2022, Regents of the University of California, |
| 4 | * Arizona Board of Regents, |
| 5 | * Colorado State University, |
| 6 | * University Pierre & Marie Curie, Sorbonne University, |
| 7 | * Washington University in St. Louis, |
| 8 | * Beijing Institute of Technology, |
| 9 | * The University of Memphis. |
| 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 24 | */ |
| 25 | |
| 26 | #include "face/face-endpoint.hpp" |
| 27 | |
| 28 | #include "tests/test-common.hpp" |
| 29 | #include "dummy-face.hpp" |
| 30 | |
| 31 | #include <boost/lexical_cast.hpp> |
| 32 | |
| 33 | namespace nfd::tests { |
| 34 | |
| 35 | using namespace nfd::face; |
| 36 | |
| 37 | BOOST_AUTO_TEST_SUITE(Face) |
| 38 | BOOST_AUTO_TEST_SUITE(TestFaceEndpoint) |
| 39 | |
| 40 | BOOST_AUTO_TEST_CASE(Print) |
| 41 | { |
| 42 | DummyFace face; |
| 43 | FaceEndpoint faceEndpoint1(face); |
| 44 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(faceEndpoint1), "0"); |
| 45 | |
| 46 | ethernet::Address ethEp{0x01, 0x00, 0x5e, 0x90, 0x10, 0x01}; |
| 47 | FaceEndpoint faceEndpoint2(face, ethEp); |
| 48 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(faceEndpoint2), "(0, 01:00:5e:90:10:01)"); |
| 49 | |
| 50 | udp::Endpoint udp4Ep{boost::asio::ip::address_v4(0xe00017aa), 56363}; |
| 51 | FaceEndpoint faceEndpoint3(face, udp4Ep); |
| 52 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(faceEndpoint3), "(0, 224.0.23.170:56363)"); |
| 53 | |
| 54 | udp::Endpoint udp6Ep{boost::asio::ip::address_v6::loopback(), 12345}; |
| 55 | FaceEndpoint faceEndpoint4(face, udp6Ep); |
| 56 | BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(faceEndpoint4), "(0, [::1]:12345)"); |
| 57 | } |
| 58 | |
| 59 | BOOST_AUTO_TEST_SUITE_END() // TestFaceEndpoint |
| 60 | BOOST_AUTO_TEST_SUITE_END() // Face |
| 61 | |
| 62 | } // namespace nfd::tests |