blob: 239574bf7f7bb768ed2c499960ef17a4945a85d8 [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 Pesavento47ce2ee2023-05-09 01:33:33 -04003 * Copyright (c) 2014-2023 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
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040033namespace ndn::tests {
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070034
35class SimpleNotification
36{
37public:
Davide Pesaventoeee3e822016-11-26 19:19:34 +010038 SimpleNotification() = default;
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070039
40 explicit
41 SimpleNotification(const Block& block)
42 {
43 wireDecode(block);
44 }
45
46 SimpleNotification(const std::string& message)
47 : m_message(message)
48 {
49 }
50
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070051 Block
52 wireEncode() const
53 {
Davide Pesaventofbea4fc2022-02-08 07:26:04 -050054 return makeStringBlock(0x8888, m_message);
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070055 }
56
57 void
58 wireDecode(const Block& block)
59 {
Davide Pesavento258d51a2022-02-27 21:26:28 -050060 m_message = readString(block);
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070061
62 // error for testing
63 if (!m_message.empty() && m_message[0] == '\x07')
Davide Pesavento923ba442019-02-12 22:00:38 -050064 NDN_THROW(tlv::Error("0x07 error"));
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070065 }
66
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070067 const std::string&
68 getMessage() const
69 {
70 return m_message;
71 }
72
73 void
74 setMessage(const std::string& message)
75 {
76 m_message = message;
77 }
78
79private:
80 std::string m_message;
81};
82
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040083} // namespace ndn::tests
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070084
Davide Pesavento09904412021-03-24 16:40:53 -040085#endif // NDN_CXX_TESTS_UNIT_UTIL_SIMPLE_NOTIFICATION_HPP