Junxiao Shi | 02b5125 | 2016-09-04 04:30:31 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 74daf74 | 2018-11-23 18:14:13 -0500 | [diff] [blame] | 2 | /* |
Davide Pesavento | e16ac86 | 2022-09-25 20:48:22 -0400 | [diff] [blame] | 3 | * Copyright (c) 2013-2022 Regents of the University of California. |
Junxiao Shi | 02b5125 | 2016-09-04 04:30:31 +0000 | [diff] [blame] | 4 | * |
| 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 Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 22 | #include "ndn-cxx/encoding/buffer-stream.hpp" |
Junxiao Shi | 02b5125 | 2016-09-04 04:30:31 +0000 | [diff] [blame] | 23 | |
Davide Pesavento | 7e78064 | 2018-11-24 15:51:34 -0500 | [diff] [blame] | 24 | #include "tests/boost-test.hpp" |
Junxiao Shi | 02b5125 | 2016-09-04 04:30:31 +0000 | [diff] [blame] | 25 | |
| 26 | namespace ndn { |
| 27 | namespace tests { |
| 28 | |
| 29 | BOOST_AUTO_TEST_SUITE(Encoding) |
| 30 | BOOST_AUTO_TEST_SUITE(TestBufferStream) |
| 31 | |
| 32 | BOOST_AUTO_TEST_CASE(Empty) |
| 33 | { |
| 34 | OBufferStream os; |
| 35 | |
| 36 | shared_ptr<Buffer> buf = os.buf(); |
| 37 | BOOST_CHECK_EQUAL(buf->size(), 0); |
| 38 | } |
| 39 | |
| 40 | BOOST_AUTO_TEST_CASE(Put) |
| 41 | { |
| 42 | OBufferStream os; |
| 43 | os.put(0x33); |
| 44 | os.put(0x44); |
| 45 | |
| 46 | shared_ptr<Buffer> buf = os.buf(); |
| 47 | BOOST_REQUIRE_EQUAL(buf->size(), 2); |
| 48 | BOOST_CHECK_EQUAL(buf->at(0), 0x33); |
| 49 | BOOST_CHECK_EQUAL(buf->at(1), 0x44); |
| 50 | } |
| 51 | |
| 52 | BOOST_AUTO_TEST_CASE(Write) |
| 53 | { |
| 54 | OBufferStream os; |
| 55 | os.write("\x11\x22", 2); |
| 56 | |
| 57 | shared_ptr<Buffer> buf = os.buf(); |
| 58 | BOOST_REQUIRE_EQUAL(buf->size(), 2); |
| 59 | BOOST_CHECK_EQUAL(buf->at(0), 0x11); |
| 60 | BOOST_CHECK_EQUAL(buf->at(1), 0x22); |
| 61 | } |
| 62 | |
| 63 | BOOST_AUTO_TEST_CASE(Destructor) // Bug 3727 |
| 64 | { |
| 65 | auto os = make_unique<OBufferStream>(); |
Davide Pesavento | e16ac86 | 2022-09-25 20:48:22 -0400 | [diff] [blame] | 66 | auto buf = os->buf(); |
Junxiao Shi | 02b5125 | 2016-09-04 04:30:31 +0000 | [diff] [blame] | 67 | *os << 'x'; |
Davide Pesavento | e16ac86 | 2022-09-25 20:48:22 -0400 | [diff] [blame] | 68 | // do NOT flush or call buf() here |
Davide Pesavento | eee3e82 | 2016-11-26 19:19:34 +0100 | [diff] [blame] | 69 | |
Davide Pesavento | e16ac86 | 2022-09-25 20:48:22 -0400 | [diff] [blame] | 70 | os.reset(); // should not cause use-after-free |
| 71 | BOOST_CHECK_EQUAL(buf->size(), 1); |
| 72 | } |
| 73 | |
| 74 | BOOST_AUTO_TEST_CASE(Close) // Bug 5240 |
| 75 | { |
| 76 | OBufferStream os; |
| 77 | os << "foo"; |
| 78 | os.close(); |
| 79 | |
| 80 | auto buf = os.buf(); // should not cause assertion failure |
| 81 | BOOST_CHECK_EQUAL(buf->size(), 3); |
Junxiao Shi | 02b5125 | 2016-09-04 04:30:31 +0000 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | BOOST_AUTO_TEST_SUITE_END() // TestBufferStream |
| 85 | BOOST_AUTO_TEST_SUITE_END() // Encoding |
| 86 | |
| 87 | } // namespace tests |
| 88 | } // namespace ndn |