Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Junxiao Shi | 909ffef | 2017-07-07 22:12:27 +0000 | [diff] [blame] | 2 | /* |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
Alexander Afanasyev | 20d2c58 | 2014-01-26 15:32:51 -0800 | [diff] [blame] | 20 | */ |
| 21 | |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 22 | #define BOOST_TEST_MODULE ndn-cxx Integrated Tests (Face) |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 23 | #include "tests/boost-test.hpp" |
Alexander Afanasyev | e6c65e2 | 2015-01-28 19:56:03 -0800 | [diff] [blame] | 24 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 25 | #include "ndn-cxx/face.hpp" |
| 26 | #include "ndn-cxx/transport/tcp-transport.hpp" |
| 27 | #include "ndn-cxx/transport/unix-transport.hpp" |
| 28 | #include "ndn-cxx/util/scheduler.hpp" |
Alexander Afanasyev | 20d2c58 | 2014-01-26 15:32:51 -0800 | [diff] [blame] | 29 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 30 | #include "tests/identity-management-fixture.hpp" |
| 31 | #include "tests/make-interest-data.hpp" |
Alexander Afanasyev | b1db7c6 | 2014-04-03 14:57:25 -0700 | [diff] [blame] | 32 | |
Junxiao Shi | cf9c6bb | 2016-07-27 02:18:19 +0000 | [diff] [blame] | 33 | #include <stdio.h> |
Alexander Afanasyev | a54d5a6 | 2017-02-11 19:01:34 -0800 | [diff] [blame] | 34 | #include <condition_variable> |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 35 | #include <mutex> |
| 36 | #include <thread> |
| 37 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 38 | #include <boost/mpl/vector.hpp> |
Junxiao Shi | cf9c6bb | 2016-07-27 02:18:19 +0000 | [diff] [blame] | 39 | |
Alexander Afanasyev | 0abb2da | 2014-01-30 18:07:57 -0800 | [diff] [blame] | 40 | namespace ndn { |
Alexander Afanasyev | 5fc795f | 2014-10-20 23:06:56 -0400 | [diff] [blame] | 41 | namespace tests { |
Alexander Afanasyev | 20d2c58 | 2014-01-26 15:32:51 -0800 | [diff] [blame] | 42 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 43 | static Name |
| 44 | makeVeryLongName(Name prefix = Name()) |
Alexander Afanasyev | e4f8c3b | 2016-06-23 16:03:48 -0700 | [diff] [blame] | 45 | { |
Eric Newberry | 0669061 | 2016-12-27 12:50:15 -0700 | [diff] [blame] | 46 | for (size_t i = 0; i <= MAX_NDN_PACKET_SIZE / 10; i++) { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 47 | prefix.append("0123456789"); |
| 48 | } |
| 49 | return prefix; |
| 50 | } |
| 51 | |
| 52 | static std::string |
| 53 | executeCommand(const std::string& cmd) |
| 54 | { |
| 55 | std::string output; |
| 56 | char buf[256]; |
| 57 | FILE* pipe = popen(cmd.data(), "r"); |
| 58 | BOOST_REQUIRE_MESSAGE(pipe != nullptr, "cannot execute '" << cmd << "'"); |
| 59 | while (fgets(buf, sizeof(buf), pipe) != nullptr) { |
| 60 | output += buf; |
| 61 | } |
| 62 | pclose(pipe); |
| 63 | return output; |
| 64 | } |
| 65 | |
| 66 | template<typename TransportType> |
| 67 | class FaceFixture : public IdentityManagementFixture |
| 68 | { |
| 69 | protected: |
| 70 | FaceFixture() |
| 71 | : face(TransportType::create(""), m_keyChain) |
| 72 | , sched(face.getIoService()) |
| 73 | { |
Eric Newberry | 0669061 | 2016-12-27 12:50:15 -0700 | [diff] [blame] | 74 | } |
Alexander Afanasyev | 49bb1fb | 2014-07-21 12:54:01 -0700 | [diff] [blame] | 75 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 76 | /** \brief Send an Interest from a secondary face |
| 77 | * \param delay scheduling delay before sending Interest |
| 78 | * \param interest the Interest |
| 79 | * \param[out] outcome the response, initially '?', 'D' for Data, 'N' for Nack, 'T' for timeout |
| 80 | * \return scheduled event id |
| 81 | */ |
| 82 | EventId |
| 83 | sendInterest(time::nanoseconds delay, const Interest& interest, char& outcome) |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 84 | { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 85 | if (face2 == nullptr) { |
| 86 | face2 = make_unique<Face>(TransportType::create(""), face.getIoService(), m_keyChain); |
| 87 | } |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 88 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 89 | outcome = '?'; |
| 90 | return sched.scheduleEvent(delay, [this, interest, &outcome] { |
| 91 | face2->expressInterest(interest, |
| 92 | [&] (const Interest&, const Data&) { outcome = 'D'; }, |
| 93 | [&] (const Interest&, const lp::Nack&) { outcome = 'N'; }, |
| 94 | [&] (const Interest&) { outcome = 'T'; }); |
| 95 | }); |
| 96 | } |
| 97 | |
| 98 | EventId |
| 99 | sendInterest(time::nanoseconds delay, const Interest& interest) |
| 100 | { |
| 101 | static char ignoredOutcome; |
| 102 | return sendInterest(delay, interest, ignoredOutcome); |
| 103 | } |
| 104 | |
| 105 | /** \brief Stop io_service after a delay |
| 106 | * \return scheduled event id |
| 107 | */ |
| 108 | EventId |
| 109 | terminateAfter(time::nanoseconds delay) |
| 110 | { |
| 111 | return sched.scheduleEvent(delay, [this] { face.getIoService().stop(); }); |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 112 | } |
Junxiao Shi | cf9c6bb | 2016-07-27 02:18:19 +0000 | [diff] [blame] | 113 | |
| 114 | protected: |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 115 | Face face; |
| 116 | Scheduler sched; |
| 117 | |
| 118 | unique_ptr<Face> face2; |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 119 | }; |
| 120 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 121 | using Transports = boost::mpl::vector<UnixTransport, TcpTransport>; |
| 122 | |
| 123 | BOOST_FIXTURE_TEST_SUITE(TestFace, FaceFixture<UnixTransport>) |
| 124 | |
| 125 | BOOST_AUTO_TEST_SUITE(Consumer) |
| 126 | |
| 127 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(ExpressInterestData, TransportType, Transports, FaceFixture<TransportType>) |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 128 | { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 129 | int nData = 0; |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 130 | this->face.expressInterest(*makeInterest("/", true), |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 131 | [&] (const Interest&, const Data&) { ++nData; }, |
| 132 | [] (const Interest&, const lp::Nack&) { BOOST_ERROR("unexpected Nack"); }, |
| 133 | [] (const Interest&) { BOOST_ERROR("unexpected timeout"); }); |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 134 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 135 | this->face.processEvents(); |
| 136 | BOOST_CHECK_EQUAL(nData, 1); |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 137 | } |
Alexander Afanasyev | 9016496 | 2014-03-06 08:29:59 +0000 | [diff] [blame] | 138 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 139 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(ExpressInterestNack, TransportType, Transports, FaceFixture<TransportType>) |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 140 | { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 141 | int nNacks = 0; |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 142 | this->face.expressInterest(*makeInterest("/localhost/non-existent-should-nack"), |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 143 | [] (const Interest&, const Data&) { BOOST_ERROR("unexpected Data"); }, |
| 144 | [&] (const Interest&, const lp::Nack&) { ++nNacks; }, |
| 145 | [] (const Interest&) { BOOST_ERROR("unexpected timeout"); }); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 146 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 147 | this->face.processEvents(); |
| 148 | BOOST_CHECK_EQUAL(nNacks, 1); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 151 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(ExpressInterestTimeout, TransportType, Transports, FaceFixture<TransportType>) |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 152 | { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 153 | // add route toward null face so Interest would timeout instead of getting Nacked |
| 154 | executeCommand("nfdc route add /localhost/non-existent-should-timeout null://"); |
| 155 | std::this_thread::sleep_for(std::chrono::milliseconds(200)); // wait for FIB update to take effect |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 156 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 157 | int nTimeouts = 0; |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 158 | this->face.expressInterest(*makeInterest("/localhost/non-existent-should-timeout", false, 1_s), |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 159 | [] (const Interest&, const Data&) { BOOST_ERROR("unexpected Data"); }, |
| 160 | [] (const Interest&, const lp::Nack&) { BOOST_ERROR("unexpected Nack"); }, |
| 161 | [&] (const Interest&) { ++nTimeouts; }); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 162 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 163 | this->face.processEvents(); |
| 164 | BOOST_CHECK_EQUAL(nTimeouts, 1); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 167 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(OversizedInterest, TransportType, Transports, FaceFixture<TransportType>) |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 168 | { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 169 | BOOST_CHECK_THROW(do { |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 170 | this->face.expressInterest(*makeInterest(makeVeryLongName()), nullptr, nullptr, nullptr); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 171 | this->face.processEvents(); |
| 172 | } while (false), Face::OversizedPacketError); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 173 | } |
Alexander Afanasyev | 5fc795f | 2014-10-20 23:06:56 -0400 | [diff] [blame] | 174 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 175 | BOOST_AUTO_TEST_SUITE_END() // Consumer |
| 176 | |
| 177 | BOOST_AUTO_TEST_SUITE(Producer) |
| 178 | |
| 179 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(RegisterUnregisterPrefix, TransportType, Transports, FaceFixture<TransportType>) |
| 180 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 181 | this->terminateAfter(4_s); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 182 | |
| 183 | int nRegSuccess = 0, nUnregSuccess = 0; |
| 184 | auto id = this->face.registerPrefix("/Hello/World", |
| 185 | [&] (const Name&) { ++nRegSuccess; }, |
| 186 | [] (const Name&, const std::string& msg) { BOOST_ERROR("unexpected register prefix failure: " << msg); }); |
| 187 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 188 | this->sched.scheduleEvent(1_s, [&nRegSuccess] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 189 | BOOST_CHECK_EQUAL(nRegSuccess, 1); |
| 190 | std::string output = executeCommand("nfdc route list | grep /Hello/World"); |
| 191 | BOOST_CHECK(!output.empty()); |
| 192 | }); |
| 193 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 194 | this->sched.scheduleEvent(2_s, [this, id, &nUnregSuccess] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 195 | this->face.unregisterPrefix(id, |
| 196 | [&] { ++nUnregSuccess; }, |
| 197 | [] (const std::string& msg) { BOOST_ERROR("unexpected unregister prefix failure: " << msg); }); |
| 198 | }); |
| 199 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 200 | this->sched.scheduleEvent(3_s, [&nUnregSuccess] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 201 | BOOST_CHECK_EQUAL(nUnregSuccess, 1); |
| 202 | |
| 203 | // Boost.Test would fail if a child process exits with non-zero. http://stackoverflow.com/q/5325202 |
| 204 | std::string output = executeCommand("nfdc route list | grep /Hello/World || true"); |
| 205 | BOOST_CHECK(output.empty()); |
| 206 | }); |
| 207 | |
| 208 | this->face.processEvents(); |
| 209 | } |
| 210 | |
| 211 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(RegularFilter, TransportType, Transports, FaceFixture<TransportType>) |
| 212 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 213 | this->terminateAfter(2_s); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 214 | |
| 215 | int nInterests1 = 0, nRegSuccess1 = 0, nRegSuccess2 = 0; |
| 216 | this->face.setInterestFilter("/Hello/World", |
| 217 | [&] (const InterestFilter&, const Interest&) { ++nInterests1; }, |
| 218 | [&] (const Name&) { ++nRegSuccess1; }, |
| 219 | [] (const Name&, const std::string& msg) { BOOST_ERROR("unexpected register prefix failure: " << msg); }); |
| 220 | this->face.setInterestFilter("/Los/Angeles/Lakers", |
| 221 | [&] (const InterestFilter&, const Interest&) { BOOST_ERROR("unexpected Interest"); }, |
| 222 | [&] (const Name&) { ++nRegSuccess2; }, |
| 223 | [] (const Name&, const std::string& msg) { BOOST_ERROR("unexpected register prefix failure: " << msg); }); |
| 224 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 225 | this->sched.scheduleEvent(500_ms, [] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 226 | std::string output = executeCommand("nfdc route list | grep /Hello/World"); |
| 227 | BOOST_CHECK(!output.empty()); |
| 228 | }); |
| 229 | |
| 230 | char interestOutcome; |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 231 | this->sendInterest(1_s, *makeInterest("/Hello/World/regular", false, 50_ms), interestOutcome); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 232 | |
| 233 | this->face.processEvents(); |
| 234 | BOOST_CHECK_EQUAL(interestOutcome, 'T'); |
| 235 | BOOST_CHECK_EQUAL(nInterests1, 1); |
| 236 | BOOST_CHECK_EQUAL(nRegSuccess1, 1); |
| 237 | BOOST_CHECK_EQUAL(nRegSuccess2, 1); |
| 238 | } |
| 239 | |
| 240 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(RegexFilter, TransportType, Transports, FaceFixture<TransportType>) |
| 241 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 242 | this->terminateAfter(2_s); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 243 | |
| 244 | int nRegSuccess = 0; |
| 245 | std::set<Name> receivedInterests; |
| 246 | this->face.setInterestFilter(InterestFilter("/Hello/World", "<><b><c>?"), |
| 247 | [&] (const InterestFilter&, const Interest& interest) { receivedInterests.insert(interest.getName()); }, |
| 248 | [&] (const Name&) { ++nRegSuccess; }, |
| 249 | [] (const Name&, const std::string& msg) { BOOST_ERROR("unexpected register prefix failure: " << msg); }); |
| 250 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 251 | this->sched.scheduleEvent(700_ms, [] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 252 | std::string output = executeCommand("nfdc route list | grep /Hello/World"); |
| 253 | BOOST_CHECK(!output.empty()); |
| 254 | }); |
| 255 | |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 256 | this->sendInterest(200_ms, *makeInterest("/Hello/World/a", false, 50_ms)); |
| 257 | this->sendInterest(300_ms, *makeInterest("/Hello/World/a/b", false, 50_ms)); |
| 258 | this->sendInterest(400_ms, *makeInterest("/Hello/World/a/b/c", false, 50_ms)); |
| 259 | this->sendInterest(500_ms, *makeInterest("/Hello/World/a/b/d", false, 50_ms)); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 260 | |
| 261 | this->face.processEvents(); |
| 262 | BOOST_CHECK_EQUAL(nRegSuccess, 1); |
| 263 | std::set<Name> expectedInterests{"/Hello/World/a/b", "/Hello/World/a/b/c"}; |
| 264 | BOOST_CHECK_EQUAL_COLLECTIONS(receivedInterests.begin(), receivedInterests.end(), |
| 265 | expectedInterests.begin(), expectedInterests.end()); |
| 266 | } |
| 267 | |
| 268 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(RegexFilterNoRegister, TransportType, Transports, FaceFixture<TransportType>) |
| 269 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 270 | this->terminateAfter(2_s); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 271 | |
| 272 | // no Interest shall arrive because prefix isn't registered in forwarder |
| 273 | this->face.setInterestFilter(InterestFilter("/Hello/World", "<><b><c>?"), |
| 274 | [&] (const InterestFilter&, const Interest& interest) { BOOST_ERROR("unexpected Interest"); }); |
| 275 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 276 | this->sched.scheduleEvent(700_ms, [] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 277 | // Boost.Test would fail if a child process exits with non-zero. http://stackoverflow.com/q/5325202 |
| 278 | std::string output = executeCommand("nfdc route list | grep /Hello/World || true"); |
| 279 | BOOST_CHECK(output.empty()); |
| 280 | }); |
| 281 | |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 282 | this->sendInterest(200_ms, *makeInterest("/Hello/World/a", false, 50_ms)); |
| 283 | this->sendInterest(300_ms, *makeInterest("/Hello/World/a/b", false, 50_ms)); |
| 284 | this->sendInterest(400_ms, *makeInterest("/Hello/World/a/b/c", false, 50_ms)); |
| 285 | this->sendInterest(500_ms, *makeInterest("/Hello/World/a/b/d", false, 50_ms)); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 286 | |
| 287 | this->face.processEvents(); |
| 288 | } |
| 289 | |
| 290 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(PutDataNack, TransportType, Transports, FaceFixture<TransportType>) |
| 291 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 292 | this->terminateAfter(2_s); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 293 | |
| 294 | this->face.setInterestFilter("/Hello/World", |
| 295 | [&] (const InterestFilter&, const Interest& interest) { |
| 296 | if (interest.getName().at(2) == name::Component("nack")) { |
| 297 | this->face.put(makeNack(interest, lp::NackReason::NO_ROUTE)); |
| 298 | } |
| 299 | else { |
| 300 | this->face.put(*makeData(interest.getName())); |
| 301 | } |
| 302 | }, |
| 303 | nullptr, |
| 304 | [] (const Name&, const std::string& msg) { BOOST_ERROR("unexpected register prefix failure: " << msg); }); |
| 305 | |
| 306 | char outcome1, outcome2; |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 307 | this->sendInterest(700_ms, *makeInterest("/Hello/World/data", false, 50_ms), outcome1); |
| 308 | this->sendInterest(800_ms, *makeInterest("/Hello/World/nack", false, 50_ms), outcome2); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 309 | |
| 310 | this->face.processEvents(); |
| 311 | BOOST_CHECK_EQUAL(outcome1, 'D'); |
| 312 | BOOST_CHECK_EQUAL(outcome2, 'N'); |
| 313 | } |
| 314 | |
| 315 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(OversizedData, TransportType, Transports, FaceFixture<TransportType>) |
| 316 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 317 | this->terminateAfter(2_s); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 318 | |
| 319 | this->face.setInterestFilter("/Hello/World", |
| 320 | [&] (const InterestFilter&, const Interest& interest) { |
| 321 | this->face.put(*makeData(makeVeryLongName(interest.getName()))); |
| 322 | }, |
| 323 | nullptr, |
| 324 | [] (const Name&, const std::string& msg) { BOOST_ERROR("unexpected register prefix failure: " << msg); }); |
| 325 | |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 326 | this->sendInterest(1_s, *makeInterest("/Hello/World/oversized", true, 50_ms)); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 327 | |
| 328 | BOOST_CHECK_THROW(this->face.processEvents(), Face::OversizedPacketError); |
| 329 | } |
| 330 | |
| 331 | BOOST_AUTO_TEST_SUITE_END() // Producer |
| 332 | |
| 333 | BOOST_AUTO_TEST_SUITE(IoRoutine) |
| 334 | |
Alexander Afanasyev | fba1ac6 | 2015-08-26 15:19:13 -0700 | [diff] [blame] | 335 | BOOST_AUTO_TEST_CASE(ShutdownWhileSendInProgress) // Bug #3136 |
| 336 | { |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 337 | this->face.expressInterest(*makeInterest("/Hello/World"), nullptr, nullptr, nullptr); |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 338 | this->face.processEvents(1_s); |
Alexander Afanasyev | fba1ac6 | 2015-08-26 15:19:13 -0700 | [diff] [blame] | 339 | |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 340 | this->face.expressInterest(*makeInterest("/Bye/World/1"), nullptr, nullptr, nullptr); |
| 341 | this->face.expressInterest(*makeInterest("/Bye/World/2"), nullptr, nullptr, nullptr); |
| 342 | this->face.expressInterest(*makeInterest("/Bye/World/3"), nullptr, nullptr, nullptr); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 343 | this->face.shutdown(); |
Alexander Afanasyev | fba1ac6 | 2015-08-26 15:19:13 -0700 | [diff] [blame] | 344 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 345 | this->face.processEvents(1_s); // should not segfault |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 346 | BOOST_CHECK(true); |
Alexander Afanasyev | fba1ac6 | 2015-08-26 15:19:13 -0700 | [diff] [blame] | 347 | } |
| 348 | |
Alexander Afanasyev | e508f14 | 2015-09-01 15:14:45 -0700 | [diff] [blame] | 349 | BOOST_AUTO_TEST_CASE(LargeDelayBetweenFaceConstructorAndProcessEvents) // Bug #2742 |
| 350 | { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 351 | std::this_thread::sleep_for(std::chrono::seconds(5)); // simulate setup workload |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 352 | this->face.processEvents(1_s); // should not throw |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 353 | BOOST_CHECK(true); |
Alexander Afanasyev | e508f14 | 2015-09-01 15:14:45 -0700 | [diff] [blame] | 354 | } |
| 355 | |
Alexander Afanasyev | a54d5a6 | 2017-02-11 19:01:34 -0800 | [diff] [blame] | 356 | BOOST_AUTO_TEST_CASE(ProcessEventsBlocksForeverWhenNothingScheduled) // Bug #3957 |
| 357 | { |
Alexander Afanasyev | a54d5a6 | 2017-02-11 19:01:34 -0800 | [diff] [blame] | 358 | std::mutex m; |
| 359 | std::condition_variable cv; |
| 360 | bool processEventsFinished = false; |
| 361 | |
| 362 | std::thread faceThread([&] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 363 | this->face.processEvents(); |
Alexander Afanasyev | a54d5a6 | 2017-02-11 19:01:34 -0800 | [diff] [blame] | 364 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 365 | processEventsFinished = true; |
| 366 | std::lock_guard<std::mutex> lk(m); |
| 367 | cv.notify_one(); |
| 368 | }); |
Alexander Afanasyev | a54d5a6 | 2017-02-11 19:01:34 -0800 | [diff] [blame] | 369 | |
| 370 | { |
| 371 | std::unique_lock<std::mutex> lk(m); |
| 372 | cv.wait_for(lk, std::chrono::seconds(5), [&] { return processEventsFinished; }); |
| 373 | } |
| 374 | |
| 375 | BOOST_CHECK_EQUAL(processEventsFinished, true); |
| 376 | if (!processEventsFinished) { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 377 | this->face.shutdown(); |
Alexander Afanasyev | a54d5a6 | 2017-02-11 19:01:34 -0800 | [diff] [blame] | 378 | } |
| 379 | faceThread.join(); |
| 380 | } |
| 381 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 382 | BOOST_AUTO_TEST_SUITE_END() // IoRoutine |
| 383 | |
| 384 | BOOST_AUTO_TEST_SUITE_END() // TestFace |
Alexander Afanasyev | 0abb2da | 2014-01-30 18:07:57 -0800 | [diff] [blame] | 385 | |
Alexander Afanasyev | e4f8c3b | 2016-06-23 16:03:48 -0700 | [diff] [blame] | 386 | } // namespace tests |
Alexander Afanasyev | 0abb2da | 2014-01-30 18:07:57 -0800 | [diff] [blame] | 387 | } // namespace ndn |