blob: b0d48c718643f78c38048e2cc8e8e4a3246c4c86 [file] [log] [blame]
Junxiao Shicde37ad2015-12-24 01:02:05 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
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
Eric Newberry42602412016-08-27 09:33:18 -070028#include "factory-test-common.hpp"
Junxiao Shi406deb52017-01-05 20:07:44 +000029#include "face-system-fixture.hpp"
Junxiao Shicde37ad2015-12-24 01:02:05 -070030#include "tests/limited-io.hpp"
31
32namespace nfd {
Junxiao Shi406deb52017-01-05 20:07:44 +000033namespace face {
Junxiao Shicde37ad2015-12-24 01:02:05 -070034namespace tests {
35
Junxiao Shi406deb52017-01-05 20:07:44 +000036using namespace nfd::tests;
37
Junxiao Shicde37ad2015-12-24 01:02:05 -070038#define CHANNEL_PATH1 "unix-stream-test.1.sock"
39#define CHANNEL_PATH2 "unix-stream-test.2.sock"
40
41BOOST_AUTO_TEST_SUITE(Face)
42BOOST_FIXTURE_TEST_SUITE(TestUnixStreamFactory, BaseFixture)
43
44using nfd::Face;
45
Junxiao Shi406deb52017-01-05 20:07:44 +000046BOOST_FIXTURE_TEST_SUITE(ProcessConfig, FaceSystemFixture)
47
48BOOST_AUTO_TEST_CASE(Normal)
49{
50 const std::string CONFIG = R"CONFIG(
51 face_system
52 {
53 unix
54 {
55 path /tmp/nfd.sock
56 }
57 }
58 )CONFIG";
59
Junxiao Shi1b65ca12017-01-21 23:04:41 +000060 parseConfig(CONFIG, true);
61 parseConfig(CONFIG, false);
Junxiao Shi406deb52017-01-05 20:07:44 +000062
63 auto& factory = this->getFactoryById<UnixStreamFactory>("unix");
64 BOOST_CHECK_EQUAL(factory.getChannels().size(), 1);
65}
66
67BOOST_AUTO_TEST_CASE(Omitted)
68{
69 const std::string CONFIG = R"CONFIG(
70 face_system
71 {
72 }
73 )CONFIG";
74
Junxiao Shi1b65ca12017-01-21 23:04:41 +000075 parseConfig(CONFIG, true);
76 parseConfig(CONFIG, false);
Junxiao Shi406deb52017-01-05 20:07:44 +000077
78 auto& factory = this->getFactoryById<UnixStreamFactory>("unix");
79 BOOST_CHECK_EQUAL(factory.getChannels().size(), 0);
80}
81
82BOOST_AUTO_TEST_CASE(UnknownOption)
83{
84 const std::string CONFIG = R"CONFIG(
85 face_system
86 {
87 unix
88 {
89 hello
90 }
91 }
92 )CONFIG";
93
94 BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error);
95 BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error);
96}
97
98BOOST_AUTO_TEST_SUITE_END() // ProcessConfig
99
Junxiao Shicde37ad2015-12-24 01:02:05 -0700100BOOST_AUTO_TEST_CASE(ChannelMap)
101{
102 UnixStreamFactory factory;
103
104 shared_ptr<UnixStreamChannel> channel1 = factory.createChannel(CHANNEL_PATH1);
105 shared_ptr<UnixStreamChannel> channel1a = factory.createChannel(CHANNEL_PATH1);
106 BOOST_CHECK_EQUAL(channel1, channel1a);
107 std::string channel1uri = channel1->getUri().toString();
108 BOOST_CHECK_EQUAL(channel1uri.find("unix:///"), 0); // third '/' is the path separator
109 BOOST_CHECK_EQUAL(channel1uri.rfind(CHANNEL_PATH1),
110 channel1uri.size() - std::string(CHANNEL_PATH1).size());
111
112 shared_ptr<UnixStreamChannel> channel2 = factory.createChannel(CHANNEL_PATH2);
113 BOOST_CHECK_NE(channel1, channel2);
114}
115
116BOOST_AUTO_TEST_CASE(GetChannels)
117{
118 UnixStreamFactory factory;
119 BOOST_CHECK(factory.getChannels().empty());
120
121 std::vector<shared_ptr<const Channel>> expectedChannels;
122 expectedChannels.push_back(factory.createChannel(CHANNEL_PATH1));
123 expectedChannels.push_back(factory.createChannel(CHANNEL_PATH2));
124
125 for (const auto& channel : factory.getChannels()) {
126 auto pos = std::find(expectedChannels.begin(), expectedChannels.end(), channel);
127 BOOST_REQUIRE(pos != expectedChannels.end());
128 expectedChannels.erase(pos);
129 }
130
131 BOOST_CHECK_EQUAL(expectedChannels.size(), 0);
132}
133
134BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate)
135{
136 UnixStreamFactory factory;
137
Eric Newberry42602412016-08-27 09:33:18 -0700138 createFace(factory,
139 FaceUri("unix:///var/run/nfd.sock"),
140 ndn::nfd::FACE_PERSISTENCY_PERMANENT,
Eric Newberryf40551a2016-09-05 15:41:16 -0700141 false,
Eric Newberry42602412016-08-27 09:33:18 -0700142 {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700143
Eric Newberry42602412016-08-27 09:33:18 -0700144 createFace(factory,
145 FaceUri("unix:///var/run/nfd.sock"),
146 ndn::nfd::FACE_PERSISTENCY_ON_DEMAND,
Eric Newberryf40551a2016-09-05 15:41:16 -0700147 false,
Eric Newberry42602412016-08-27 09:33:18 -0700148 {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700149
Eric Newberry42602412016-08-27 09:33:18 -0700150 createFace(factory,
151 FaceUri("unix:///var/run/nfd.sock"),
152 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
Eric Newberryf40551a2016-09-05 15:41:16 -0700153 false,
Eric Newberry42602412016-08-27 09:33:18 -0700154 {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"});
Junxiao Shicde37ad2015-12-24 01:02:05 -0700155}
156
157BOOST_AUTO_TEST_SUITE_END() // TestUnixStreamFactory
158BOOST_AUTO_TEST_SUITE_END() // Face
159
160} // namespace tests
Junxiao Shi406deb52017-01-05 20:07:44 +0000161} // namespace face
Junxiao Shicde37ad2015-12-24 01:02:05 -0700162} // namespace nfd