blob: c8aa461a79cdb37d8ba28ef2c7d7d58cf8eecab3 [file] [log] [blame]
Steve DiBenedettoa8659ff2014-12-04 14:50:28 -07001/* -*- 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.
Steve DiBenedettoa8659ff2014-12-04 14:50:28 -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 */
21
22#include "transport/tcp-transport.hpp"
23#include "transport-fixture.hpp"
24
25#include "boost-test.hpp"
26
27namespace ndn {
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080028namespace tests {
Steve DiBenedettoa8659ff2014-12-04 14:50:28 -070029
Spyridon Mastorakis429634f2015-02-19 17:35:33 -080030BOOST_FIXTURE_TEST_SUITE(TransportTcpTransport, TransportFixture)
Steve DiBenedettoa8659ff2014-12-04 14:50:28 -070031
32BOOST_AUTO_TEST_CASE(GetDefaultSocketNameOk)
33{
34 initializeConfig("tests/unit-tests/transport/test-homes/tcp-transport/ok");
35
36 const auto got = TcpTransport::getDefaultSocketHostAndPort(*m_config);
37
38 BOOST_CHECK_EQUAL(got.first, "127.0.0.1");
39 BOOST_CHECK_EQUAL(got.second, "6000");
40}
41
42BOOST_AUTO_TEST_CASE(GetDefaultSocketHostAndPortBadMissingHost)
43{
44 initializeConfig("tests/unit-tests/transport/test-homes/tcp-transport/"
45 "bad-missing-host");
46
47 BOOST_CHECK_EXCEPTION(TcpTransport::getDefaultSocketHostAndPort(*m_config),
48 ConfigFile::Error,
49 [] (const ConfigFile::Error& error) {
50 return error.what() == std::string("Malformed URI: tcp://:6000");
51 });
52}
53
54BOOST_AUTO_TEST_CASE(GetDefaultSocketHostAndPortOkOmittedPort)
55{
56 initializeConfig("tests/unit-tests/transport/test-homes/tcp-transport/"
57 "ok-omitted-port");
58
59 const auto got = TcpTransport::getDefaultSocketHostAndPort(*m_config);
60
61 BOOST_CHECK_EQUAL(got.first, "127.0.0.1");
62 BOOST_CHECK_EQUAL(got.second, "6363");
63}
64
65BOOST_AUTO_TEST_CASE(GetDefaultSocketHostAndPortNameOkOmittedHostOmittedPort)
66{
67 initializeConfig("tests/unit-tests/transport/test-homes/tcp-transport/"
68 "ok-omitted-host-omitted-port");
69
70 const auto got = TcpTransport::getDefaultSocketHostAndPort(*m_config);
71
72 BOOST_CHECK_EQUAL(got.first, "localhost");
73 BOOST_CHECK_EQUAL(got.second, "6363");
74}
75
76BOOST_AUTO_TEST_CASE(GetDefaultSocketHostAndPortBadWrongTransport)
77{
78 initializeConfig("tests/unit-tests/transport/test-homes/tcp-transport/"
79 "bad-wrong-transport");
80
81 BOOST_CHECK_EXCEPTION(TcpTransport::getDefaultSocketHostAndPort(*m_config),
82 Transport::Error,
83 [] (const Transport::Error& error) {
84 return error.what() == std::string("Cannot create TcpTransport "
85 "from \"unix\" URI");
86 });
87}
88
89BOOST_AUTO_TEST_CASE(GetDefaultSocketHostAndPortBadMalformedUri)
90{
91 initializeConfig("tests/unit-tests/transport/test-homes/tcp-transport/"
92 "bad-malformed-uri");
93
94 BOOST_CHECK_EXCEPTION(TcpTransport::getDefaultSocketHostAndPort(*m_config),
95 ConfigFile::Error,
96 [] (const ConfigFile::Error& error) {
97 return error.what() == std::string("Malformed URI: tcp");
98 });
99}
100
101BOOST_AUTO_TEST_SUITE_END()
102
Spyridon Mastorakis429634f2015-02-19 17:35:33 -0800103} // namespace tests
Steve DiBenedettoa8659ff2014-12-04 14:50:28 -0700104} // namespace ndn