Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [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 | * |
| 10 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 11 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 12 | * |
| 13 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 14 | * of the GNU General Public License as published by the Free Software Foundation, |
| 15 | * either version 3 of the License, or (at your option) any later version. |
| 16 | * |
| 17 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 18 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 19 | * PURPOSE. See the GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along with |
| 22 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 23 | **/ |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 24 | |
| 25 | #include "face/ndnlp-sequence-generator.hpp" |
| 26 | #include "face/ndnlp-slicer.hpp" |
Junxiao Shi | d6dcd2c | 2014-02-16 14:49:54 -0700 | [diff] [blame] | 27 | #include "face/ndnlp-partial-message-store.hpp" |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 28 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 29 | #include "tests/test-common.hpp" |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 30 | |
Davide Pesavento | 1bdef28 | 2014-04-08 20:59:50 +0200 | [diff] [blame^] | 31 | #include <boost/scoped_array.hpp> |
| 32 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 33 | namespace nfd { |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 34 | namespace tests { |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 35 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 36 | BOOST_FIXTURE_TEST_SUITE(FaceNdnlp, BaseFixture) |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 37 | |
| 38 | BOOST_AUTO_TEST_CASE(SequenceBlock) |
| 39 | { |
| 40 | ndnlp::SequenceBlock sb(0x8000, 2); |
| 41 | BOOST_CHECK_EQUAL(sb.count(), 2); |
| 42 | BOOST_CHECK_EQUAL(sb[0], 0x8000); |
| 43 | BOOST_CHECK_EQUAL(sb[1], 0x8001); |
| 44 | BOOST_CHECK_THROW(sb[2], std::out_of_range); |
| 45 | } |
| 46 | |
| 47 | // sequence number can safely wrap around |
| 48 | BOOST_AUTO_TEST_CASE(SequenceBlockWrap) |
| 49 | { |
| 50 | ndnlp::SequenceBlock sb(std::numeric_limits<uint64_t>::max(), 2); |
| 51 | BOOST_CHECK_EQUAL(sb[0], std::numeric_limits<uint64_t>::max()); |
| 52 | BOOST_CHECK_EQUAL(sb[1], std::numeric_limits<uint64_t>::min()); |
| 53 | BOOST_CHECK_EQUAL(sb[1] - sb[0], 1); |
| 54 | } |
| 55 | |
| 56 | BOOST_AUTO_TEST_CASE(SequenceGenerator) |
| 57 | { |
| 58 | ndnlp::SequenceGenerator seqgen; |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 59 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 60 | ndnlp::SequenceBlock sb1 = seqgen.nextBlock(2); |
| 61 | BOOST_CHECK_EQUAL(sb1.count(), 2); |
| 62 | |
| 63 | ndnlp::SequenceBlock sb2 = seqgen.nextBlock(1); |
| 64 | BOOST_CHECK_NE(sb1[0], sb2[0]); |
| 65 | BOOST_CHECK_NE(sb1[1], sb2[0]); |
| 66 | } |
| 67 | |
| 68 | // slice a Block to one NDNLP packet |
| 69 | BOOST_AUTO_TEST_CASE(Slice1) |
| 70 | { |
| 71 | uint8_t blockValue[60]; |
| 72 | memset(blockValue, 0xcc, sizeof(blockValue)); |
| 73 | Block block = ndn::dataBlock(0x01, blockValue, sizeof(blockValue)); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 74 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 75 | ndnlp::Slicer slicer(9000); |
| 76 | ndnlp::PacketArray pa = slicer.slice(block); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 77 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 78 | BOOST_REQUIRE_EQUAL(pa->size(), 1); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 79 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 80 | const Block& pkt = pa->at(0); |
| 81 | BOOST_CHECK_EQUAL(pkt.type(), static_cast<uint32_t>(tlv::NdnlpData)); |
| 82 | pkt.parse(); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 83 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 84 | const Block::element_container& elements = pkt.elements(); |
| 85 | BOOST_REQUIRE_EQUAL(elements.size(), 2); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 86 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 87 | const Block& sequenceElement = elements[0]; |
| 88 | BOOST_CHECK_EQUAL(sequenceElement.type(), static_cast<uint32_t>(tlv::NdnlpSequence)); |
| 89 | BOOST_REQUIRE_EQUAL(sequenceElement.value_size(), sizeof(uint64_t)); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 90 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 91 | const Block& payloadElement = elements[1]; |
| 92 | BOOST_CHECK_EQUAL(payloadElement.type(), static_cast<uint32_t>(tlv::NdnlpPayload)); |
| 93 | size_t payloadSize = payloadElement.value_size(); |
| 94 | BOOST_CHECK_EQUAL(payloadSize, block.size()); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 95 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 96 | BOOST_CHECK_EQUAL_COLLECTIONS(payloadElement.value_begin(), payloadElement.value_end(), |
| 97 | block.begin(), block.end()); |
| 98 | } |
| 99 | |
| 100 | // slice a Block to four NDNLP packets |
Junxiao Shi | d6dcd2c | 2014-02-16 14:49:54 -0700 | [diff] [blame] | 101 | BOOST_AUTO_TEST_CASE(Slice4) |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 102 | { |
| 103 | uint8_t blockValue[5050]; |
| 104 | memset(blockValue, 0xcc, sizeof(blockValue)); |
| 105 | Block block = ndn::dataBlock(0x01, blockValue, sizeof(blockValue)); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 106 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 107 | ndnlp::Slicer slicer(1500); |
| 108 | ndnlp::PacketArray pa = slicer.slice(block); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 109 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 110 | BOOST_REQUIRE_EQUAL(pa->size(), 4); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 111 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 112 | uint64_t seq0 = 0xdddd; |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 113 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 114 | size_t totalPayloadSize = 0; |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 115 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 116 | for (size_t i = 0; i < 4; ++i) { |
| 117 | const Block& pkt = pa->at(i); |
| 118 | BOOST_CHECK_EQUAL(pkt.type(), static_cast<uint32_t>(tlv::NdnlpData)); |
| 119 | pkt.parse(); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 120 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 121 | const Block::element_container& elements = pkt.elements(); |
| 122 | BOOST_REQUIRE_EQUAL(elements.size(), 4); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 123 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 124 | const Block& sequenceElement = elements[0]; |
| 125 | BOOST_CHECK_EQUAL(sequenceElement.type(), static_cast<uint32_t>(tlv::NdnlpSequence)); |
| 126 | BOOST_REQUIRE_EQUAL(sequenceElement.value_size(), sizeof(uint64_t)); |
| 127 | uint64_t seq = be64toh(*reinterpret_cast<const uint64_t*>( |
| 128 | &*sequenceElement.value_begin())); |
| 129 | if (i == 0) { |
| 130 | seq0 = seq; |
| 131 | } |
| 132 | BOOST_CHECK_EQUAL(seq, seq0 + i); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 133 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 134 | const Block& fragIndexElement = elements[1]; |
| 135 | BOOST_CHECK_EQUAL(fragIndexElement.type(), static_cast<uint32_t>(tlv::NdnlpFragIndex)); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 136 | uint64_t fragIndex = ndn::readNonNegativeInteger(fragIndexElement); |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 137 | BOOST_CHECK_EQUAL(fragIndex, i); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 138 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 139 | const Block& fragCountElement = elements[2]; |
| 140 | BOOST_CHECK_EQUAL(fragCountElement.type(), static_cast<uint32_t>(tlv::NdnlpFragCount)); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 141 | uint64_t fragCount = ndn::readNonNegativeInteger(fragCountElement); |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 142 | BOOST_CHECK_EQUAL(fragCount, 4); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 143 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 144 | const Block& payloadElement = elements[3]; |
| 145 | BOOST_CHECK_EQUAL(payloadElement.type(), static_cast<uint32_t>(tlv::NdnlpPayload)); |
| 146 | size_t payloadSize = payloadElement.value_size(); |
| 147 | totalPayloadSize += payloadSize; |
| 148 | } |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 149 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 150 | BOOST_CHECK_EQUAL(totalPayloadSize, block.size()); |
| 151 | } |
| 152 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 153 | class ReassembleFixture : protected BaseFixture |
Junxiao Shi | d6dcd2c | 2014-02-16 14:49:54 -0700 | [diff] [blame] | 154 | { |
| 155 | protected: |
| 156 | ReassembleFixture() |
Junxiao Shi | 98e29f4 | 2014-03-31 10:27:26 -0700 | [diff] [blame] | 157 | : m_slicer(1500) |
Junxiao Shi | d6dcd2c | 2014-02-16 14:49:54 -0700 | [diff] [blame] | 158 | { |
| 159 | m_partialMessageStore.onReceive += bind(&std::vector<Block>::push_back, |
| 160 | &m_received, _1); |
| 161 | } |
| 162 | |
| 163 | Block |
| 164 | makeBlock(size_t valueLength) |
| 165 | { |
Davide Pesavento | 1bdef28 | 2014-04-08 20:59:50 +0200 | [diff] [blame^] | 166 | boost::scoped_array<uint8_t> blockValue(new uint8_t[valueLength]); |
| 167 | memset(blockValue.get(), 0xcc, valueLength); |
| 168 | return ndn::dataBlock(0x01, blockValue.get(), valueLength); |
Junxiao Shi | d6dcd2c | 2014-02-16 14:49:54 -0700 | [diff] [blame] | 169 | } |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 170 | |
Junxiao Shi | d6dcd2c | 2014-02-16 14:49:54 -0700 | [diff] [blame] | 171 | protected: |
Junxiao Shi | d6dcd2c | 2014-02-16 14:49:54 -0700 | [diff] [blame] | 172 | ndnlp::Slicer m_slicer; |
| 173 | ndnlp::PartialMessageStore m_partialMessageStore; |
| 174 | |
| 175 | // received network layer packets |
| 176 | std::vector<Block> m_received; |
| 177 | }; |
| 178 | |
| 179 | // reassemble one NDNLP packets into one Block |
| 180 | BOOST_FIXTURE_TEST_CASE(Reassemble1, ReassembleFixture) |
| 181 | { |
| 182 | Block block = makeBlock(60); |
| 183 | ndnlp::PacketArray pa = m_slicer.slice(block); |
| 184 | BOOST_REQUIRE_EQUAL(pa->size(), 1); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 185 | |
Junxiao Shi | d6dcd2c | 2014-02-16 14:49:54 -0700 | [diff] [blame] | 186 | BOOST_CHECK_EQUAL(m_received.size(), 0); |
| 187 | m_partialMessageStore.receiveNdnlpData(pa->at(0)); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 188 | |
Junxiao Shi | d6dcd2c | 2014-02-16 14:49:54 -0700 | [diff] [blame] | 189 | BOOST_REQUIRE_EQUAL(m_received.size(), 1); |
| 190 | BOOST_CHECK_EQUAL_COLLECTIONS(m_received.at(0).begin(), m_received.at(0).end(), |
| 191 | block.begin(), block.end()); |
| 192 | } |
| 193 | |
| 194 | // reassemble four and two NDNLP packets into two Blocks |
| 195 | BOOST_FIXTURE_TEST_CASE(Reassemble4and2, ReassembleFixture) |
| 196 | { |
| 197 | Block block = makeBlock(5050); |
| 198 | ndnlp::PacketArray pa = m_slicer.slice(block); |
| 199 | BOOST_REQUIRE_EQUAL(pa->size(), 4); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 200 | |
Junxiao Shi | d6dcd2c | 2014-02-16 14:49:54 -0700 | [diff] [blame] | 201 | Block block2 = makeBlock(2000); |
| 202 | ndnlp::PacketArray pa2 = m_slicer.slice(block2); |
| 203 | BOOST_REQUIRE_EQUAL(pa2->size(), 2); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 204 | |
Junxiao Shi | d6dcd2c | 2014-02-16 14:49:54 -0700 | [diff] [blame] | 205 | BOOST_CHECK_EQUAL(m_received.size(), 0); |
| 206 | m_partialMessageStore.receiveNdnlpData(pa->at(0)); |
| 207 | BOOST_CHECK_EQUAL(m_received.size(), 0); |
| 208 | m_partialMessageStore.receiveNdnlpData(pa->at(1)); |
| 209 | BOOST_CHECK_EQUAL(m_received.size(), 0); |
| 210 | m_partialMessageStore.receiveNdnlpData(pa2->at(1)); |
| 211 | BOOST_CHECK_EQUAL(m_received.size(), 0); |
| 212 | m_partialMessageStore.receiveNdnlpData(pa->at(1)); |
| 213 | BOOST_CHECK_EQUAL(m_received.size(), 0); |
| 214 | m_partialMessageStore.receiveNdnlpData(pa2->at(0)); |
| 215 | BOOST_CHECK_EQUAL(m_received.size(), 1); |
| 216 | m_partialMessageStore.receiveNdnlpData(pa->at(3)); |
| 217 | BOOST_CHECK_EQUAL(m_received.size(), 1); |
| 218 | m_partialMessageStore.receiveNdnlpData(pa->at(2)); |
Junxiao Shi | df3b438 | 2014-02-23 11:28:21 -0700 | [diff] [blame] | 219 | |
Junxiao Shi | d6dcd2c | 2014-02-16 14:49:54 -0700 | [diff] [blame] | 220 | BOOST_REQUIRE_EQUAL(m_received.size(), 2); |
| 221 | BOOST_CHECK_EQUAL_COLLECTIONS(m_received.at(1).begin(), m_received.at(1).end(), |
| 222 | block.begin(), block.end()); |
| 223 | BOOST_CHECK_EQUAL_COLLECTIONS(m_received.at(0).begin(), m_received.at(0).end(), |
| 224 | block2.begin(), block2.end()); |
| 225 | } |
| 226 | |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 227 | BOOST_AUTO_TEST_SUITE_END() |
| 228 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 229 | } // namespace tests |
Junxiao Shi | 9b0d3e9 | 2014-02-15 12:27:12 -0700 | [diff] [blame] | 230 | } // namespace nfd |