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 | |
| 36 | #define CHANNEL_PATH1 "unix-stream-test.1.sock" |
| 37 | #define CHANNEL_PATH2 "unix-stream-test.2.sock" |
| 38 | |
| 39 | BOOST_AUTO_TEST_SUITE(Face) |
| 40 | BOOST_FIXTURE_TEST_SUITE(TestUnixStreamFactory, BaseFixture) |
| 41 | |
| 42 | using nfd::Face; |
| 43 | |
Junxiao Shi | 406deb5 | 2017-01-05 20:07:44 +0000 | [diff] [blame] | 44 | BOOST_FIXTURE_TEST_SUITE(ProcessConfig, FaceSystemFixture) |
| 45 | |
| 46 | BOOST_AUTO_TEST_CASE(Normal) |
| 47 | { |
| 48 | const std::string CONFIG = R"CONFIG( |
| 49 | face_system |
| 50 | { |
| 51 | unix |
| 52 | { |
| 53 | path /tmp/nfd.sock |
| 54 | } |
| 55 | } |
| 56 | )CONFIG"; |
| 57 | |
Junxiao Shi | 1b65ca1 | 2017-01-21 23:04:41 +0000 | [diff] [blame] | 58 | parseConfig(CONFIG, true); |
| 59 | parseConfig(CONFIG, false); |
Junxiao Shi | 406deb5 | 2017-01-05 20:07:44 +0000 | [diff] [blame] | 60 | |
| 61 | auto& factory = this->getFactoryById<UnixStreamFactory>("unix"); |
| 62 | BOOST_CHECK_EQUAL(factory.getChannels().size(), 1); |
| 63 | } |
| 64 | |
| 65 | BOOST_AUTO_TEST_CASE(Omitted) |
| 66 | { |
| 67 | const std::string CONFIG = R"CONFIG( |
| 68 | face_system |
| 69 | { |
| 70 | } |
| 71 | )CONFIG"; |
| 72 | |
Junxiao Shi | 1b65ca1 | 2017-01-21 23:04:41 +0000 | [diff] [blame] | 73 | parseConfig(CONFIG, true); |
| 74 | parseConfig(CONFIG, false); |
Junxiao Shi | 406deb5 | 2017-01-05 20:07:44 +0000 | [diff] [blame] | 75 | |
| 76 | auto& factory = this->getFactoryById<UnixStreamFactory>("unix"); |
| 77 | BOOST_CHECK_EQUAL(factory.getChannels().size(), 0); |
| 78 | } |
| 79 | |
| 80 | BOOST_AUTO_TEST_CASE(UnknownOption) |
| 81 | { |
| 82 | const std::string CONFIG = R"CONFIG( |
| 83 | face_system |
| 84 | { |
| 85 | unix |
| 86 | { |
| 87 | hello |
| 88 | } |
| 89 | } |
| 90 | )CONFIG"; |
| 91 | |
| 92 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 93 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 94 | } |
| 95 | |
| 96 | BOOST_AUTO_TEST_SUITE_END() // ProcessConfig |
| 97 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 98 | BOOST_AUTO_TEST_CASE(ChannelMap) |
| 99 | { |
| 100 | UnixStreamFactory factory; |
| 101 | |
| 102 | shared_ptr<UnixStreamChannel> channel1 = factory.createChannel(CHANNEL_PATH1); |
| 103 | shared_ptr<UnixStreamChannel> channel1a = factory.createChannel(CHANNEL_PATH1); |
| 104 | BOOST_CHECK_EQUAL(channel1, channel1a); |
| 105 | std::string channel1uri = channel1->getUri().toString(); |
| 106 | BOOST_CHECK_EQUAL(channel1uri.find("unix:///"), 0); // third '/' is the path separator |
| 107 | BOOST_CHECK_EQUAL(channel1uri.rfind(CHANNEL_PATH1), |
| 108 | channel1uri.size() - std::string(CHANNEL_PATH1).size()); |
| 109 | |
| 110 | shared_ptr<UnixStreamChannel> channel2 = factory.createChannel(CHANNEL_PATH2); |
| 111 | BOOST_CHECK_NE(channel1, channel2); |
| 112 | } |
| 113 | |
| 114 | BOOST_AUTO_TEST_CASE(GetChannels) |
| 115 | { |
| 116 | UnixStreamFactory factory; |
| 117 | BOOST_CHECK(factory.getChannels().empty()); |
| 118 | |
| 119 | std::vector<shared_ptr<const Channel>> expectedChannels; |
| 120 | expectedChannels.push_back(factory.createChannel(CHANNEL_PATH1)); |
| 121 | expectedChannels.push_back(factory.createChannel(CHANNEL_PATH2)); |
| 122 | |
| 123 | for (const auto& channel : factory.getChannels()) { |
| 124 | auto pos = std::find(expectedChannels.begin(), expectedChannels.end(), channel); |
| 125 | BOOST_REQUIRE(pos != expectedChannels.end()); |
| 126 | expectedChannels.erase(pos); |
| 127 | } |
| 128 | |
| 129 | BOOST_CHECK_EQUAL(expectedChannels.size(), 0); |
| 130 | } |
| 131 | |
| 132 | BOOST_AUTO_TEST_CASE(UnsupportedFaceCreate) |
| 133 | { |
| 134 | UnixStreamFactory factory; |
| 135 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 136 | createFace(factory, |
| 137 | FaceUri("unix:///var/run/nfd.sock"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 138 | {}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 139 | ndn::nfd::FACE_PERSISTENCY_PERMANENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 140 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 141 | {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 142 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 143 | createFace(factory, |
| 144 | FaceUri("unix:///var/run/nfd.sock"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 145 | {}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 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"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 152 | {}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 153 | ndn::nfd::FACE_PERSISTENCY_PERSISTENT, |
Eric Newberry | f40551a | 2016-09-05 15:41:16 -0700 | [diff] [blame] | 154 | false, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 155 | {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | BOOST_AUTO_TEST_SUITE_END() // TestUnixStreamFactory |
| 159 | BOOST_AUTO_TEST_SUITE_END() // Face |
| 160 | |
| 161 | } // namespace tests |
Junxiao Shi | 406deb5 | 2017-01-05 20:07:44 +0000 | [diff] [blame] | 162 | } // namespace face |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 163 | } // namespace nfd |