blob: be10b13a3b8a15d53ea8db4f428b35b95e191b3a [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/bool-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
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040026namespace ndn::tests {
27
28using namespace ndn::security::transform;
Yingdi Yu3168c302015-07-04 16:45:40 -070029
30BOOST_AUTO_TEST_SUITE(Security)
31BOOST_AUTO_TEST_SUITE(Transform)
32BOOST_AUTO_TEST_SUITE(TestBoolSink)
33
34BOOST_AUTO_TEST_CASE(Basic)
35{
Davide Pesavento765abc92021-12-27 00:44:04 -050036 const uint8_t in1[] = {0x00, 0x01};
Yingdi Yu3168c302015-07-04 16:45:40 -070037 bool value1 = true;
38 BoolSink sink1(value1);
Davide Pesavento765abc92021-12-27 00:44:04 -050039 BOOST_CHECK_EQUAL(sink1.write({in1, 1}), 1);
40 BOOST_CHECK_EQUAL(sink1.write({in1 + 1, 1}), 1);
Yingdi Yu3168c302015-07-04 16:45:40 -070041 sink1.end();
42 BOOST_CHECK_EQUAL(value1, false);
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040043 BOOST_CHECK_THROW(sink1.write({in1 + 1, 1}), Error);
Yingdi Yu3168c302015-07-04 16:45:40 -070044
Davide Pesavento765abc92021-12-27 00:44:04 -050045 const uint8_t in2[] = {0x01, 0x00};
Yingdi Yu3168c302015-07-04 16:45:40 -070046 bool value2 = false;
47 BoolSink sink2(value2);
Davide Pesavento765abc92021-12-27 00:44:04 -050048 BOOST_CHECK_EQUAL(sink2.write({in2, 1}), 1);
49 BOOST_CHECK_EQUAL(sink2.write({in2 + 1, 1}), 1);
Yingdi Yu3168c302015-07-04 16:45:40 -070050 sink2.end();
51 BOOST_CHECK_EQUAL(value2, true);
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040052 BOOST_CHECK_THROW(sink2.write({in2 + 1, 1}), Error);
Yingdi Yu3168c302015-07-04 16:45:40 -070053}
54
55BOOST_AUTO_TEST_SUITE_END() // TestBoolSink
56BOOST_AUTO_TEST_SUITE_END() // Transform
57BOOST_AUTO_TEST_SUITE_END() // Security
58
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040059} // namespace ndn::tests