Junxiao Shi | 4ce0bcf | 2016-09-03 07:09:03 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | a84f464 | 2017-08-23 16:14:51 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 74daf74 | 2018-11-23 18:14:13 -0500 | [diff] [blame] | 3 | * Copyright (c) 2013-2018 Regents of the University of California. |
Junxiao Shi | 4ce0bcf | 2016-09-03 07:09:03 +0000 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 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. |
| 20 | */ |
| 21 | |
| 22 | #include "security/transform/strip-space.hpp" |
| 23 | #include "security/transform/step-source.hpp" |
| 24 | #include "security/transform/stream-sink.hpp" |
| 25 | #include "encoding/buffer-stream.hpp" |
Junxiao Shi | 4ce0bcf | 2016-09-03 07:09:03 +0000 | [diff] [blame] | 26 | |
| 27 | #include "boost-test.hpp" |
| 28 | |
| 29 | namespace ndn { |
| 30 | namespace security { |
| 31 | namespace transform { |
| 32 | namespace tests { |
| 33 | |
| 34 | BOOST_AUTO_TEST_SUITE(Security) |
| 35 | BOOST_AUTO_TEST_SUITE(Transform) |
| 36 | BOOST_AUTO_TEST_SUITE(TestStripSpace) |
| 37 | |
| 38 | BOOST_AUTO_TEST_CASE(Basic) |
| 39 | { |
| 40 | const char* input = R"STR( |
| 41 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor |
| 42 | incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud |
| 43 | exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute |
| 44 | irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla |
| 45 | pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia |
| 46 | deserunt mollit anim id est laborum. |
| 47 | )STR"; |
| 48 | size_t inputLen = strlen(input); |
| 49 | |
| 50 | OBufferStream os; |
| 51 | StepSource source; |
| 52 | source >> stripSpace() >> streamSink(os); |
| 53 | |
| 54 | for (size_t offset = 0; offset < inputLen; offset += 40) { |
| 55 | source.write(reinterpret_cast<const uint8_t*>(input + offset), |
| 56 | std::min<size_t>(40, inputLen - offset)); |
| 57 | } |
| 58 | source.end(); |
| 59 | |
| 60 | std::string expected( |
| 61 | "Loremipsumdolorsitamet,consecteturadipiscingelit,seddoeiusmodtemporincididuntutl" |
| 62 | "aboreetdoloremagnaaliqua.Utenimadminimveniam,quisnostrudexercitationullamcolabor" |
| 63 | "isnisiutaliquipexeacommodoconsequat.Duisauteiruredolorinreprehenderitinvoluptate" |
| 64 | "velitessecillumdoloreeufugiatnullapariatur.Excepteursintoccaecatcupidatatnonproi" |
| 65 | "dent,suntinculpaquiofficiadeseruntmollitanimidestlaborum."); |
| 66 | ConstBufferPtr buf = os.buf(); |
Davide Pesavento | 5d0b010 | 2017-10-07 13:43:16 -0400 | [diff] [blame] | 67 | BOOST_CHECK_EQUAL(std::string(buf->get<char>(), buf->size()), expected); |
Junxiao Shi | 4ce0bcf | 2016-09-03 07:09:03 +0000 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | BOOST_AUTO_TEST_SUITE_END() // TestStripSpace |
| 71 | BOOST_AUTO_TEST_SUITE_END() // Transform |
| 72 | BOOST_AUTO_TEST_SUITE_END() // Security |
| 73 | |
| 74 | } // namespace tests |
| 75 | } // namespace transform |
| 76 | } // namespace security |
| 77 | } // namespace ndn |