blob: 8d0e484560430e6671447c14965d7bf91a58766c [file] [log] [blame]
Junxiao Shicde37ad2015-12-24 01:02:05 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Junxiao Shi0ba6d642017-07-17 00:53:22 +00002/*
Junxiao Shi406deb52017-01-05 20:07:44 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Junxiao Shicde37ad2015-12-24 01:02:05 -07004 * 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/unix-stream-factory.hpp"
27
Junxiao Shi406deb52017-01-05 20:07:44 +000028#include "face-system-fixture.hpp"
Davide Pesaventob15276f2017-07-15 16:27:13 -040029#include "factory-test-common.hpp"
Junxiao Shicde37ad2015-12-24 01:02:05 -070030
31namespace nfd {
Junxiao Shi406deb52017-01-05 20:07:44 +000032namespace face {
Junxiao Shicde37ad2015-12-24 01:02:05 -070033namespace tests {
34
35#define CHANNEL_PATH1 "unix-stream-test.1.sock"
36#define CHANNEL_PATH2 "unix-stream-test.2.sock"
37
Junxiao Shi0ba6d642017-07-17 00:53:22 +000038using UnixStreamFactoryFixture = FaceSystemFactoryFixture<UnixStreamFactory>;
39
Junxiao Shicde37ad2015-12-24 01:02:05 -070040BOOST_AUTO_TEST_SUITE(Face)
Junxiao Shi0ba6d642017-07-17 00:53:22 +000041BOOST_FIXTURE_TEST_SUITE(TestUnixStreamFactory, UnixStreamFactoryFixture)
Junxiao Shicde37ad2015-12-24 01:02:05 -070042
43using nfd::Face;
44
Junxiao Shi0ba6d642017-07-17 00:53:22 +000045BOOST_AUTO_TEST_SUITE(ProcessConfig)
Junxiao Shi406deb52017-01-05 20:07:44 +000046
47BOOST_AUTO_TEST_CASE(Normal)
48{
49 const std::string CONFIG = R"CONFIG(
50 face_system
51 {
52 unix
53 {
54 path /tmp/nfd.sock
55 }
56 }
57 )CONFIG";
58
Junxiao Shi1b65ca12017-01-21 23:04:41 +000059 parseConfig(CONFIG, true);
60 parseConfig(CONFIG, false);
Junxiao Shi406deb52017-01-05 20:07:44 +000061
62 auto& factory = this->getFactoryById<UnixStreamFactory>("unix");
63 BOOST_CHECK_EQUAL(factory.getChannels().size(), 1);
64}
65
66BOOST_AUTO_TEST_CASE(Omitted)
67{
68 const std::string CONFIG = R"CONFIG(
69 face_system
70 {
71 }
72 )CONFIG";
73
Junxiao Shi1b65ca12017-01-21 23:04:41 +000074 parseConfig(CONFIG, true);
75 parseConfig(CONFIG, false);
Junxiao Shi406deb52017-01-05 20:07:44 +000076
77 auto& factory = this->getFactoryById<UnixStreamFactory>("unix");
78 BOOST_CHECK_EQUAL(factory.getChannels().size(), 0);
79}
80
81BOOST_AUTO_TEST_CASE(UnknownOption)
82{
83 const std::string CONFIG = R"CONFIG(
84 face_system
85 {
86 unix
87 {
88 hello
89 }
90 }
91 )CONFIG";
92
93 BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error);
94 BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error);
95}
96
97BOOST_AUTO_TEST_SUITE_END() // ProcessConfig
98
Davide Pesaventob15276f2017-07-15 16:27:13 -040099BOOST_AUTO_TEST_CASE(GetChannels)
Junxiao Shicde37ad2015-12-24 01:02:05 -0700100{
Davide Pesaventob15276f2017-07-15 16:27:13 -0400101 BOOST_CHECK_EQUAL(factory.getChannels().empty(), true);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700102
Davide Pesaventob15276f2017-07-15 16:27:13 -0400103 std::set<std::string> expected;
104 expected.insert(factory.createChannel(CHANNEL_PATH1)->getUri().toString());
105 expected.insert(factory.createChannel(CHANNEL_PATH2)->getUri().toString());
106 checkChannelListEqual(factory, expected);
107}
108
109BOOST_AUTO_TEST_CASE(CreateChannel)
110{
111 auto channel1 = factory.createChannel(CHANNEL_PATH1);
112 auto channel1a = factory.createChannel(CHANNEL_PATH1);
113 BOOST_CHECK_EQUAL(channel1, channel1a);
114 std::string uri = channel1->getUri().toString();
115 BOOST_CHECK_EQUAL(uri.find("unix:///"), 0); // third '/' is the path separator
116 BOOST_CHECK_EQUAL(uri.rfind(CHANNEL_PATH1),
117 uri.size() - std::string(CHANNEL_PATH1).size());
118
119 auto channel2 = factory.createChannel(CHANNEL_PATH2);
Junxiao Shicde37ad2015-12-24 01:02:05 -0700120 BOOST_CHECK_NE(channel1, channel2);
121}
122
Davide Pesaventob15276f2017-07-15 16:27:13 -0400123BOOST_AUTO_TEST_CASE(UnsupportedCreateFace)
Junxiao Shicde37ad2015-12-24 01:02:05 -0700124{
Eric Newberry42602412016-08-27 09:33:18 -0700125 createFace(factory,
126 FaceUri("unix:///var/run/nfd.sock"),
Eric Newberry78e32b02017-04-01 14:34:44 +0000127 {},
Eric Newberry42602412016-08-27 09:33:18 -0700128 ndn::nfd::FACE_PERSISTENCY_PERMANENT,
Eric Newberryf40551a2016-09-05 15:41:16 -0700129 false,
Eric Newberry2642cd22017-07-13 21:34:53 -0400130 false,
Eric Newberry42602412016-08-27 09:33:18 -0700131 {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700132
Eric Newberry42602412016-08-27 09:33:18 -0700133 createFace(factory,
134 FaceUri("unix:///var/run/nfd.sock"),
Eric Newberry78e32b02017-04-01 14:34:44 +0000135 {},
Eric Newberry42602412016-08-27 09:33:18 -0700136 ndn::nfd::FACE_PERSISTENCY_ON_DEMAND,
Eric Newberryf40551a2016-09-05 15:41:16 -0700137 false,
Eric Newberry2642cd22017-07-13 21:34:53 -0400138 false,
Eric Newberry42602412016-08-27 09:33:18 -0700139 {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700140
Eric Newberry42602412016-08-27 09:33:18 -0700141 createFace(factory,
142 FaceUri("unix:///var/run/nfd.sock"),
Eric Newberry78e32b02017-04-01 14:34:44 +0000143 {},
Eric Newberry42602412016-08-27 09:33:18 -0700144 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Eric Newberryf40551a2016-09-05 15:41:16 -0700145 false,
Eric Newberry2642cd22017-07-13 21:34:53 -0400146 false,
Eric Newberry42602412016-08-27 09:33:18 -0700147 {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700148}
149
150BOOST_AUTO_TEST_SUITE_END() // TestUnixStreamFactory
151BOOST_AUTO_TEST_SUITE_END() // Face
152
153} // namespace tests
Junxiao Shi406deb52017-01-05 20:07:44 +0000154} // namespace face
Junxiao Shicde37ad2015-12-24 01:02:05 -0700155} // namespace nfd