Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014, Regents of the University of California, |
| 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 |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 24 | */ |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 25 | |
Alexander Afanasyev | 0eb7065 | 2014-02-27 18:35:07 -0800 | [diff] [blame] | 26 | #include "face/unix-stream-factory.hpp" |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 27 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 28 | #include "tests/test-common.hpp" |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 29 | #include "tests/limited-io.hpp" |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 30 | #include "dummy-stream-sender.hpp" |
| 31 | #include "packet-datasets.hpp" |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 32 | |
| 33 | namespace nfd { |
| 34 | namespace tests { |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 35 | |
| 36 | using namespace boost::asio::local; |
| 37 | |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 38 | #define CHANNEL_PATH1 "unix-stream-test.1.sock" |
| 39 | #define CHANNEL_PATH2 "unix-stream-test.2.sock" |
| 40 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 41 | BOOST_FIXTURE_TEST_SUITE(FaceUnixStream, BaseFixture) |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 42 | |
| 43 | BOOST_AUTO_TEST_CASE(ChannelMap) |
| 44 | { |
Alexander Afanasyev | 0eb7065 | 2014-02-27 18:35:07 -0800 | [diff] [blame] | 45 | UnixStreamFactory factory; |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 46 | |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 47 | shared_ptr<UnixStreamChannel> channel1 = factory.createChannel(CHANNEL_PATH1); |
| 48 | shared_ptr<UnixStreamChannel> channel1a = factory.createChannel(CHANNEL_PATH1); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 49 | BOOST_CHECK_EQUAL(channel1, channel1a); |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 50 | std::string channel1uri = channel1->getUri().toString(); |
| 51 | BOOST_CHECK_EQUAL(channel1uri.find("unix:///"), 0); // third '/' is the path separator |
| 52 | BOOST_CHECK_EQUAL(channel1uri.rfind(CHANNEL_PATH1), |
| 53 | channel1uri.size() - std::string(CHANNEL_PATH1).size()); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 54 | |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 55 | shared_ptr<UnixStreamChannel> channel2 = factory.createChannel(CHANNEL_PATH2); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 56 | BOOST_CHECK_NE(channel1, channel2); |
| 57 | } |
| 58 | |
Steve DiBenedetto | ef04f27 | 2014-06-04 14:28:31 -0600 | [diff] [blame] | 59 | BOOST_AUTO_TEST_CASE(GetChannels) |
| 60 | { |
| 61 | UnixStreamFactory factory; |
| 62 | BOOST_REQUIRE_EQUAL(factory.getChannels().empty(), true); |
| 63 | |
| 64 | std::vector<shared_ptr<const Channel> > expectedChannels; |
| 65 | |
| 66 | expectedChannels.push_back(factory.createChannel(CHANNEL_PATH1)); |
| 67 | expectedChannels.push_back(factory.createChannel(CHANNEL_PATH2)); |
| 68 | |
| 69 | std::list<shared_ptr<const Channel> > channels = factory.getChannels(); |
| 70 | for (std::list<shared_ptr<const Channel> >::const_iterator i = channels.begin(); |
| 71 | i != channels.end(); ++i) |
| 72 | { |
| 73 | std::vector<shared_ptr<const Channel> >::iterator pos = |
| 74 | std::find(expectedChannels.begin(), expectedChannels.end(), *i); |
| 75 | |
| 76 | BOOST_REQUIRE(pos != expectedChannels.end()); |
| 77 | expectedChannels.erase(pos); |
| 78 | } |
| 79 | |
| 80 | BOOST_CHECK_EQUAL(expectedChannels.size(), 0); |
| 81 | } |
| 82 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 83 | class EndToEndFixture : protected BaseFixture |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 84 | { |
| 85 | public: |
| 86 | void |
| 87 | client_onConnect(const boost::system::error_code& error) |
| 88 | { |
| 89 | BOOST_CHECK_MESSAGE(!error, error.message()); |
| 90 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 91 | limitedIo.afterOp(); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | void |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 95 | channel1_onFaceCreated(const shared_ptr<Face>& newFace) |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 96 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 97 | BOOST_CHECK(!static_cast<bool>(face1)); |
| 98 | face1 = static_pointer_cast<UnixStreamFace>(newFace); |
| 99 | face1->onReceiveInterest += |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 100 | bind(&EndToEndFixture::face1_onReceiveInterest, this, _1); |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 101 | face1->onReceiveData += |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 102 | bind(&EndToEndFixture::face1_onReceiveData, this, _1); |
| 103 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 104 | limitedIo.afterOp(); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | void |
| 108 | channel1_onConnectFailed(const std::string& reason) |
| 109 | { |
| 110 | BOOST_CHECK_MESSAGE(false, reason); |
| 111 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 112 | limitedIo.afterOp(); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 113 | } |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 114 | |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 115 | void |
| 116 | face1_onReceiveInterest(const Interest& interest) |
| 117 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 118 | face1_receivedInterests.push_back(interest); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 119 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 120 | limitedIo.afterOp(); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 121 | } |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 122 | |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 123 | void |
| 124 | face1_onReceiveData(const Data& data) |
| 125 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 126 | face1_receivedDatas.push_back(data); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 127 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 128 | limitedIo.afterOp(); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | void |
| 132 | face2_onReceiveInterest(const Interest& interest) |
| 133 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 134 | face2_receivedInterests.push_back(interest); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 135 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 136 | limitedIo.afterOp(); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 137 | } |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 138 | |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 139 | void |
| 140 | face2_onReceiveData(const Data& data) |
| 141 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 142 | face2_receivedDatas.push_back(data); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 143 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 144 | limitedIo.afterOp(); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | void |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 148 | channel_onFaceCreated(const shared_ptr<Face>& newFace) |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 149 | { |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 150 | faces.push_back(static_pointer_cast<UnixStreamFace>(newFace)); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 151 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 152 | limitedIo.afterOp(); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | void |
| 156 | channel_onConnectFailed(const std::string& reason) |
| 157 | { |
| 158 | BOOST_CHECK_MESSAGE(false, reason); |
| 159 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 160 | limitedIo.afterOp(); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | protected: |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 164 | LimitedIo limitedIo; |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 165 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 166 | shared_ptr<UnixStreamFace> face1; |
| 167 | std::vector<Interest> face1_receivedInterests; |
| 168 | std::vector<Data> face1_receivedDatas; |
| 169 | shared_ptr<UnixStreamFace> face2; |
| 170 | std::vector<Interest> face2_receivedInterests; |
| 171 | std::vector<Data> face2_receivedDatas; |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 172 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 173 | std::list< shared_ptr<UnixStreamFace> > faces; |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 174 | }; |
| 175 | |
| 176 | |
| 177 | BOOST_FIXTURE_TEST_CASE(EndToEnd, EndToEndFixture) |
| 178 | { |
Alexander Afanasyev | 0eb7065 | 2014-02-27 18:35:07 -0800 | [diff] [blame] | 179 | UnixStreamFactory factory; |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 180 | |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 181 | shared_ptr<UnixStreamChannel> channel1 = factory.createChannel(CHANNEL_PATH1); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 182 | channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1), |
| 183 | bind(&EndToEndFixture::channel1_onConnectFailed, this, _1)); |
| 184 | |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 185 | shared_ptr<stream_protocol::socket> client = make_shared<stream_protocol::socket>(ref(g_io)); |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 186 | client->async_connect(stream_protocol::endpoint(CHANNEL_PATH1), |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 187 | bind(&EndToEndFixture::client_onConnect, this, _1)); |
| 188 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 189 | BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(1)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 190 | "UnixStreamChannel error: cannot connect or cannot accept connection"); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 191 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 192 | BOOST_REQUIRE(static_cast<bool>(face1)); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 193 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 194 | BOOST_CHECK_EQUAL(face1->getRemoteUri().getScheme(), "fd"); |
| 195 | BOOST_CHECK_NO_THROW(boost::lexical_cast<int>(face1->getRemoteUri().getHost())); |
| 196 | std::string face1localUri = face1->getLocalUri().toString(); |
| 197 | BOOST_CHECK_EQUAL(face1localUri.find("unix:///"), 0); // third '/' is the path separator |
| 198 | BOOST_CHECK_EQUAL(face1localUri.rfind(CHANNEL_PATH1), |
| 199 | face1localUri.size() - std::string(CHANNEL_PATH1).size()); |
Alexander Afanasyev | a39b90b | 2014-03-05 15:31:00 +0000 | [diff] [blame] | 200 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 201 | face2 = make_shared<UnixStreamFace>(client); |
| 202 | face2->onReceiveInterest += |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 203 | bind(&EndToEndFixture::face2_onReceiveInterest, this, _1); |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 204 | face2->onReceiveData += |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 205 | bind(&EndToEndFixture::face2_onReceiveData, this, _1); |
| 206 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 207 | shared_ptr<Interest> interest1 = makeInterest("ndn:/TpnzGvW9R"); |
| 208 | shared_ptr<Data> data1 = makeData("ndn:/KfczhUqVix"); |
| 209 | shared_ptr<Interest> interest2 = makeInterest("ndn:/QWiIMfj5sL"); |
| 210 | shared_ptr<Data> data2 = makeData("ndn:/XNBV796f"); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 211 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 212 | face1->sendInterest(*interest1); |
| 213 | face1->sendInterest(*interest1); |
| 214 | face1->sendInterest(*interest1); |
| 215 | face1->sendData (*data1 ); |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 216 | size_t nBytesSent1 = interest1->wireEncode().size() * 3 + data1->wireEncode().size(); |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 217 | face2->sendInterest(*interest2); |
| 218 | face2->sendData (*data2 ); |
| 219 | face2->sendData (*data2 ); |
| 220 | face2->sendData (*data2 ); |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 221 | size_t nBytesSent2 = interest2->wireEncode().size() + data2->wireEncode().size() * 3; |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 222 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 223 | BOOST_CHECK_MESSAGE(limitedIo.run(8, time::seconds(1)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 224 | "UnixStreamChannel error: cannot send or receive Interest/Data packets"); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 225 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 226 | BOOST_REQUIRE_EQUAL(face1_receivedInterests.size(), 1); |
| 227 | BOOST_REQUIRE_EQUAL(face1_receivedDatas .size(), 3); |
| 228 | BOOST_REQUIRE_EQUAL(face2_receivedInterests.size(), 3); |
| 229 | BOOST_REQUIRE_EQUAL(face2_receivedDatas .size(), 1); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 230 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 231 | BOOST_CHECK_EQUAL(face1_receivedInterests[0].getName(), interest2->getName()); |
| 232 | BOOST_CHECK_EQUAL(face1_receivedDatas [0].getName(), data2->getName()); |
| 233 | BOOST_CHECK_EQUAL(face2_receivedInterests[0].getName(), interest1->getName()); |
| 234 | BOOST_CHECK_EQUAL(face2_receivedDatas [0].getName(), data1->getName()); |
Alexander Afanasyev | 7e698e6 | 2014-03-07 16:48:35 +0000 | [diff] [blame] | 235 | |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 236 | // needed to ensure NOutBytes counters are accurate |
| 237 | limitedIo.run(LimitedIo::UNLIMITED_OPS, time::seconds(1)); |
| 238 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 239 | const FaceCounters& counters1 = face1->getCounters(); |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 240 | BOOST_CHECK_EQUAL(counters1.getNInInterests() , 1); |
| 241 | BOOST_CHECK_EQUAL(counters1.getNInDatas() , 3); |
| 242 | BOOST_CHECK_EQUAL(counters1.getNOutInterests(), 3); |
| 243 | BOOST_CHECK_EQUAL(counters1.getNOutDatas() , 1); |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 244 | BOOST_CHECK_EQUAL(counters1.getNInBytes(), nBytesSent2); |
| 245 | BOOST_CHECK_EQUAL(counters1.getNOutBytes(), nBytesSent1); |
Alexander Afanasyev | 7e698e6 | 2014-03-07 16:48:35 +0000 | [diff] [blame] | 246 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 247 | const FaceCounters& counters2 = face2->getCounters(); |
Junxiao Shi | 6e69432 | 2014-04-03 10:27:13 -0700 | [diff] [blame] | 248 | BOOST_CHECK_EQUAL(counters2.getNInInterests() , 3); |
| 249 | BOOST_CHECK_EQUAL(counters2.getNInDatas() , 1); |
| 250 | BOOST_CHECK_EQUAL(counters2.getNOutInterests(), 1); |
| 251 | BOOST_CHECK_EQUAL(counters2.getNOutDatas() , 3); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | BOOST_FIXTURE_TEST_CASE(MultipleAccepts, EndToEndFixture) |
| 255 | { |
Alexander Afanasyev | 0eb7065 | 2014-02-27 18:35:07 -0800 | [diff] [blame] | 256 | UnixStreamFactory factory; |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 257 | |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 258 | shared_ptr<UnixStreamChannel> channel = factory.createChannel(CHANNEL_PATH1); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 259 | channel->listen(bind(&EndToEndFixture::channel_onFaceCreated, this, _1), |
| 260 | bind(&EndToEndFixture::channel_onConnectFailed, this, _1)); |
| 261 | |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 262 | shared_ptr<stream_protocol::socket> client1 = make_shared<stream_protocol::socket>(ref(g_io)); |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 263 | client1->async_connect(stream_protocol::endpoint(CHANNEL_PATH1), |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 264 | bind(&EndToEndFixture::client_onConnect, this, _1)); |
| 265 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 266 | BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(1)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 267 | "UnixStreamChannel error: cannot connect or cannot accept connection"); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 268 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 269 | BOOST_CHECK_EQUAL(faces.size(), 1); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 270 | |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 271 | shared_ptr<stream_protocol::socket> client2 = make_shared<stream_protocol::socket>(ref(g_io)); |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 272 | client2->async_connect(stream_protocol::endpoint(CHANNEL_PATH1), |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 273 | bind(&EndToEndFixture::client_onConnect, this, _1)); |
| 274 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 275 | BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(1)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 276 | "UnixStreamChannel error: cannot accept multiple connections"); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 277 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 278 | BOOST_CHECK_EQUAL(faces.size(), 2); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 279 | |
| 280 | // now close one of the faces |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 281 | faces.front()->close(); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 282 | |
| 283 | // we should still be able to send/receive with the other one |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 284 | face1 = faces.back(); |
| 285 | face1->onReceiveInterest += bind(&EndToEndFixture::face1_onReceiveInterest, this, _1); |
| 286 | face1->onReceiveData += bind(&EndToEndFixture::face1_onReceiveData, this, _1); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 287 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 288 | face2 = make_shared<UnixStreamFace>(client2); |
| 289 | face2->onReceiveInterest += bind(&EndToEndFixture::face2_onReceiveInterest, this, _1); |
| 290 | face2->onReceiveData += bind(&EndToEndFixture::face2_onReceiveData, this, _1); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 291 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 292 | shared_ptr<Interest> interest1 = makeInterest("ndn:/TpnzGvW9R"); |
| 293 | shared_ptr<Data> data1 = makeData("ndn:/KfczhUqVix"); |
| 294 | shared_ptr<Interest> interest2 = makeInterest("ndn:/QWiIMfj5sL"); |
| 295 | shared_ptr<Data> data2 = makeData("ndn:/XNBV796f"); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 296 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 297 | face1->sendInterest(*interest1); |
| 298 | face1->sendData (*data1 ); |
| 299 | face2->sendInterest(*interest2); |
| 300 | face2->sendData (*data2 ); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 301 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 302 | BOOST_CHECK_MESSAGE(limitedIo.run(4, time::seconds(1)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 303 | "UnixStreamChannel error: cannot send or receive Interest/Data packets"); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 304 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 305 | BOOST_REQUIRE_EQUAL(face1_receivedInterests.size(), 1); |
| 306 | BOOST_REQUIRE_EQUAL(face1_receivedDatas .size(), 1); |
| 307 | BOOST_REQUIRE_EQUAL(face2_receivedInterests.size(), 1); |
| 308 | BOOST_REQUIRE_EQUAL(face2_receivedDatas .size(), 1); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 309 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 310 | BOOST_CHECK_EQUAL(face1_receivedInterests[0].getName(), interest2->getName()); |
| 311 | BOOST_CHECK_EQUAL(face1_receivedDatas [0].getName(), data2->getName()); |
| 312 | BOOST_CHECK_EQUAL(face2_receivedInterests[0].getName(), interest1->getName()); |
| 313 | BOOST_CHECK_EQUAL(face2_receivedDatas [0].getName(), data1->getName()); |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 314 | } |
| 315 | |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 316 | static inline void |
| 317 | noOp() |
| 318 | { |
| 319 | } |
| 320 | |
| 321 | BOOST_FIXTURE_TEST_CASE(UnixStreamFaceLocalControlHeader, EndToEndFixture) |
| 322 | { |
Alexander Afanasyev | 0eb7065 | 2014-02-27 18:35:07 -0800 | [diff] [blame] | 323 | UnixStreamFactory factory; |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 324 | |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 325 | shared_ptr<UnixStreamChannel> channel1 = factory.createChannel(CHANNEL_PATH1); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 326 | channel1->listen(bind(&EndToEndFixture::channel1_onFaceCreated, this, _1), |
| 327 | bind(&EndToEndFixture::channel1_onConnectFailed, this, _1)); |
| 328 | |
Alexander Afanasyev | f698028 | 2014-05-13 18:28:40 -0700 | [diff] [blame] | 329 | shared_ptr<stream_protocol::socket> client = make_shared<stream_protocol::socket>(ref(g_io)); |
Junxiao Shi | 61e3cc5 | 2014-03-03 20:40:28 -0700 | [diff] [blame] | 330 | client->async_connect(stream_protocol::endpoint(CHANNEL_PATH1), |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 331 | bind(&EndToEndFixture::client_onConnect, this, _1)); |
| 332 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 333 | BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(1)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 334 | "UnixStreamChannel error: cannot connect or cannot accept connection"); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 335 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 336 | BOOST_REQUIRE(static_cast<bool>(face1)); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 337 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 338 | face2 = make_shared<UnixStreamFace>(client); |
| 339 | face2->onReceiveInterest += |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 340 | bind(&EndToEndFixture::face2_onReceiveInterest, this, _1); |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 341 | face2->onReceiveData += |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 342 | bind(&EndToEndFixture::face2_onReceiveData, this, _1); |
| 343 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 344 | shared_ptr<Interest> interest1 = makeInterest("ndn:/TpnzGvW9R"); |
| 345 | shared_ptr<Data> data1 = makeData("ndn:/KfczhUqVix"); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 346 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 347 | face1->setLocalControlHeaderFeature(LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID); |
| 348 | face1->setLocalControlHeaderFeature(LOCAL_CONTROL_FEATURE_NEXT_HOP_FACE_ID); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 349 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 350 | BOOST_CHECK(face1->isLocalControlHeaderEnabled(LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID)); |
| 351 | BOOST_CHECK(face1->isLocalControlHeaderEnabled(LOCAL_CONTROL_FEATURE_NEXT_HOP_FACE_ID)); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 352 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 353 | face2->setLocalControlHeaderFeature(LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID); |
| 354 | face2->setLocalControlHeaderFeature(LOCAL_CONTROL_FEATURE_NEXT_HOP_FACE_ID); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 355 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 356 | BOOST_CHECK(face2->isLocalControlHeaderEnabled(LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID)); |
| 357 | BOOST_CHECK(face2->isLocalControlHeaderEnabled(LOCAL_CONTROL_FEATURE_NEXT_HOP_FACE_ID)); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 358 | |
| 359 | //////////////////////////////////////////////////////// |
| 360 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 361 | interest1->setIncomingFaceId(11); |
| 362 | interest1->setNextHopFaceId(111); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 363 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 364 | face1->sendInterest(*interest1); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 365 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 366 | data1->setIncomingFaceId(22); |
| 367 | data1->getLocalControlHeader().setNextHopFaceId(222); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 368 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 369 | face1->sendData(*data1); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 370 | |
| 371 | // |
| 372 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 373 | BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(1)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 374 | "UnixStreamChannel error: cannot send or receive Interest/Data packets"); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 375 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 376 | BOOST_REQUIRE_EQUAL(face2_receivedInterests.size(), 1); |
| 377 | BOOST_REQUIRE_EQUAL(face2_receivedDatas .size(), 1); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 378 | |
| 379 | // sending allows only IncomingFaceId, receiving allows only NextHopFaceId |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 380 | BOOST_CHECK_EQUAL(face2_receivedInterests[0].getLocalControlHeader().hasIncomingFaceId(), false); |
| 381 | BOOST_CHECK_EQUAL(face2_receivedInterests[0].getLocalControlHeader().hasNextHopFaceId(), false); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 382 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 383 | BOOST_CHECK_EQUAL(face2_receivedDatas[0].getLocalControlHeader().hasIncomingFaceId(), false); |
| 384 | BOOST_CHECK_EQUAL(face2_receivedDatas[0].getLocalControlHeader().hasNextHopFaceId(), false); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 385 | |
| 386 | //////////////////////////////////////////////////////// |
| 387 | |
| 388 | using namespace boost::asio; |
| 389 | |
| 390 | std::vector<const_buffer> interestWithHeader; |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 391 | Block iHeader = interest1->getLocalControlHeader().wireEncode(*interest1, true, true); |
| 392 | Block iPayload = interest1->wireEncode(); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 393 | interestWithHeader.push_back(buffer(iHeader.wire(), iHeader.size())); |
| 394 | interestWithHeader.push_back(buffer(iPayload.wire(), iPayload.size())); |
| 395 | |
| 396 | std::vector<const_buffer> dataWithHeader; |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 397 | Block dHeader = data1->getLocalControlHeader().wireEncode(*data1, true, true); |
| 398 | Block dPayload = data1->wireEncode(); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 399 | dataWithHeader.push_back(buffer(dHeader.wire(), dHeader.size())); |
| 400 | dataWithHeader.push_back(buffer(dPayload.wire(), dPayload.size())); |
| 401 | |
| 402 | // |
| 403 | |
| 404 | client->async_send(interestWithHeader, bind(&noOp)); |
| 405 | client->async_send(dataWithHeader, bind(&noOp)); |
| 406 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 407 | BOOST_CHECK_MESSAGE(limitedIo.run(2, time::seconds(1)) == LimitedIo::EXCEED_OPS, |
Junxiao Shi | 7e2413b | 2014-03-02 11:15:09 -0700 | [diff] [blame] | 408 | "UnixStreamChannel error: cannot send or receive Interest/Data packets"); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 409 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 410 | BOOST_REQUIRE_EQUAL(face1_receivedInterests.size(), 1); |
| 411 | BOOST_REQUIRE_EQUAL(face1_receivedDatas .size(), 1); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 412 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 413 | BOOST_CHECK_EQUAL(face1_receivedInterests[0].getLocalControlHeader().hasIncomingFaceId(), false); |
| 414 | BOOST_CHECK_EQUAL(face1_receivedInterests[0].getLocalControlHeader().hasNextHopFaceId(), true); |
| 415 | BOOST_CHECK_EQUAL(face1_receivedInterests[0].getNextHopFaceId(), 111); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 416 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 417 | BOOST_CHECK_EQUAL(face1_receivedDatas[0].getLocalControlHeader().hasIncomingFaceId(), false); |
| 418 | BOOST_CHECK_EQUAL(face1_receivedDatas[0].getLocalControlHeader().hasNextHopFaceId(), false); |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 419 | } |
| 420 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 421 | |
| 422 | class SimpleEndToEndFixture : protected BaseFixture |
| 423 | { |
| 424 | public: |
| 425 | void |
| 426 | onFaceCreated(const shared_ptr<Face>& face) |
| 427 | { |
| 428 | face->onReceiveInterest += |
| 429 | bind(&SimpleEndToEndFixture::onReceiveInterest, this, _1); |
| 430 | face->onReceiveData += |
| 431 | bind(&SimpleEndToEndFixture::onReceiveData, this, _1); |
| 432 | face->onFail += |
| 433 | bind(&SimpleEndToEndFixture::onFail, this, face); |
| 434 | |
| 435 | if (static_cast<bool>(dynamic_pointer_cast<LocalFace>(face))) { |
| 436 | static_pointer_cast<LocalFace>(face)->setLocalControlHeaderFeature( |
| 437 | LOCAL_CONTROL_FEATURE_INCOMING_FACE_ID); |
| 438 | |
| 439 | static_pointer_cast<LocalFace>(face)->setLocalControlHeaderFeature( |
| 440 | LOCAL_CONTROL_FEATURE_NEXT_HOP_FACE_ID); |
| 441 | } |
| 442 | |
| 443 | limitedIo.afterOp(); |
| 444 | } |
| 445 | |
| 446 | void |
| 447 | onConnectFailed(const std::string& reason) |
| 448 | { |
| 449 | BOOST_CHECK_MESSAGE(false, reason); |
| 450 | |
| 451 | limitedIo.afterOp(); |
| 452 | } |
| 453 | |
| 454 | void |
| 455 | onReceiveInterest(const Interest& interest) |
| 456 | { |
| 457 | receivedInterests.push_back(interest); |
| 458 | |
| 459 | limitedIo.afterOp(); |
| 460 | } |
| 461 | |
| 462 | void |
| 463 | onReceiveData(const Data& data) |
| 464 | { |
| 465 | receivedDatas.push_back(data); |
| 466 | |
| 467 | limitedIo.afterOp(); |
| 468 | } |
| 469 | |
| 470 | void |
| 471 | onFail(const shared_ptr<Face>& face) |
| 472 | { |
| 473 | limitedIo.afterOp(); |
| 474 | } |
| 475 | |
| 476 | public: |
| 477 | LimitedIo limitedIo; |
| 478 | |
| 479 | std::vector<Interest> receivedInterests; |
| 480 | std::vector<Data> receivedDatas; |
| 481 | }; |
| 482 | |
| 483 | |
| 484 | BOOST_FIXTURE_TEST_CASE_TEMPLATE(CorruptedInput, Dataset, |
| 485 | CorruptedPackets, SimpleEndToEndFixture) |
| 486 | { |
| 487 | UnixStreamFactory factory; |
| 488 | |
| 489 | shared_ptr<UnixStreamChannel> channel = factory.createChannel(CHANNEL_PATH1); |
| 490 | channel->listen(bind(&SimpleEndToEndFixture::onFaceCreated, this, _1), |
| 491 | bind(&SimpleEndToEndFixture::onConnectFailed, this, _1)); |
| 492 | |
| 493 | DummyStreamSender<stream_protocol, Dataset> sender; |
| 494 | sender.start(stream_protocol::endpoint(CHANNEL_PATH1)); |
| 495 | |
| 496 | BOOST_CHECK_MESSAGE(limitedIo.run(LimitedIo::UNLIMITED_OPS, |
| 497 | time::seconds(1)) == LimitedIo::EXCEED_TIME, |
| 498 | "Exception thrown for " + Dataset::getName()); |
| 499 | } |
| 500 | |
| 501 | |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 502 | BOOST_AUTO_TEST_SUITE_END() |
| 503 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 504 | } // namespace tests |
Davide Pesavento | bc4dd8c | 2014-02-14 20:01:01 +0100 | [diff] [blame] | 505 | } // namespace nfd |