blob: 1d22a2a413ee84b2cae143aaabc4ee211c1883ad [file] [log] [blame]
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev74633892015-02-08 18:08:46 -08003 * Copyright (c) 2014-2015, 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
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070028#ifndef NDN_UNIT_TESTS_UTIL_SIMPLE_NOTIFICATION_HPP
29#define NDN_UNIT_TESTS_UTIL_SIMPLE_NOTIFICATION_HPP
30
31#include "common.hpp"
32
33#include "encoding/encoding-buffer.hpp"
34#include "security/key-chain.hpp"
35
36namespace ndn {
Junxiao Shia60d9362014-11-12 09:38:21 -070037namespace util {
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070038namespace tests {
39
40class SimpleNotification
41{
42public:
43 SimpleNotification()
44 {
45 }
46
47 explicit
48 SimpleNotification(const Block& block)
49 {
50 wireDecode(block);
51 }
52
53 SimpleNotification(const std::string& message)
54 : m_message(message)
55 {
56 }
57
58 ~SimpleNotification()
59 {
60 }
61
62 Block
63 wireEncode() const
64 {
65 ndn::EncodingBuffer buffer;
Alexander Afanasyev74633892015-02-08 18:08:46 -080066 buffer.prependByteArrayBlock(0x8888,
67 reinterpret_cast<const uint8_t*>(m_message.c_str()),
68 m_message.size());
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070069 return buffer.block();
70 }
71
72 void
73 wireDecode(const Block& block)
74 {
75 m_message.assign(reinterpret_cast<const char*>(block.value()),
76 block.value_size());
77
78 // error for testing
79 if (!m_message.empty() && m_message[0] == '\x07')
80 throw tlv::Error("0x07 error");
81 }
82
83public:
84 const std::string&
85 getMessage() const
86 {
87 return m_message;
88 }
89
90 void
91 setMessage(const std::string& message)
92 {
93 m_message = message;
94 }
95
96private:
97 std::string m_message;
98};
99
100} // namespace tests
Junxiao Shia60d9362014-11-12 09:38:21 -0700101} // namespace util
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -0700102} // namespace ndn
103
104#endif // NDN_UNIT_TESTS_UTIL_CORE_SIMPLE_NOTIFICATION_HPP