blob: cbc406de35bcd4ce2fa1b3d9b47cb6165742398e [file] [log] [blame]
Junxiao Shi4ce0bcf2016-09-03 07:09:03 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa84f4642017-08-23 16:14:51 -04002/*
Davide Pesavento47ce2ee2023-05-09 01:33:33 -04003 * Copyright (c) 2013-2023 Regents of the University of California.
Junxiao Shi4ce0bcf2016-09-03 07:09:03 +00004 *
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
Davide Pesavento7e780642018-11-24 15:51:34 -050022#include "ndn-cxx/security/transform/strip-space.hpp"
Junxiao Shi4ce0bcf2016-09-03 07:09:03 +000023
Davide Pesavento7e780642018-11-24 15:51:34 -050024#include "ndn-cxx/encoding/buffer-stream.hpp"
25#include "ndn-cxx/security/transform/step-source.hpp"
26#include "ndn-cxx/security/transform/stream-sink.hpp"
27
28#include "tests/boost-test.hpp"
Junxiao Shi4ce0bcf2016-09-03 07:09:03 +000029
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040030namespace ndn::tests {
31
32using namespace ndn::security::transform;
Junxiao Shi4ce0bcf2016-09-03 07:09:03 +000033
34BOOST_AUTO_TEST_SUITE(Security)
35BOOST_AUTO_TEST_SUITE(Transform)
36BOOST_AUTO_TEST_SUITE(TestStripSpace)
37
38BOOST_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";
Davide Pesavento765abc92021-12-27 00:44:04 -050048 const size_t inputLen = strlen(input);
Junxiao Shi4ce0bcf2016-09-03 07:09:03 +000049
50 OBufferStream os;
51 StepSource source;
52 source >> stripSpace() >> streamSink(os);
53
54 for (size_t offset = 0; offset < inputLen; offset += 40) {
Davide Pesavento765abc92021-12-27 00:44:04 -050055 source.write({reinterpret_cast<const uint8_t*>(input + offset),
56 std::min<size_t>(40, inputLen - offset)});
Junxiao Shi4ce0bcf2016-09-03 07:09:03 +000057 }
58 source.end();
59
Davide Pesavento765abc92021-12-27 00:44:04 -050060 const std::string expected(
Junxiao Shi4ce0bcf2016-09-03 07:09:03 +000061 "Loremipsumdolorsitamet,consecteturadipiscingelit,seddoeiusmodtemporincididuntutl"
62 "aboreetdoloremagnaaliqua.Utenimadminimveniam,quisnostrudexercitationullamcolabor"
63 "isnisiutaliquipexeacommodoconsequat.Duisauteiruredolorinreprehenderitinvoluptate"
64 "velitessecillumdoloreeufugiatnullapariatur.Excepteursintoccaecatcupidatatnonproi"
65 "dent,suntinculpaquiofficiadeseruntmollitanimidestlaborum.");
66 ConstBufferPtr buf = os.buf();
Davide Pesavento5d0b0102017-10-07 13:43:16 -040067 BOOST_CHECK_EQUAL(std::string(buf->get<char>(), buf->size()), expected);
Junxiao Shi4ce0bcf2016-09-03 07:09:03 +000068}
69
70BOOST_AUTO_TEST_SUITE_END() // TestStripSpace
71BOOST_AUTO_TEST_SUITE_END() // Transform
72BOOST_AUTO_TEST_SUITE_END() // Security
73
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040074} // namespace ndn::tests