blob: 1500226e42efd5c3c728fe72818cef693f3ef3c2 [file] [log] [blame]
Yingdi Yu3168c302015-07-04 16:45:40 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento74daf742018-11-23 18:14:13 -05002/*
Davide Pesavento47ce2ee2023-05-09 01:33:33 -04003 * Copyright (c) 2013-2023 Regents of the University of California.
Yingdi Yu3168c302015-07-04 16:45:40 -07004 *
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/stream-source.hpp"
23#include "ndn-cxx/security/transform/stream-sink.hpp"
Yingdi Yu3168c302015-07-04 16:45:40 -070024
Davide Pesavento7e780642018-11-24 15:51:34 -050025#include "tests/boost-test.hpp"
26
Davide Pesavento49e1e872023-11-11 00:45:23 -050027#include <boost/mp11/list.hpp>
Yingdi Yu3168c302015-07-04 16:45:40 -070028
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040029namespace ndn::tests {
30
31using namespace ndn::security::transform;
Yingdi Yu3168c302015-07-04 16:45:40 -070032
33BOOST_AUTO_TEST_SUITE(Security)
34BOOST_AUTO_TEST_SUITE(Transform)
35BOOST_AUTO_TEST_SUITE(TestStreamSource)
36
37BOOST_AUTO_TEST_CASE(Basic)
38{
39 std::string input =
40 "0123456701234567012345670123456701234567012345670123456701234567"
41 "01234567012345670123456701234567 1234567012345670123456701234567"
42 "0123456701234567012345670123456701234567012345670123456701234567"
43 "0123456701234567012345670123456701234567012345670123456701234567"
44 "0123456701234567012345670123456701234567012345670123456701234567"
45 "0123456701234567012345670123456701234567012345670123456701234567"
46 "0123456701234567012345670123456701234567012345670123456701234567"
47 "0123456701234567012345670123456701234567012345670123456701234567"
48 "0123456701234567012345670123456701234567012345670123456701234567"
49 "0123456701234567012345670123456701234567012345670123456701234567"
50 "0123456701234567012345670123456701234567012345670123456701234567"
51 "0123456701234567012345670123456701234567012345670123456701234567"
52 "0123456701234567012345670123456701234567012345670123456701234567"
53 "0123456701234567012345670123456701234567012345670123456701234567"
54 "0123456701234567012345670123456701234567012345670123456701234567"
55 "0123456701234567012345670123456701234567012345670123456701234567"
56 "0123456701234567012345670123456701234567012345670123456701234567"
57 "0123456701234567012345670123456701234567012345670123456701234567"
58 "0123456701234567012345670123456701234567012345670123456701234567"
59 "0123456701234567012345670123456701234567012345670123456701234567";
60
61 std::stringstream is(input);
62 std::stringstream os;
63 streamSource(is) >> streamSink(os);
64 std::string output = os.str();
65
66 BOOST_CHECK_EQUAL(input, output);
67}
68
Junxiao Shiba6baaf2016-08-20 02:59:20 +000069BOOST_AUTO_TEST_CASE(EmptyStream)
70{
71 std::stringstream is;
72 std::stringstream os;
73 streamSource(is) >> streamSink(os);
74
75 BOOST_CHECK_EQUAL(os.str(), "");
76}
77
Davide Pesavento49e1e872023-11-11 00:45:23 -050078using BadBits = boost::mp11::mp_list_c<std::ios_base::iostate,
79 std::ios_base::badbit,
80 std::ios_base::failbit
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040081>;
Junxiao Shiba6baaf2016-08-20 02:59:20 +000082
83BOOST_AUTO_TEST_CASE_TEMPLATE(BadStream, BadBit, BadBits)
84{
85 std::stringstream is;
86 is.setstate(BadBit::value);
87 std::stringstream os;
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040088 BOOST_CHECK_THROW(streamSource(is) >> streamSink(os), Error);
Junxiao Shiba6baaf2016-08-20 02:59:20 +000089}
90
Yingdi Yu3168c302015-07-04 16:45:40 -070091BOOST_AUTO_TEST_SUITE_END() // TestStreamSource
92BOOST_AUTO_TEST_SUITE_END() // Transform
93BOOST_AUTO_TEST_SUITE_END() // Security
94
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040095} // namespace ndn::tests