blob: 1c33122cd201c6e93b76c76817583c1a7e6daf9f [file] [log] [blame]
Junxiao Shicde37ad2015-12-24 01:02:05 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Eric Newberry42602412016-08-27 09:33:18 -07003 * Copyright (c) 2014-2016, 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 Shicde37ad2015-12-24 01:02:05 -070029#include "tests/limited-io.hpp"
30
31namespace nfd {
32namespace tests {
33
34#define CHANNEL_PATH1 "unix-stream-test.1.sock"
35#define CHANNEL_PATH2 "unix-stream-test.2.sock"
36
37BOOST_AUTO_TEST_SUITE(Face)
38BOOST_FIXTURE_TEST_SUITE(TestUnixStreamFactory, BaseFixture)
39
40using nfd::Face;
41
42BOOST_AUTO_TEST_CASE(ChannelMap)
43{
44 UnixStreamFactory factory;
45
46 shared_ptr<UnixStreamChannel> channel1 = factory.createChannel(CHANNEL_PATH1);
47 shared_ptr<UnixStreamChannel> channel1a = factory.createChannel(CHANNEL_PATH1);
48 BOOST_CHECK_EQUAL(channel1, channel1a);
49 std::string channel1uri = channel1->getUri().toString();
50 BOOST_CHECK_EQUAL(channel1uri.find("unix:///"), 0); // third '/' is the path separator
51 BOOST_CHECK_EQUAL(channel1uri.rfind(CHANNEL_PATH1),
52 channel1uri.size() - std::string(CHANNEL_PATH1).size());
53
54 shared_ptr<UnixStreamChannel> channel2 = factory.createChannel(CHANNEL_PATH2);
55 BOOST_CHECK_NE(channel1, channel2);
56}
57
58BOOST_AUTO_TEST_CASE(GetChannels)
59{
60 UnixStreamFactory factory;
61 BOOST_CHECK(factory.getChannels().empty());
62
63 std::vector<shared_ptr<const Channel>> expectedChannels;
64 expectedChannels.push_back(factory.createChannel(CHANNEL_PATH1));
65 expectedChannels.push_back(factory.createChannel(CHANNEL_PATH2));
66
67 for (const auto& channel : factory.getChannels()) {
68 auto pos = std::find(expectedChannels.begin(), expectedChannels.end(), channel);
69 BOOST_REQUIRE(pos != expectedChannels.end());
70 expectedChannels.erase(pos);
71 }
72
73 BOOST_CHECK_EQUAL(expectedChannels.size(), 0);
74}
75
76BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate)
77{
78 UnixStreamFactory factory;
79
Eric Newberry42602412016-08-27 09:33:18 -070080 createFace(factory,
81 FaceUri("unix:///var/run/nfd.sock"),
82 ndn::nfd::FACE_PERSISTENCY_PERMANENT,
83 {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"});
Junxiao Shicde37ad2015-12-24 01:02:05 -070084
Eric Newberry42602412016-08-27 09:33:18 -070085 createFace(factory,
86 FaceUri("unix:///var/run/nfd.sock"),
87 ndn::nfd::FACE_PERSISTENCY_ON_DEMAND,
88 {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"});
Junxiao Shicde37ad2015-12-24 01:02:05 -070089
Eric Newberry42602412016-08-27 09:33:18 -070090 createFace(factory,
91 FaceUri("unix:///var/run/nfd.sock"),
92 ndn::nfd::FACE_PERSISTENCY_PERSISTENT,
93 {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"});
Junxiao Shicde37ad2015-12-24 01:02:05 -070094}
95
96BOOST_AUTO_TEST_SUITE_END() // TestUnixStreamFactory
97BOOST_AUTO_TEST_SUITE_END() // Face
98
99} // namespace tests
100} // namespace nfd