blob: 29c2e7eaa5ae8d5ea69d8bafd3ba1e83dd908fc8 [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 Pesavento74daf742018-11-23 18:14:13 -05003 * Copyright (c) 2013-2018 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
30namespace ndn {
31namespace security {
32namespace transform {
33namespace tests {
34
35BOOST_AUTO_TEST_SUITE(Security)
36BOOST_AUTO_TEST_SUITE(Transform)
37BOOST_AUTO_TEST_SUITE(TestStripSpace)
38
39BOOST_AUTO_TEST_CASE(Basic)
40{
41 const char* input = R"STR(
42 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
43 incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
44 exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
45 irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
46 pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
47 deserunt mollit anim id est laborum.
48 )STR";
49 size_t inputLen = strlen(input);
50
51 OBufferStream os;
52 StepSource source;
53 source >> stripSpace() >> streamSink(os);
54
55 for (size_t offset = 0; offset < inputLen; offset += 40) {
56 source.write(reinterpret_cast<const uint8_t*>(input + offset),
57 std::min<size_t>(40, inputLen - offset));
58 }
59 source.end();
60
61 std::string expected(
62 "Loremipsumdolorsitamet,consecteturadipiscingelit,seddoeiusmodtemporincididuntutl"
63 "aboreetdoloremagnaaliqua.Utenimadminimveniam,quisnostrudexercitationullamcolabor"
64 "isnisiutaliquipexeacommodoconsequat.Duisauteiruredolorinreprehenderitinvoluptate"
65 "velitessecillumdoloreeufugiatnullapariatur.Excepteursintoccaecatcupidatatnonproi"
66 "dent,suntinculpaquiofficiadeseruntmollitanimidestlaborum.");
67 ConstBufferPtr buf = os.buf();
Davide Pesavento5d0b0102017-10-07 13:43:16 -040068 BOOST_CHECK_EQUAL(std::string(buf->get<char>(), buf->size()), expected);
Junxiao Shi4ce0bcf2016-09-03 07:09:03 +000069}
70
71BOOST_AUTO_TEST_SUITE_END() // TestStripSpace
72BOOST_AUTO_TEST_SUITE_END() // Transform
73BOOST_AUTO_TEST_SUITE_END() // Security
74
75} // namespace tests
76} // namespace transform
77} // namespace security
78} // namespace ndn