blob: ece2c4852b874c0eedec6ef57e8eb69232000b63 [file] [log] [blame]
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento74daf742018-11-23 18:14:13 -05002/*
Davide Pesaventofbea4fc2022-02-08 07:26:04 -05003 * Copyright (c) 2014-2022 Regents of the University of California,
Davide Pesaventob5f8bcc2017-02-05 17:58:05 -05004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070010 *
11 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
12 *
13 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
14 * terms of the GNU Lesser General Public License as published by the Free Software
15 * Foundation, either version 3 of the License, or (at your option) any later version.
16 *
17 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
18 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
19 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
20 *
21 * You should have received copies of the GNU General Public License and GNU Lesser
22 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
23 * <http://www.gnu.org/licenses/>.
24 *
25 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
26 */
27
Davide Pesavento09904412021-03-24 16:40:53 -040028#ifndef NDN_CXX_TESTS_UNIT_UTIL_SIMPLE_NOTIFICATION_HPP
29#define NDN_CXX_TESTS_UNIT_UTIL_SIMPLE_NOTIFICATION_HPP
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070030
Davide Pesaventofbea4fc2022-02-08 07:26:04 -050031#include "ndn-cxx/encoding/block-helpers.hpp"
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070032
33namespace ndn {
Junxiao Shia60d9362014-11-12 09:38:21 -070034namespace util {
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070035namespace tests {
36
37class SimpleNotification
38{
39public:
Davide Pesaventoeee3e822016-11-26 19:19:34 +010040 SimpleNotification() = default;
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070041
42 explicit
43 SimpleNotification(const Block& block)
44 {
45 wireDecode(block);
46 }
47
48 SimpleNotification(const std::string& message)
49 : m_message(message)
50 {
51 }
52
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070053 Block
54 wireEncode() const
55 {
Davide Pesaventofbea4fc2022-02-08 07:26:04 -050056 return makeStringBlock(0x8888, m_message);
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070057 }
58
59 void
60 wireDecode(const Block& block)
61 {
Davide Pesavento258d51a2022-02-27 21:26:28 -050062 m_message = readString(block);
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070063
64 // error for testing
65 if (!m_message.empty() && m_message[0] == '\x07')
Davide Pesavento923ba442019-02-12 22:00:38 -050066 NDN_THROW(tlv::Error("0x07 error"));
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070067 }
68
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070069 const std::string&
70 getMessage() const
71 {
72 return m_message;
73 }
74
75 void
76 setMessage(const std::string& message)
77 {
78 m_message = message;
79 }
80
81private:
82 std::string m_message;
83};
84
85} // namespace tests
Junxiao Shia60d9362014-11-12 09:38:21 -070086} // namespace util
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070087} // namespace ndn
88
Davide Pesavento09904412021-03-24 16:40:53 -040089#endif // NDN_CXX_TESTS_UNIT_UTIL_SIMPLE_NOTIFICATION_HPP