blob: 4b6d43d9439817a5c4b34764775f1dca11b76f81 [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#include "util/notification-stream.hpp"
49#include "simple-notification.hpp"
Alexander Afanasyevd3a55b22014-11-18 19:23:28 -080050#include "util/dummy-client-face.hpp"
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070051
52#include "boost-test.hpp"
Alexander Afanasyevd3a55b22014-11-18 19:23:28 -080053#include "../unit-test-time-fixture.hpp"
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070054
55namespace ndn {
Junxiao Shia60d9362014-11-12 09:38:21 -070056namespace util {
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070057namespace tests {
58
Alexander Afanasyevd3a55b22014-11-18 19:23:28 -080059BOOST_FIXTURE_TEST_SUITE(UtilNotificationStream, ndn::tests::UnitTestTimeFixture)
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070060
61BOOST_AUTO_TEST_CASE(Post)
62{
Alexander Afanasyevd3a55b22014-11-18 19:23:28 -080063 shared_ptr<DummyClientFace> face = makeDummyClientFace(io);
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070064 ndn::KeyChain keyChain;
65 util::NotificationStream<SimpleNotification> notificationStream(*face,
66 "/localhost/nfd/NotificationStreamTest", keyChain);
67
68 SimpleNotification event1("msg1");
69 notificationStream.postNotification(event1);
Alexander Afanasyevd3a55b22014-11-18 19:23:28 -080070
71 advanceClocks(time::milliseconds(1));
72
Junxiao Shia60d9362014-11-12 09:38:21 -070073 BOOST_REQUIRE_EQUAL(face->sentDatas.size(), 1);
74 BOOST_CHECK_EQUAL(face->sentDatas[0].getName(),
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070075 "/localhost/nfd/NotificationStreamTest/%FE%00");
76 SimpleNotification decoded1;
Junxiao Shia60d9362014-11-12 09:38:21 -070077 BOOST_CHECK_NO_THROW(decoded1.wireDecode(face->sentDatas[0].getContent().blockFromValue()));
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070078 BOOST_CHECK_EQUAL(decoded1.getMessage(), "msg1");
79
80 SimpleNotification event2("msg2");
81 notificationStream.postNotification(event2);
Alexander Afanasyevd3a55b22014-11-18 19:23:28 -080082
83 advanceClocks(time::milliseconds(1));
84
Junxiao Shia60d9362014-11-12 09:38:21 -070085 BOOST_REQUIRE_EQUAL(face->sentDatas.size(), 2);
86 BOOST_CHECK_EQUAL(face->sentDatas[1].getName(),
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070087 "/localhost/nfd/NotificationStreamTest/%FE%01");
88 SimpleNotification decoded2;
Junxiao Shia60d9362014-11-12 09:38:21 -070089 BOOST_CHECK_NO_THROW(decoded2.wireDecode(face->sentDatas[1].getContent().blockFromValue()));
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070090 BOOST_CHECK_EQUAL(decoded2.getMessage(), "msg2");
91}
92
93BOOST_AUTO_TEST_SUITE_END()
94
95} // namespace tests
Junxiao Shia60d9362014-11-12 09:38:21 -070096} // namespace util
Alexander Afanasyev4abdbf12014-08-11 12:48:54 -070097} // namespace ndn