blob: 084a5f2e5ed80af6a6ff2eb81dfb89734ccdb60c [file] [log] [blame]
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesaventob5f8bcc2017-02-05 17:58:05 -05003 * Copyright (c) 2014-2017 Regents of the University of California,
4 * 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 Pesaventoeee3e822016-11-26 19:19:34 +010028#ifndef NDN_TESTS_UNIT_TESTS_UTIL_SIMPLE_NOTIFICATION_HPP
29#define NDN_TESTS_UNIT_TESTS_UTIL_SIMPLE_NOTIFICATION_HPP
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070030
31#include "common.hpp"
32
33#include "encoding/encoding-buffer.hpp"
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070034
35namespace ndn {
Junxiao Shia60d9362014-11-12 09:38:21 -070036namespace util {
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070037namespace tests {
38
39class SimpleNotification
40{
41public:
Davide Pesaventoeee3e822016-11-26 19:19:34 +010042 SimpleNotification() = default;
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070043
44 explicit
45 SimpleNotification(const Block& block)
46 {
47 wireDecode(block);
48 }
49
50 SimpleNotification(const std::string& message)
51 : m_message(message)
52 {
53 }
54
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070055 Block
56 wireEncode() const
57 {
58 ndn::EncodingBuffer buffer;
Alexander Afanasyev74633892015-02-08 18:08:46 -080059 buffer.prependByteArrayBlock(0x8888,
60 reinterpret_cast<const uint8_t*>(m_message.c_str()),
61 m_message.size());
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070062 return buffer.block();
63 }
64
65 void
66 wireDecode(const Block& block)
67 {
68 m_message.assign(reinterpret_cast<const char*>(block.value()),
69 block.value_size());
70
71 // error for testing
72 if (!m_message.empty() && m_message[0] == '\x07')
Spyridon Mastorakis0d2ed2e2015-07-27 19:09:12 -070073 BOOST_THROW_EXCEPTION(tlv::Error("0x07 error"));
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070074 }
75
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070076 const std::string&
77 getMessage() const
78 {
79 return m_message;
80 }
81
82 void
83 setMessage(const std::string& message)
84 {
85 m_message = message;
86 }
87
88private:
89 std::string m_message;
90};
91
92} // namespace tests
Junxiao Shia60d9362014-11-12 09:38:21 -070093} // namespace util
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070094} // namespace ndn
95
Davide Pesaventoeee3e822016-11-26 19:19:34 +010096#endif // NDN_TESTS_UNIT_TESTS_UTIL_SIMPLE_NOTIFICATION_HPP