Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 0ba6d64 | 2017-07-17 00:53:22 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | 15b5505 | 2018-01-27 19:09:28 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2018, 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/websocket-factory.hpp" |
| 27 | |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 28 | #include "face-system-fixture.hpp" |
Davide Pesavento | b15276f | 2017-07-15 16:27:13 -0400 | [diff] [blame] | 29 | #include "factory-test-common.hpp" |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 30 | |
Davide Pesavento | 4b89a6e | 2017-10-07 15:29:50 -0400 | [diff] [blame] | 31 | #include <ndn-cxx/net/address-converter.hpp> |
| 32 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 33 | namespace nfd { |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 34 | namespace face { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 35 | namespace tests { |
| 36 | |
Davide Pesavento | 4b89a6e | 2017-10-07 15:29:50 -0400 | [diff] [blame] | 37 | class WebSocketFactoryFixture : public FaceSystemFactoryFixture<WebSocketFactory> |
| 38 | { |
| 39 | protected: |
| 40 | shared_ptr<WebSocketChannel> |
| 41 | createChannel(const std::string& localIp, const std::string& localPort) |
| 42 | { |
| 43 | websocket::Endpoint endpoint(ndn::ip::addressFromString(localIp), |
| 44 | boost::lexical_cast<uint16_t>(localPort)); |
| 45 | return factory.createChannel(endpoint); |
| 46 | } |
| 47 | }; |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 48 | |
Junxiao Shi | 0ba6d64 | 2017-07-17 00:53:22 +0000 | [diff] [blame] | 49 | BOOST_AUTO_TEST_SUITE(Face) |
| 50 | BOOST_FIXTURE_TEST_SUITE(TestWebSocketFactory, WebSocketFactoryFixture) |
| 51 | |
| 52 | BOOST_AUTO_TEST_SUITE(ProcessConfig) |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 53 | |
Davide Pesavento | 494a955 | 2018-02-04 22:16:05 -0500 | [diff] [blame] | 54 | BOOST_AUTO_TEST_CASE(Defaults) |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 55 | { |
| 56 | const std::string CONFIG = R"CONFIG( |
| 57 | face_system |
| 58 | { |
| 59 | websocket |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 60 | } |
| 61 | )CONFIG"; |
| 62 | |
Junxiao Shi | 1b65ca1 | 2017-01-21 23:04:41 +0000 | [diff] [blame] | 63 | parseConfig(CONFIG, true); |
| 64 | parseConfig(CONFIG, false); |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 65 | |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 66 | checkChannelListEqual(factory, {"ws://[::]:9696"}); |
Davide Pesavento | 494a955 | 2018-02-04 22:16:05 -0500 | [diff] [blame] | 67 | auto channels = factory.getChannels(); |
| 68 | BOOST_CHECK(std::all_of(channels.begin(), channels.end(), |
| 69 | [] (const shared_ptr<const Channel>& ch) { return ch->isListening(); })); |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 70 | } |
| 71 | |
Davide Pesavento | 494a955 | 2018-02-04 22:16:05 -0500 | [diff] [blame] | 72 | BOOST_AUTO_TEST_CASE(DisableListen) |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 73 | { |
| 74 | const std::string CONFIG = R"CONFIG( |
| 75 | face_system |
| 76 | { |
| 77 | websocket |
| 78 | { |
Davide Pesavento | 494a955 | 2018-02-04 22:16:05 -0500 | [diff] [blame] | 79 | listen no |
| 80 | port 7001 |
| 81 | } |
| 82 | } |
| 83 | )CONFIG"; |
| 84 | |
| 85 | parseConfig(CONFIG, true); |
| 86 | parseConfig(CONFIG, false); |
| 87 | |
| 88 | BOOST_CHECK_EQUAL(factory.getChannels().size(), 0); |
| 89 | } |
| 90 | |
| 91 | BOOST_AUTO_TEST_CASE(DisableV4) |
| 92 | { |
| 93 | const std::string CONFIG = R"CONFIG( |
| 94 | face_system |
| 95 | { |
| 96 | websocket |
| 97 | { |
| 98 | port 7001 |
| 99 | enable_v4 no |
| 100 | enable_v6 yes |
| 101 | } |
| 102 | } |
| 103 | )CONFIG"; |
| 104 | |
| 105 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 106 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 107 | } |
| 108 | |
| 109 | BOOST_AUTO_TEST_CASE(DisableV6) |
| 110 | { |
| 111 | const std::string CONFIG = R"CONFIG( |
| 112 | face_system |
| 113 | { |
| 114 | websocket |
| 115 | { |
| 116 | port 7001 |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 117 | enable_v4 yes |
| 118 | enable_v6 no |
| 119 | } |
| 120 | } |
| 121 | )CONFIG"; |
| 122 | |
Junxiao Shi | 1b65ca1 | 2017-01-21 23:04:41 +0000 | [diff] [blame] | 123 | parseConfig(CONFIG, true); |
| 124 | parseConfig(CONFIG, false); |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 125 | |
Davide Pesavento | 494a955 | 2018-02-04 22:16:05 -0500 | [diff] [blame] | 126 | checkChannelListEqual(factory, {"ws://0.0.0.0:7001"}); |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | BOOST_AUTO_TEST_CASE(ChangeEndpoint) |
| 130 | { |
| 131 | const std::string CONFIG1 = R"CONFIG( |
| 132 | face_system |
| 133 | { |
| 134 | websocket |
| 135 | { |
| 136 | port 9001 |
| 137 | } |
| 138 | } |
| 139 | )CONFIG"; |
| 140 | |
Junxiao Shi | 1b65ca1 | 2017-01-21 23:04:41 +0000 | [diff] [blame] | 141 | parseConfig(CONFIG1, false); |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 142 | checkChannelListEqual(factory, {"ws://[::]:9001"}); |
| 143 | |
| 144 | const std::string CONFIG2 = R"CONFIG( |
| 145 | face_system |
| 146 | { |
| 147 | websocket |
| 148 | { |
| 149 | port 9002 |
| 150 | } |
| 151 | } |
| 152 | )CONFIG"; |
| 153 | |
Junxiao Shi | 1b65ca1 | 2017-01-21 23:04:41 +0000 | [diff] [blame] | 154 | parseConfig(CONFIG2, false); |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 155 | checkChannelListEqual(factory, {"ws://[::]:9001", "ws://[::]:9002"}); |
| 156 | } |
| 157 | |
Davide Pesavento | 494a955 | 2018-02-04 22:16:05 -0500 | [diff] [blame] | 158 | BOOST_AUTO_TEST_CASE(Omitted) |
| 159 | { |
| 160 | const std::string CONFIG = R"CONFIG( |
| 161 | face_system |
| 162 | { |
| 163 | } |
| 164 | )CONFIG"; |
| 165 | |
| 166 | parseConfig(CONFIG, true); |
| 167 | parseConfig(CONFIG, false); |
| 168 | |
| 169 | BOOST_CHECK_EQUAL(factory.getChannels().size(), 0); |
| 170 | } |
| 171 | |
| 172 | BOOST_AUTO_TEST_CASE(AllDisabled) |
| 173 | { |
| 174 | const std::string CONFIG = R"CONFIG( |
| 175 | face_system |
| 176 | { |
| 177 | websocket |
| 178 | { |
| 179 | enable_v4 no |
| 180 | enable_v6 no |
| 181 | } |
| 182 | } |
| 183 | )CONFIG"; |
| 184 | |
| 185 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 186 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 187 | } |
| 188 | |
| 189 | BOOST_AUTO_TEST_CASE(BadListen) |
| 190 | { |
| 191 | const std::string CONFIG = R"CONFIG( |
| 192 | face_system |
| 193 | { |
| 194 | websocket |
| 195 | { |
| 196 | listen hello |
| 197 | } |
| 198 | } |
| 199 | )CONFIG"; |
| 200 | |
| 201 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 202 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 203 | } |
| 204 | |
| 205 | BOOST_AUTO_TEST_CASE_EXPECTED_FAILURES(BadPort, 2) // Bug #4489 |
| 206 | BOOST_AUTO_TEST_CASE(BadPort) |
| 207 | { |
| 208 | // not a number |
| 209 | const std::string CONFIG1 = R"CONFIG( |
| 210 | face_system |
| 211 | { |
| 212 | websocket |
| 213 | { |
| 214 | port hello |
| 215 | } |
| 216 | } |
| 217 | )CONFIG"; |
| 218 | |
| 219 | BOOST_CHECK_THROW(parseConfig(CONFIG1, true), ConfigFile::Error); |
| 220 | BOOST_CHECK_THROW(parseConfig(CONFIG1, false), ConfigFile::Error); |
| 221 | |
| 222 | // negative number |
| 223 | const std::string CONFIG2 = R"CONFIG( |
| 224 | face_system |
| 225 | { |
| 226 | websocket |
| 227 | { |
| 228 | port -1 |
| 229 | } |
| 230 | } |
| 231 | )CONFIG"; |
| 232 | |
| 233 | BOOST_CHECK_THROW(parseConfig(CONFIG2, true), ConfigFile::Error); |
| 234 | BOOST_CHECK_THROW(parseConfig(CONFIG2, false), ConfigFile::Error); |
| 235 | |
| 236 | // out of range |
| 237 | const std::string CONFIG3 = R"CONFIG( |
| 238 | face_system |
| 239 | { |
| 240 | websocket |
| 241 | { |
| 242 | port 65536 |
| 243 | } |
| 244 | } |
| 245 | )CONFIG"; |
| 246 | |
| 247 | BOOST_CHECK_THROW(parseConfig(CONFIG3, true), ConfigFile::Error); |
| 248 | BOOST_CHECK_THROW(parseConfig(CONFIG3, false), ConfigFile::Error); |
| 249 | } |
| 250 | |
| 251 | BOOST_AUTO_TEST_CASE(UnknownOption) |
| 252 | { |
| 253 | const std::string CONFIG = R"CONFIG( |
| 254 | face_system |
| 255 | { |
| 256 | websocket |
| 257 | { |
| 258 | hello |
| 259 | } |
| 260 | } |
| 261 | )CONFIG"; |
| 262 | |
| 263 | BOOST_CHECK_THROW(parseConfig(CONFIG, true), ConfigFile::Error); |
| 264 | BOOST_CHECK_THROW(parseConfig(CONFIG, false), ConfigFile::Error); |
| 265 | } |
| 266 | |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 267 | BOOST_AUTO_TEST_SUITE_END() // ProcessConfig |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 268 | |
| 269 | BOOST_AUTO_TEST_CASE(GetChannels) |
| 270 | { |
Davide Pesavento | b15276f | 2017-07-15 16:27:13 -0400 | [diff] [blame] | 271 | BOOST_CHECK_EQUAL(factory.getChannels().empty(), true); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 272 | |
Davide Pesavento | b15276f | 2017-07-15 16:27:13 -0400 | [diff] [blame] | 273 | std::set<std::string> expected; |
Davide Pesavento | 4b89a6e | 2017-10-07 15:29:50 -0400 | [diff] [blame] | 274 | expected.insert(createChannel("127.0.0.1", "20070")->getUri().toString()); |
| 275 | expected.insert(createChannel("127.0.0.1", "20071")->getUri().toString()); |
| 276 | expected.insert(createChannel("::1", "20071")->getUri().toString()); |
Davide Pesavento | b15276f | 2017-07-15 16:27:13 -0400 | [diff] [blame] | 277 | checkChannelListEqual(factory, expected); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 278 | } |
| 279 | |
Davide Pesavento | b15276f | 2017-07-15 16:27:13 -0400 | [diff] [blame] | 280 | BOOST_AUTO_TEST_CASE(UnsupportedCreateFace) |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 281 | { |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 282 | createFace(factory, |
| 283 | FaceUri("ws://127.0.0.1:20070"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 284 | {}, |
Eric Newberry | 0c3e57b | 2018-01-25 20:54:46 -0700 | [diff] [blame] | 285 | {ndn::nfd::FACE_PERSISTENCY_ON_DEMAND, {}, {}, false, false, false}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 286 | {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 287 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 288 | createFace(factory, |
| 289 | FaceUri("ws://127.0.0.1:20070"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 290 | {}, |
Eric Newberry | 0c3e57b | 2018-01-25 20:54:46 -0700 | [diff] [blame] | 291 | {ndn::nfd::FACE_PERSISTENCY_PERSISTENT, {}, {}, false, false, false}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 292 | {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 293 | |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 294 | createFace(factory, |
| 295 | FaceUri("ws://127.0.0.1:20070"), |
Eric Newberry | 78e32b0 | 2017-04-01 14:34:44 +0000 | [diff] [blame] | 296 | {}, |
Eric Newberry | 0c3e57b | 2018-01-25 20:54:46 -0700 | [diff] [blame] | 297 | {ndn::nfd::FACE_PERSISTENCY_PERMANENT, {}, {}, false, false, false}, |
Eric Newberry | 4260241 | 2016-08-27 09:33:18 -0700 | [diff] [blame] | 298 | {CreateFaceExpectedResult::FAILURE, 406, "Unsupported protocol"}); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | BOOST_AUTO_TEST_SUITE_END() // TestWebSocketFactory |
| 302 | BOOST_AUTO_TEST_SUITE_END() // Face |
| 303 | |
| 304 | } // namespace tests |
Junxiao Shi | 3409cd3 | 2017-01-18 15:31:27 +0000 | [diff] [blame] | 305 | } // namespace face |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 306 | } // namespace nfd |