blob: f58bece49f124a1423d3bc1ad8a33d50cd5300f3 [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 Pesavento765abc92021-12-27 00:44:04 -05003 * Copyright (c) 2013-2021 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-sink.hpp"
Yingdi Yu3168c302015-07-04 16:45:40 -070023
Davide Pesavento7e780642018-11-24 15:51:34 -050024#include "tests/boost-test.hpp"
Yingdi Yu3168c302015-07-04 16:45:40 -070025
26namespace ndn {
27namespace security {
28namespace transform {
29namespace tests {
30
31BOOST_AUTO_TEST_SUITE(Security)
32BOOST_AUTO_TEST_SUITE(Transform)
33BOOST_AUTO_TEST_SUITE(TestStreamSink)
34
35BOOST_AUTO_TEST_CASE(Basic)
36{
Davide Pesavento765abc92021-12-27 00:44:04 -050037 const uint8_t in[] = {
Yingdi Yu3168c302015-07-04 16:45:40 -070038 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
Davide Pesavento765abc92021-12-27 00:44:04 -050039 0x20, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
Yingdi Yu3168c302015-07-04 16:45:40 -070040 };
41 std::ostringstream os;
42 StreamSink sink(os);
Davide Pesavento765abc92021-12-27 00:44:04 -050043 BOOST_CHECK_EQUAL(sink.write({in, 4}), 4);
44 BOOST_CHECK_EQUAL(sink.write({in + 4, 4}), 4);
45 BOOST_CHECK_EQUAL(sink.write({in + 8, 4}), 4);
46 BOOST_CHECK_EQUAL(sink.write({in + 12, 4}), 4);
Yingdi Yu3168c302015-07-04 16:45:40 -070047 sink.end();
Davide Pesavento765abc92021-12-27 00:44:04 -050048
Yingdi Yu3168c302015-07-04 16:45:40 -070049 std::string out = os.str();
50 BOOST_CHECK_EQUAL_COLLECTIONS(in, in + sizeof(in), out.begin(), out.end());
Davide Pesavento765abc92021-12-27 00:44:04 -050051 BOOST_CHECK_THROW(sink.write({in + 8, 8}), transform::Error);
Yingdi Yu3168c302015-07-04 16:45:40 -070052}
53
54BOOST_AUTO_TEST_SUITE_END() // TestStreamSink
55BOOST_AUTO_TEST_SUITE_END() // Transform
56BOOST_AUTO_TEST_SUITE_END() // Security
57
58} // namespace tests
59} // namespace transform
60} // namespace security
61} // namespace ndn