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 | 0c52603 | 2024-01-31 21:14:01 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2024 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 | |
Davide Pesavento | 394977c | 2020-04-25 21:40:31 -0400 | [diff] [blame] | 22 | #define BOOST_TEST_MODULE ndn-cxx Integration (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 | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 30 | #include "tests/key-chain-fixture.hpp" |
| 31 | #include "tests/test-common.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 | |
Davide Pesavento | 49e1e87 | 2023-11-11 00:45:23 -0500 | [diff] [blame] | 38 | #include <boost/mp11/list.hpp> |
Junxiao Shi | cf9c6bb | 2016-07-27 02:18:19 +0000 | [diff] [blame] | 39 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 40 | namespace ndn::tests { |
Alexander Afanasyev | 20d2c58 | 2014-01-26 15:32:51 -0800 | [diff] [blame] | 41 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 42 | static Name |
| 43 | makeVeryLongName(Name prefix = Name()) |
Alexander Afanasyev | e4f8c3b | 2016-06-23 16:03:48 -0700 | [diff] [blame] | 44 | { |
Eric Newberry | 0669061 | 2016-12-27 12:50:15 -0700 | [diff] [blame] | 45 | for (size_t i = 0; i <= MAX_NDN_PACKET_SIZE / 10; i++) { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 46 | prefix.append("0123456789"); |
| 47 | } |
| 48 | return prefix; |
| 49 | } |
| 50 | |
| 51 | static std::string |
| 52 | executeCommand(const std::string& cmd) |
| 53 | { |
| 54 | std::string output; |
| 55 | char buf[256]; |
| 56 | FILE* pipe = popen(cmd.data(), "r"); |
Davide Pesavento | 39570d9 | 2019-12-09 23:52:46 -0500 | [diff] [blame] | 57 | BOOST_REQUIRE_MESSAGE(pipe != nullptr, "popen(" << cmd << ")"); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 58 | while (fgets(buf, sizeof(buf), pipe) != nullptr) { |
| 59 | output += buf; |
| 60 | } |
| 61 | pclose(pipe); |
| 62 | return output; |
| 63 | } |
| 64 | |
| 65 | template<typename TransportType> |
Davide Pesavento | 4c1ad4c | 2020-11-16 21:12:02 -0500 | [diff] [blame] | 66 | class FaceFixture : public KeyChainFixture |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 67 | { |
| 68 | protected: |
| 69 | FaceFixture() |
| 70 | : face(TransportType::create(""), m_keyChain) |
Davide Pesavento | 2f46d65 | 2023-11-09 23:40:01 -0500 | [diff] [blame] | 71 | , sched(face.getIoContext()) |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 72 | { |
Eric Newberry | 0669061 | 2016-12-27 12:50:15 -0700 | [diff] [blame] | 73 | } |
Alexander Afanasyev | 49bb1fb | 2014-07-21 12:54:01 -0700 | [diff] [blame] | 74 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 75 | /** \brief Send an Interest from a secondary face |
| 76 | * \param delay scheduling delay before sending Interest |
| 77 | * \param interest the Interest |
| 78 | * \param[out] outcome the response, initially '?', 'D' for Data, 'N' for Nack, 'T' for timeout |
| 79 | * \return scheduled event id |
| 80 | */ |
Davide Pesavento | fd61231 | 2019-03-15 18:45:46 -0400 | [diff] [blame] | 81 | scheduler::EventId |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 82 | sendInterest(time::nanoseconds delay, const Interest& interest, char& outcome) |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 83 | { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 84 | if (face2 == nullptr) { |
Davide Pesavento | 2f46d65 | 2023-11-09 23:40:01 -0500 | [diff] [blame] | 85 | face2 = make_unique<Face>(TransportType::create(""), face.getIoContext(), m_keyChain); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 86 | } |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 87 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 88 | outcome = '?'; |
Junxiao Shi | a5f233e | 2019-03-18 09:39:22 -0600 | [diff] [blame] | 89 | return sched.schedule(delay, [this, interest, &outcome] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 90 | face2->expressInterest(interest, |
| 91 | [&] (const Interest&, const Data&) { outcome = 'D'; }, |
| 92 | [&] (const Interest&, const lp::Nack&) { outcome = 'N'; }, |
| 93 | [&] (const Interest&) { outcome = 'T'; }); |
| 94 | }); |
| 95 | } |
| 96 | |
Davide Pesavento | fd61231 | 2019-03-15 18:45:46 -0400 | [diff] [blame] | 97 | scheduler::EventId |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 98 | sendInterest(time::nanoseconds delay, const Interest& interest) |
| 99 | { |
| 100 | static char ignoredOutcome; |
| 101 | return sendInterest(delay, interest, ignoredOutcome); |
| 102 | } |
| 103 | |
Davide Pesavento | 2f46d65 | 2023-11-09 23:40:01 -0500 | [diff] [blame] | 104 | /** \brief Stop io_context after a delay |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 105 | * \return scheduled event id |
| 106 | */ |
Davide Pesavento | fd61231 | 2019-03-15 18:45:46 -0400 | [diff] [blame] | 107 | scheduler::EventId |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 108 | terminateAfter(time::nanoseconds delay) |
| 109 | { |
Davide Pesavento | 2f46d65 | 2023-11-09 23:40:01 -0500 | [diff] [blame] | 110 | return sched.schedule(delay, [this] { face.getIoContext().stop(); }); |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 111 | } |
Junxiao Shi | cf9c6bb | 2016-07-27 02:18:19 +0000 | [diff] [blame] | 112 | |
| 113 | protected: |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 114 | Face face; |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 115 | unique_ptr<Face> face2; |
Davide Pesavento | 39570d9 | 2019-12-09 23:52:46 -0500 | [diff] [blame] | 116 | Scheduler sched; |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 117 | }; |
| 118 | |
Davide Pesavento | 49e1e87 | 2023-11-11 00:45:23 -0500 | [diff] [blame] | 119 | using Transports = boost::mp11::mp_list<UnixTransport, TcpTransport>; |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 120 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 121 | BOOST_AUTO_TEST_SUITE(Consumer) |
| 122 | |
| 123 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(ExpressInterestData, TransportType, Transports, FaceFixture<TransportType>) |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 124 | { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 125 | int nData = 0; |
Davide Pesavento | 39570d9 | 2019-12-09 23:52:46 -0500 | [diff] [blame] | 126 | this->face.expressInterest(*makeInterest("/localhost", true), |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 127 | [&] (const Interest&, const Data&) { ++nData; }, |
| 128 | [] (const Interest&, const lp::Nack&) { BOOST_ERROR("unexpected Nack"); }, |
| 129 | [] (const Interest&) { BOOST_ERROR("unexpected timeout"); }); |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 130 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 131 | this->face.processEvents(); |
| 132 | BOOST_CHECK_EQUAL(nData, 1); |
Alexander Afanasyev | ee8bb1e | 2014-05-02 17:39:54 -0700 | [diff] [blame] | 133 | } |
Alexander Afanasyev | 9016496 | 2014-03-06 08:29:59 +0000 | [diff] [blame] | 134 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 135 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(ExpressInterestNack, TransportType, Transports, FaceFixture<TransportType>) |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 136 | { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 137 | int nNacks = 0; |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 138 | this->face.expressInterest(*makeInterest("/localhost/non-existent-should-nack"), |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 139 | [] (const Interest&, const Data&) { BOOST_ERROR("unexpected Data"); }, |
| 140 | [&] (const Interest&, const lp::Nack&) { ++nNacks; }, |
| 141 | [] (const Interest&) { BOOST_ERROR("unexpected timeout"); }); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 142 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 143 | this->face.processEvents(); |
| 144 | BOOST_CHECK_EQUAL(nNacks, 1); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 147 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(ExpressInterestTimeout, TransportType, Transports, FaceFixture<TransportType>) |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 148 | { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 149 | // add route toward null face so Interest would timeout instead of getting Nacked |
| 150 | executeCommand("nfdc route add /localhost/non-existent-should-timeout null://"); |
| 151 | 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] | 152 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 153 | int nTimeouts = 0; |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 154 | this->face.expressInterest(*makeInterest("/localhost/non-existent-should-timeout", false, 1_s), |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 155 | [] (const Interest&, const Data&) { BOOST_ERROR("unexpected Data"); }, |
| 156 | [] (const Interest&, const lp::Nack&) { BOOST_ERROR("unexpected Nack"); }, |
| 157 | [&] (const Interest&) { ++nTimeouts; }); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 158 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 159 | this->face.processEvents(); |
| 160 | BOOST_CHECK_EQUAL(nTimeouts, 1); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 161 | } |
| 162 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 163 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(OversizedInterest, TransportType, Transports, FaceFixture<TransportType>) |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 164 | { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 165 | BOOST_CHECK_THROW(do { |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 166 | this->face.expressInterest(*makeInterest(makeVeryLongName()), nullptr, nullptr, nullptr); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 167 | this->face.processEvents(); |
| 168 | } while (false), Face::OversizedPacketError); |
Alexander Afanasyev | 984ad19 | 2014-05-02 19:11:15 -0700 | [diff] [blame] | 169 | } |
Alexander Afanasyev | 5fc795f | 2014-10-20 23:06:56 -0400 | [diff] [blame] | 170 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 171 | BOOST_AUTO_TEST_SUITE_END() // Consumer |
| 172 | |
| 173 | BOOST_AUTO_TEST_SUITE(Producer) |
| 174 | |
| 175 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(RegisterUnregisterPrefix, TransportType, Transports, FaceFixture<TransportType>) |
| 176 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 177 | this->terminateAfter(4_s); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 178 | |
| 179 | int nRegSuccess = 0, nUnregSuccess = 0; |
Davide Pesavento | 720e25c | 2019-07-14 01:33:52 -0400 | [diff] [blame] | 180 | auto handle = this->face.registerPrefix("/Hello/World", |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 181 | [&] (const Name&) { ++nRegSuccess; }, |
Davide Pesavento | 720e25c | 2019-07-14 01:33:52 -0400 | [diff] [blame] | 182 | [] (const Name&, const auto& msg) { BOOST_ERROR("unexpected register prefix failure: " << msg); }); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 183 | |
Junxiao Shi | a5f233e | 2019-03-18 09:39:22 -0600 | [diff] [blame] | 184 | this->sched.schedule(1_s, [&nRegSuccess] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 185 | BOOST_CHECK_EQUAL(nRegSuccess, 1); |
| 186 | std::string output = executeCommand("nfdc route list | grep /Hello/World"); |
| 187 | BOOST_CHECK(!output.empty()); |
| 188 | }); |
| 189 | |
Davide Pesavento | 720e25c | 2019-07-14 01:33:52 -0400 | [diff] [blame] | 190 | this->sched.schedule(2_s, [&] { |
| 191 | handle.unregister( |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 192 | [&] { ++nUnregSuccess; }, |
Davide Pesavento | 720e25c | 2019-07-14 01:33:52 -0400 | [diff] [blame] | 193 | [] (const auto& msg) { BOOST_ERROR("unexpected unregister prefix failure: " << msg); }); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 194 | }); |
| 195 | |
Junxiao Shi | a5f233e | 2019-03-18 09:39:22 -0600 | [diff] [blame] | 196 | this->sched.schedule(3_s, [&nUnregSuccess] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 197 | BOOST_CHECK_EQUAL(nUnregSuccess, 1); |
| 198 | |
| 199 | // Boost.Test would fail if a child process exits with non-zero. http://stackoverflow.com/q/5325202 |
| 200 | std::string output = executeCommand("nfdc route list | grep /Hello/World || true"); |
| 201 | BOOST_CHECK(output.empty()); |
| 202 | }); |
| 203 | |
| 204 | this->face.processEvents(); |
| 205 | } |
| 206 | |
| 207 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(RegularFilter, TransportType, Transports, FaceFixture<TransportType>) |
| 208 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 209 | this->terminateAfter(2_s); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 210 | |
| 211 | int nInterests1 = 0, nRegSuccess1 = 0, nRegSuccess2 = 0; |
| 212 | this->face.setInterestFilter("/Hello/World", |
| 213 | [&] (const InterestFilter&, const Interest&) { ++nInterests1; }, |
| 214 | [&] (const Name&) { ++nRegSuccess1; }, |
Davide Pesavento | 720e25c | 2019-07-14 01:33:52 -0400 | [diff] [blame] | 215 | [] (const Name&, const auto& msg) { BOOST_ERROR("unexpected register prefix failure: " << msg); }); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 216 | this->face.setInterestFilter("/Los/Angeles/Lakers", |
| 217 | [&] (const InterestFilter&, const Interest&) { BOOST_ERROR("unexpected Interest"); }, |
| 218 | [&] (const Name&) { ++nRegSuccess2; }, |
Davide Pesavento | 720e25c | 2019-07-14 01:33:52 -0400 | [diff] [blame] | 219 | [] (const Name&, const auto& msg) { BOOST_ERROR("unexpected register prefix failure: " << msg); }); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 220 | |
Junxiao Shi | a5f233e | 2019-03-18 09:39:22 -0600 | [diff] [blame] | 221 | this->sched.schedule(500_ms, [] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 222 | std::string output = executeCommand("nfdc route list | grep /Hello/World"); |
| 223 | BOOST_CHECK(!output.empty()); |
| 224 | }); |
| 225 | |
| 226 | char interestOutcome; |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 227 | this->sendInterest(1_s, *makeInterest("/Hello/World/regular", false, 50_ms), interestOutcome); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 228 | |
| 229 | this->face.processEvents(); |
| 230 | BOOST_CHECK_EQUAL(interestOutcome, 'T'); |
| 231 | BOOST_CHECK_EQUAL(nInterests1, 1); |
| 232 | BOOST_CHECK_EQUAL(nRegSuccess1, 1); |
| 233 | BOOST_CHECK_EQUAL(nRegSuccess2, 1); |
| 234 | } |
| 235 | |
| 236 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(RegexFilter, TransportType, Transports, FaceFixture<TransportType>) |
| 237 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 238 | this->terminateAfter(2_s); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 239 | |
| 240 | int nRegSuccess = 0; |
| 241 | std::set<Name> receivedInterests; |
| 242 | this->face.setInterestFilter(InterestFilter("/Hello/World", "<><b><c>?"), |
Davide Pesavento | df8fd8a | 2022-02-21 20:04:21 -0500 | [diff] [blame] | 243 | [&] (auto&&, const auto& interest) { receivedInterests.insert(interest.getName()); }, |
| 244 | [&] (auto&&) { ++nRegSuccess; }, |
| 245 | [] (auto&&, const auto& msg) { BOOST_ERROR("unexpected register prefix failure: " << msg); }); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 246 | |
Junxiao Shi | a5f233e | 2019-03-18 09:39:22 -0600 | [diff] [blame] | 247 | this->sched.schedule(700_ms, [] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 248 | std::string output = executeCommand("nfdc route list | grep /Hello/World"); |
| 249 | BOOST_CHECK(!output.empty()); |
| 250 | }); |
| 251 | |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 252 | this->sendInterest(200_ms, *makeInterest("/Hello/World/a", false, 50_ms)); |
| 253 | this->sendInterest(300_ms, *makeInterest("/Hello/World/a/b", false, 50_ms)); |
| 254 | this->sendInterest(400_ms, *makeInterest("/Hello/World/a/b/c", false, 50_ms)); |
| 255 | 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] | 256 | |
| 257 | this->face.processEvents(); |
| 258 | BOOST_CHECK_EQUAL(nRegSuccess, 1); |
| 259 | std::set<Name> expectedInterests{"/Hello/World/a/b", "/Hello/World/a/b/c"}; |
Davide Pesavento | df8fd8a | 2022-02-21 20:04:21 -0500 | [diff] [blame] | 260 | BOOST_TEST(receivedInterests == expectedInterests, boost::test_tools::per_element()); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(RegexFilterNoRegister, TransportType, Transports, FaceFixture<TransportType>) |
| 264 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 265 | this->terminateAfter(2_s); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 266 | |
| 267 | // no Interest shall arrive because prefix isn't registered in forwarder |
| 268 | this->face.setInterestFilter(InterestFilter("/Hello/World", "<><b><c>?"), |
Davide Pesavento | 720e25c | 2019-07-14 01:33:52 -0400 | [diff] [blame] | 269 | [&] (const InterestFilter&, const Interest&) { BOOST_ERROR("unexpected Interest"); }); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 270 | |
Junxiao Shi | a5f233e | 2019-03-18 09:39:22 -0600 | [diff] [blame] | 271 | this->sched.schedule(700_ms, [] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 272 | // Boost.Test would fail if a child process exits with non-zero. http://stackoverflow.com/q/5325202 |
| 273 | std::string output = executeCommand("nfdc route list | grep /Hello/World || true"); |
| 274 | BOOST_CHECK(output.empty()); |
| 275 | }); |
| 276 | |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 277 | this->sendInterest(200_ms, *makeInterest("/Hello/World/a", false, 50_ms)); |
| 278 | this->sendInterest(300_ms, *makeInterest("/Hello/World/a/b", false, 50_ms)); |
| 279 | this->sendInterest(400_ms, *makeInterest("/Hello/World/a/b/c", false, 50_ms)); |
| 280 | 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] | 281 | |
| 282 | this->face.processEvents(); |
| 283 | } |
| 284 | |
| 285 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(PutDataNack, TransportType, Transports, FaceFixture<TransportType>) |
| 286 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 287 | this->terminateAfter(2_s); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 288 | |
| 289 | this->face.setInterestFilter("/Hello/World", |
| 290 | [&] (const InterestFilter&, const Interest& interest) { |
| 291 | if (interest.getName().at(2) == name::Component("nack")) { |
| 292 | this->face.put(makeNack(interest, lp::NackReason::NO_ROUTE)); |
| 293 | } |
| 294 | else { |
| 295 | this->face.put(*makeData(interest.getName())); |
| 296 | } |
| 297 | }, |
| 298 | nullptr, |
Davide Pesavento | 720e25c | 2019-07-14 01:33:52 -0400 | [diff] [blame] | 299 | [] (const Name&, const auto& msg) { BOOST_ERROR("unexpected register prefix failure: " << msg); }); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 300 | |
| 301 | char outcome1, outcome2; |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 302 | this->sendInterest(700_ms, *makeInterest("/Hello/World/data", false, 50_ms), outcome1); |
| 303 | this->sendInterest(800_ms, *makeInterest("/Hello/World/nack", false, 50_ms), outcome2); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 304 | |
| 305 | this->face.processEvents(); |
| 306 | BOOST_CHECK_EQUAL(outcome1, 'D'); |
| 307 | BOOST_CHECK_EQUAL(outcome2, 'N'); |
| 308 | } |
| 309 | |
| 310 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(OversizedData, TransportType, Transports, FaceFixture<TransportType>) |
| 311 | { |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 312 | this->terminateAfter(2_s); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 313 | |
| 314 | this->face.setInterestFilter("/Hello/World", |
| 315 | [&] (const InterestFilter&, const Interest& interest) { |
| 316 | this->face.put(*makeData(makeVeryLongName(interest.getName()))); |
| 317 | }, |
| 318 | nullptr, |
Davide Pesavento | 720e25c | 2019-07-14 01:33:52 -0400 | [diff] [blame] | 319 | [] (const Name&, const auto& msg) { BOOST_ERROR("unexpected register prefix failure: " << msg); }); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 320 | |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 321 | this->sendInterest(1_s, *makeInterest("/Hello/World/oversized", true, 50_ms)); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 322 | |
| 323 | BOOST_CHECK_THROW(this->face.processEvents(), Face::OversizedPacketError); |
| 324 | } |
| 325 | |
| 326 | BOOST_AUTO_TEST_SUITE_END() // Producer |
| 327 | |
Davide Pesavento | 394977c | 2020-04-25 21:40:31 -0400 | [diff] [blame] | 328 | BOOST_FIXTURE_TEST_SUITE(IoRoutine, FaceFixture<UnixTransport>) |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 329 | |
Davide Pesavento | 0c52603 | 2024-01-31 21:14:01 -0500 | [diff] [blame] | 330 | BOOST_AUTO_TEST_CASE(ShutdownWhileSendInProgress, |
| 331 | * ut::description("test for bug #3136")) |
Alexander Afanasyev | fba1ac6 | 2015-08-26 15:19:13 -0700 | [diff] [blame] | 332 | { |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 333 | this->face.expressInterest(*makeInterest("/Hello/World"), nullptr, nullptr, nullptr); |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 334 | this->face.processEvents(1_s); |
Alexander Afanasyev | fba1ac6 | 2015-08-26 15:19:13 -0700 | [diff] [blame] | 335 | |
Junxiao Shi | b55e5d3 | 2018-07-18 13:32:00 -0600 | [diff] [blame] | 336 | this->face.expressInterest(*makeInterest("/Bye/World/1"), nullptr, nullptr, nullptr); |
| 337 | this->face.expressInterest(*makeInterest("/Bye/World/2"), nullptr, nullptr, nullptr); |
| 338 | this->face.expressInterest(*makeInterest("/Bye/World/3"), nullptr, nullptr, nullptr); |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 339 | this->face.shutdown(); |
Alexander Afanasyev | fba1ac6 | 2015-08-26 15:19:13 -0700 | [diff] [blame] | 340 | |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 341 | this->face.processEvents(1_s); // should not segfault |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 342 | BOOST_CHECK(true); |
Alexander Afanasyev | fba1ac6 | 2015-08-26 15:19:13 -0700 | [diff] [blame] | 343 | } |
| 344 | |
Davide Pesavento | 0c52603 | 2024-01-31 21:14:01 -0500 | [diff] [blame] | 345 | BOOST_AUTO_TEST_CASE(LargeDelayBetweenFaceConstructorAndProcessEvents, |
| 346 | * ut::description("test for bug #2742")) |
Alexander Afanasyev | e508f14 | 2015-09-01 15:14:45 -0700 | [diff] [blame] | 347 | { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 348 | std::this_thread::sleep_for(std::chrono::seconds(5)); // simulate setup workload |
Davide Pesavento | 0f83080 | 2018-01-16 23:58:58 -0500 | [diff] [blame] | 349 | this->face.processEvents(1_s); // should not throw |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 350 | BOOST_CHECK(true); |
Alexander Afanasyev | e508f14 | 2015-09-01 15:14:45 -0700 | [diff] [blame] | 351 | } |
| 352 | |
Davide Pesavento | 0c52603 | 2024-01-31 21:14:01 -0500 | [diff] [blame] | 353 | BOOST_AUTO_TEST_CASE(ProcessEventsBlocksForeverWhenNothingScheduled, |
| 354 | * ut::description("test for bug #3957")) |
Alexander Afanasyev | a54d5a6 | 2017-02-11 19:01:34 -0800 | [diff] [blame] | 355 | { |
Alexander Afanasyev | a54d5a6 | 2017-02-11 19:01:34 -0800 | [diff] [blame] | 356 | std::mutex m; |
| 357 | std::condition_variable cv; |
| 358 | bool processEventsFinished = false; |
| 359 | |
| 360 | std::thread faceThread([&] { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 361 | this->face.processEvents(); |
Alexander Afanasyev | a54d5a6 | 2017-02-11 19:01:34 -0800 | [diff] [blame] | 362 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 363 | processEventsFinished = true; |
| 364 | std::lock_guard<std::mutex> lk(m); |
| 365 | cv.notify_one(); |
| 366 | }); |
Alexander Afanasyev | a54d5a6 | 2017-02-11 19:01:34 -0800 | [diff] [blame] | 367 | |
| 368 | { |
| 369 | std::unique_lock<std::mutex> lk(m); |
| 370 | cv.wait_for(lk, std::chrono::seconds(5), [&] { return processEventsFinished; }); |
| 371 | } |
| 372 | |
| 373 | BOOST_CHECK_EQUAL(processEventsFinished, true); |
| 374 | if (!processEventsFinished) { |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 375 | this->face.shutdown(); |
Alexander Afanasyev | a54d5a6 | 2017-02-11 19:01:34 -0800 | [diff] [blame] | 376 | } |
| 377 | faceThread.join(); |
| 378 | } |
| 379 | |
Junxiao Shi | 2bea5c4 | 2017-08-14 20:10:32 +0000 | [diff] [blame] | 380 | BOOST_AUTO_TEST_SUITE_END() // IoRoutine |
| 381 | |
Davide Pesavento | 47ce2ee | 2023-05-09 01:33:33 -0400 | [diff] [blame] | 382 | } // namespace ndn::tests |