Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /** |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2014, Regents of the University of California. |
| 4 | * All rights reserved. |
| 5 | * |
| 6 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 7 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 8 | * |
| 9 | * This file licensed under New BSD License. See COPYING for detailed information about |
| 10 | * ndn-cxx library copyright, permissions, and redistribution restrictions. |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include "management/nfd-forwarder-status.hpp" |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 14 | #include "data.hpp" |
| 15 | |
Alexander Afanasyev | b1db7c6 | 2014-04-03 14:57:25 -0700 | [diff] [blame] | 16 | #include "boost-test.hpp" |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 17 | |
| 18 | namespace ndn { |
| 19 | namespace nfd { |
| 20 | |
Alexander Afanasyev | d1b5c41 | 2014-03-27 15:03:51 -0700 | [diff] [blame] | 21 | BOOST_AUTO_TEST_SUITE(ManagementTestNfdForwarderStatus) |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 22 | |
| 23 | BOOST_AUTO_TEST_CASE(Encode) |
| 24 | { |
| 25 | ForwarderStatus status1; |
| 26 | status1.setNfdVersion(1014210635); |
Alexander Afanasyev | 0bb9aae | 2014-04-21 18:08:18 -0700 | [diff] [blame] | 27 | status1.setStartTimestamp(time::fromUnixTimestamp(time::milliseconds(375193249325LL))); |
| 28 | status1.setCurrentTimestamp(time::fromUnixTimestamp(time::milliseconds(886109034272LL))); |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 29 | status1.setNNameTreeEntries(1849943160); |
| 30 | status1.setNFibEntries(621739748); |
| 31 | status1.setNPitEntries(482129741); |
| 32 | status1.setNMeasurementsEntries(1771725298); |
| 33 | status1.setNCsEntries(1264968688); |
| 34 | status1.setNInInterests(612811615); |
| 35 | status1.setNInDatas(1843576050); |
| 36 | status1.setNOutInterests(952144445); |
| 37 | status1.setNOutDatas(138198826); |
| 38 | |
Junxiao Shi | 7b1ba1a | 2014-03-29 01:01:56 -0700 | [diff] [blame] | 39 | Block wire; |
| 40 | BOOST_REQUIRE_NO_THROW(wire = status1.wireEncode()); |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 41 | |
| 42 | // These octets are obtained by the snippet below. |
| 43 | // This check is intended to detect unexpected encoding change in the future. |
Junxiao Shi | 7b1ba1a | 2014-03-29 01:01:56 -0700 | [diff] [blame] | 44 | //for (Buffer::const_iterator it = wire.begin(); it != wire.end(); ++it) { |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 45 | // printf("0x%02x, ", *it); |
| 46 | //} |
| 47 | static const uint8_t expected[] = { |
| 48 | 0x15, 0x50, 0x80, 0x04, 0x3c, 0x73, 0xa0, 0x4b, 0x81, 0x08, 0x00, 0x00, |
| 49 | 0x00, 0x57, 0x5b, 0x42, 0xa6, 0x2d, 0x82, 0x08, 0x00, 0x00, 0x00, 0xce, |
| 50 | 0x50, 0x36, 0xd7, 0x20, 0x83, 0x04, 0x6e, 0x43, 0xe4, 0x78, 0x84, 0x04, |
| 51 | 0x25, 0x0e, 0xfe, 0xe4, 0x85, 0x04, 0x1c, 0xbc, 0xb7, 0x4d, 0x86, 0x04, |
| 52 | 0x69, 0x9a, 0x61, 0xf2, 0x87, 0x04, 0x4b, 0x65, 0xe3, 0xf0, 0x90, 0x04, |
| 53 | 0x24, 0x86, 0xc3, 0x5f, 0x91, 0x04, 0x6d, 0xe2, 0xbc, 0xf2, 0x92, 0x04, |
| 54 | 0x38, 0xc0, 0x92, 0x3d, 0x93, 0x04, 0x08, 0x3c, 0xbf, 0x2a |
| 55 | }; |
| 56 | BOOST_REQUIRE_EQUAL_COLLECTIONS(expected, expected + sizeof(expected), |
| 57 | wire.begin(), wire.end()); |
| 58 | |
| 59 | Data data; |
| 60 | data.setContent(wire); |
| 61 | |
Junxiao Shi | 7b1ba1a | 2014-03-29 01:01:56 -0700 | [diff] [blame] | 62 | BOOST_REQUIRE_NO_THROW(ForwarderStatus(data.getContent())); |
Junxiao Shi | 5109dee | 2014-03-27 19:40:30 -0700 | [diff] [blame] | 63 | ForwarderStatus status2(data.getContent()); |
| 64 | BOOST_CHECK_EQUAL(status1.getNfdVersion(), status2.getNfdVersion()); |
| 65 | BOOST_CHECK_EQUAL(status1.getStartTimestamp(), status2.getStartTimestamp()); |
| 66 | BOOST_CHECK_EQUAL(status1.getCurrentTimestamp(), status2.getCurrentTimestamp()); |
| 67 | BOOST_CHECK_EQUAL(status1.getNNameTreeEntries(), status2.getNNameTreeEntries()); |
| 68 | BOOST_CHECK_EQUAL(status1.getNFibEntries(), status2.getNFibEntries()); |
| 69 | BOOST_CHECK_EQUAL(status1.getNPitEntries(), status2.getNPitEntries()); |
| 70 | BOOST_CHECK_EQUAL(status1.getNMeasurementsEntries(), status2.getNMeasurementsEntries()); |
| 71 | BOOST_CHECK_EQUAL(status1.getNCsEntries(), status2.getNCsEntries()); |
| 72 | BOOST_CHECK_EQUAL(status1.getNInInterests(), status2.getNInInterests()); |
| 73 | BOOST_CHECK_EQUAL(status1.getNInDatas(), status2.getNInDatas()); |
| 74 | BOOST_CHECK_EQUAL(status1.getNOutInterests(), status2.getNOutInterests()); |
| 75 | BOOST_CHECK_EQUAL(status1.getNOutDatas(), status2.getNOutDatas()); |
| 76 | } |
| 77 | |
| 78 | BOOST_AUTO_TEST_SUITE_END() |
| 79 | |
| 80 | } // namespace nfd |
| 81 | } // namespace ndn |