Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | db4da5e | 2018-06-15 11:37:52 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2023 Regents of the University of California. |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 4 | * |
| 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 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 22 | #include "ndn-cxx/transport/tcp-transport.hpp" |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 23 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 24 | #include "tests/boost-test.hpp" |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 25 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 26 | namespace ndn::tests { |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 27 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 28 | BOOST_AUTO_TEST_SUITE(Transport) |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 29 | BOOST_AUTO_TEST_SUITE(TestTcpTransport) |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 30 | |
| 31 | using ndn::Transport; |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 32 | |
| 33 | BOOST_AUTO_TEST_CASE(GetDefaultSocketNameOk) |
| 34 | { |
Alexander Afanasyev | 57e0036 | 2016-06-23 13:22:54 -0700 | [diff] [blame] | 35 | const auto got = TcpTransport::getSocketHostAndPortFromUri("tcp://127.0.0.1:6000"); |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 36 | |
| 37 | BOOST_CHECK_EQUAL(got.first, "127.0.0.1"); |
| 38 | BOOST_CHECK_EQUAL(got.second, "6000"); |
| 39 | } |
| 40 | |
| 41 | BOOST_AUTO_TEST_CASE(GetDefaultSocketHostAndPortBadMissingHost) |
| 42 | { |
Alexander Afanasyev | 57e0036 | 2016-06-23 13:22:54 -0700 | [diff] [blame] | 43 | BOOST_CHECK_EXCEPTION(TcpTransport::getSocketHostAndPortFromUri("tcp://:6000"), |
| 44 | Transport::Error, |
| 45 | [] (const Transport::Error& error) { |
Davide Pesavento | db4da5e | 2018-06-15 11:37:52 -0400 | [diff] [blame] | 46 | return error.what() == "Malformed URI: tcp://:6000"s; |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 47 | }); |
| 48 | } |
| 49 | |
| 50 | BOOST_AUTO_TEST_CASE(GetDefaultSocketHostAndPortOkOmittedPort) |
| 51 | { |
Alexander Afanasyev | 57e0036 | 2016-06-23 13:22:54 -0700 | [diff] [blame] | 52 | const auto got = TcpTransport::getSocketHostAndPortFromUri("tcp://127.0.0.1"); |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 53 | |
| 54 | BOOST_CHECK_EQUAL(got.first, "127.0.0.1"); |
| 55 | BOOST_CHECK_EQUAL(got.second, "6363"); |
| 56 | } |
| 57 | |
| 58 | BOOST_AUTO_TEST_CASE(GetDefaultSocketHostAndPortNameOkOmittedHostOmittedPort) |
| 59 | { |
Alexander Afanasyev | 57e0036 | 2016-06-23 13:22:54 -0700 | [diff] [blame] | 60 | const auto got = TcpTransport::getSocketHostAndPortFromUri("tcp://"); |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 61 | |
| 62 | BOOST_CHECK_EQUAL(got.first, "localhost"); |
| 63 | BOOST_CHECK_EQUAL(got.second, "6363"); |
| 64 | } |
| 65 | |
| 66 | BOOST_AUTO_TEST_CASE(GetDefaultSocketHostAndPortBadWrongTransport) |
| 67 | { |
Alexander Afanasyev | 57e0036 | 2016-06-23 13:22:54 -0700 | [diff] [blame] | 68 | BOOST_CHECK_EXCEPTION(TcpTransport::getSocketHostAndPortFromUri("unix://"), |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 69 | Transport::Error, |
| 70 | [] (const Transport::Error& error) { |
Davide Pesavento | db4da5e | 2018-06-15 11:37:52 -0400 | [diff] [blame] | 71 | return error.what() == "Cannot create TcpTransport from \"unix\" URI"s; |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 72 | }); |
| 73 | } |
| 74 | |
| 75 | BOOST_AUTO_TEST_CASE(GetDefaultSocketHostAndPortBadMalformedUri) |
| 76 | { |
Alexander Afanasyev | 57e0036 | 2016-06-23 13:22:54 -0700 | [diff] [blame] | 77 | BOOST_CHECK_EXCEPTION(TcpTransport::getSocketHostAndPortFromUri("tcp"), |
| 78 | Transport::Error, |
| 79 | [] (const Transport::Error& error) { |
Davide Pesavento | db4da5e | 2018-06-15 11:37:52 -0400 | [diff] [blame] | 80 | return error.what() == "Malformed URI: tcp"s; |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 81 | }); |
| 82 | } |
| 83 | |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 84 | BOOST_AUTO_TEST_SUITE_END() // TestTcpTransport |
| 85 | BOOST_AUTO_TEST_SUITE_END() // Transport |
Steve DiBenedetto | a8659ff | 2014-12-04 14:50:28 -0700 | [diff] [blame] | 86 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 87 | } // namespace ndn::tests |