blob: 2def4bbb8027e7b8a6da99facdc9c3e68793c9d7 [file] [log] [blame]
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2014 Regents of the University of California.
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
22/**
23 * Original copyright notice from NFD:
24 *
25 * Copyright (c) 2014, Regents of the University of California,
26 * Arizona Board of Regents,
27 * Colorado State University,
28 * University Pierre & Marie Curie, Sorbonne University,
29 * Washington University in St. Louis,
30 * Beijing Institute of Technology,
31 * The University of Memphis
32 *
33 * This file is part of NFD (Named Data Networking Forwarding Daemon).
34 * See AUTHORS.md for complete list of NFD authors and contributors.
35 *
36 * NFD is free software: you can redistribute it and/or modify it under the terms
37 * of the GNU General Public License as published by the Free Software Foundation,
38 * either version 3 of the License, or (at your option) any later version.
39 *
40 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
41 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
42 * PURPOSE. See the GNU General Public License for more details.
43 *
44 * You should have received a copy of the GNU General Public License along with
45 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
46 */
47
48#ifndef NDN_UNIT_TESTS_UTIL_SIMPLE_NOTIFICATION_HPP
49#define NDN_UNIT_TESTS_UTIL_SIMPLE_NOTIFICATION_HPP
50
51#include "common.hpp"
52
53#include "encoding/encoding-buffer.hpp"
54#include "security/key-chain.hpp"
55
56namespace ndn {
57namespace tests {
58
59class SimpleNotification
60{
61public:
62 SimpleNotification()
63 {
64 }
65
66 explicit
67 SimpleNotification(const Block& block)
68 {
69 wireDecode(block);
70 }
71
72 SimpleNotification(const std::string& message)
73 : m_message(message)
74 {
75 }
76
77 ~SimpleNotification()
78 {
79 }
80
81 Block
82 wireEncode() const
83 {
84 ndn::EncodingBuffer buffer;
85 prependByteArrayBlock(buffer,
86 0x8888,
87 reinterpret_cast<const uint8_t*>(m_message.c_str()),
88 m_message.size());
89 return buffer.block();
90 }
91
92 void
93 wireDecode(const Block& block)
94 {
95 m_message.assign(reinterpret_cast<const char*>(block.value()),
96 block.value_size());
97
98 // error for testing
99 if (!m_message.empty() && m_message[0] == '\x07')
100 throw tlv::Error("0x07 error");
101 }
102
103public:
104 const std::string&
105 getMessage() const
106 {
107 return m_message;
108 }
109
110 void
111 setMessage(const std::string& message)
112 {
113 m_message = message;
114 }
115
116private:
117 std::string m_message;
118};
119
120} // namespace tests
121} // namespace ndn
122
123#endif // NDN_UNIT_TESTS_UTIL_CORE_SIMPLE_NOTIFICATION_HPP