Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 406deb5 | 2017-01-05 20:07:44 +0000 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, Regents of the University of California, |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 4 | * 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 Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 28 | #include "factory-test-common.hpp" |
Junxiao Shi | 406deb5 | 2017-01-05 20:07:44 +0000 | [diff] [blame] | 29 | #include "face-system-fixture.hpp" |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 30 | #include "tests/limited-io.hpp" |
| 31 | |
| 32 | namespace nfd { |
Junxiao Shi | 406deb5 | 2017-01-05 20:07:44 +0000 | [diff] [blame] | 33 | namespace face { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 34 | namespace tests { |
| 35 | |
Junxiao Shi | 406deb5 | 2017-01-05 20:07:44 +0000 | [diff] [blame] | 36 | using namespace nfd::tests; |
| 37 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 38 | #define CHANNEL_PATH1 "unix-stream-test.1.sock" |
| 39 | #define CHANNEL_PATH2 "unix-stream-test.2.sock" |
| 40 | |
| 41 | BOOST_AUTO_TEST_SUITE(Face) |
| 42 | BOOST_FIXTURE_TEST_SUITE(TestUnixStreamFactory, BaseFixture) |
| 43 | |
| 44 | using nfd::Face; |
| 45 | |
Junxiao Shi | 406deb5 | 2017-01-05 20:07:44 +0000 | [diff] [blame] | 46 | BOOST_FIXTURE_TEST_SUITE(ProcessConfig, FaceSystemFixture) |
| 47 | |
| 48 | BOOST_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 Shi | 1b65ca1 | 2017-01-21 23:04:41 +0000 | [diff] [blame] | 60 | parseConfig(CONFIG, true); |
| 61 | parseConfig(CONFIG, false); |
Junxiao Shi | 406deb5 | 2017-01-05 20:07:44 +0000 | [diff] [blame] | 62 | |
| 63 | auto& factory = this->getFactoryById<UnixStreamFactory>("unix"); |
| 64 | BOOST_CHECK_EQUAL(factory.getChannels().size(), 1); |
| 65 | } |
| 66 | |
| 67 | BOOST_AUTO_TEST_CASE(Omitted) |
| 68 | { |
| 69 | const std::string CONFIG = R"CONFIG( |
| 70 | face_system |
| 71 | { |
| 72 | } |
| 73 | )CONFIG"; |
| 74 | |
Junxiao Shi | 1b65ca1 | 2017-01-21 23:04:41 +0000 | [diff] [blame] | 75 | parseConfig(CONFIG, true); |
| 76 | parseConfig(CONFIG, false); |
Junxiao Shi | 406deb5 | 2017-01-05 20:07:44 +0000 | [diff] [blame] | 77 | |
| 78 | auto& factory = this->getFactoryById<UnixStreamFactory>("unix"); |
| 79 | BOOST_CHECK_EQUAL(factory.getChannels().size(), 0); |
| 80 | } |
| 81 | |
| 82 | BOOST_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 | |
| 98 | BOOST_AUTO_TEST_SUITE_END() // ProcessConfig |
| 99 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 100 | BOOST_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 | |
| 116 | BOOST_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 | |
| 134 | BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate) |
| 135 | { |
| 136 | UnixStreamFactory factory; |
| 137 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 138 | createFace(factory, |
| 139 | FaceUri("unix:///var/run/nfd.sock"), |
| 140 | ndn::nfd::FACE_PERSISTENCY_PERMANENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 141 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 142 | {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 143 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 144 | createFace(factory, |
| 145 | FaceUri("unix:///var/run/nfd.sock"), |
| 146 | ndn::nfd::FACE_PERSISTENCY_ON_DEMAND, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 147 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 148 | {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 149 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 150 | createFace(factory, |
| 151 | FaceUri("unix:///var/run/nfd.sock"), |
| 152 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 153 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 154 | {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | BOOST_AUTO_TEST_SUITE_END() // TestUnixStreamFactory |
| 158 | BOOST_AUTO_TEST_SUITE_END() // Face |
| 159 | |
| 160 | } // namespace tests |
Junxiao Shi | 406deb5 | 2017-01-05 20:07:44 +0000 | [diff] [blame] | 161 | } // namespace face |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 162 | } // namespace nfd |