| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /* |
| * Copyright (c) 2013-2023 Regents of the University of California. |
| * |
| * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| * |
| * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| * terms of the GNU Lesser General Public License as published by the Free Software |
| * Foundation, either version 3 of the License, or (at your option) any later version. |
| * |
| * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| * |
| * You should have received copies of the GNU General Public License and GNU Lesser |
| * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| * <http://www.gnu.org/licenses/>. |
| * |
| * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| */ |
| |
| #include "ndn-cxx/mgmt/nfd/cs-info.hpp" |
| #include "ndn-cxx/util/concepts.hpp" |
| |
| #include "tests/boost-test.hpp" |
| |
| #include <boost/lexical_cast.hpp> |
| |
| namespace ndn::tests { |
| |
| using namespace ndn::nfd; |
| |
| BOOST_CONCEPT_ASSERT((StatusDatasetItem<CsInfo>)); |
| |
| BOOST_AUTO_TEST_SUITE(Mgmt) |
| BOOST_AUTO_TEST_SUITE(Nfd) |
| BOOST_AUTO_TEST_SUITE(TestCsInfo) |
| |
| static CsInfo |
| makeCsInfo() |
| { |
| return CsInfo() |
| .setCapacity(20177) |
| .setEnableAdmit(false) |
| .setEnableServe(true) |
| .setNEntries(5509) |
| .setNHits(12951) |
| .setNMisses(28179); |
| } |
| |
| BOOST_AUTO_TEST_CASE(Encode) |
| { |
| CsInfo csi1 = makeCsInfo(); |
| Block wire = csi1.wireEncode(); |
| |
| static const uint8_t EXPECTED[] = { |
| 0x80, 0x13, // CsInfo |
| 0x83, 0x02, 0x4E, 0xD1, // Capacity |
| 0x6C, 0x01, 0x02, // Flags |
| 0x87, 0x02, 0x15, 0x85, // NCsEntries |
| 0x81, 0x02, 0x32, 0x97, // NHits |
| 0x82, 0x02, 0x6E, 0x13, // NMisses |
| }; |
| BOOST_CHECK_EQUAL_COLLECTIONS(wire.begin(), wire.end(), EXPECTED, EXPECTED + sizeof(EXPECTED)); |
| |
| CsInfo csi2(wire); |
| BOOST_CHECK_EQUAL(csi2.getCapacity(), 20177); |
| BOOST_CHECK_EQUAL(csi2.getEnableAdmit(), false); |
| BOOST_CHECK_EQUAL(csi2.getEnableServe(), true); |
| BOOST_CHECK_EQUAL(csi2.getNEntries(), 5509); |
| BOOST_CHECK_EQUAL(csi2.getNHits(), 12951); |
| BOOST_CHECK_EQUAL(csi2.getNMisses(), 28179); |
| } |
| |
| BOOST_AUTO_TEST_CASE(Equality) |
| { |
| CsInfo csi1, csi2; |
| BOOST_CHECK_EQUAL(csi1, csi2); |
| |
| csi1 = makeCsInfo(); |
| BOOST_CHECK_NE(csi1, csi2); |
| csi2 = csi1; |
| BOOST_CHECK_EQUAL(csi1, csi2); |
| |
| csi2.setCapacity(csi2.getCapacity() + 1); |
| BOOST_CHECK_NE(csi1, csi2); |
| csi2 = csi1; |
| |
| csi2.setEnableAdmit(!csi2.getEnableAdmit()); |
| BOOST_CHECK_NE(csi1, csi2); |
| csi2 = csi1; |
| |
| csi2.setEnableServe(!csi2.getEnableServe()); |
| BOOST_CHECK_NE(csi1, csi2); |
| csi2 = csi1; |
| |
| csi2.setNEntries(csi2.getNEntries() + 1); |
| BOOST_CHECK_NE(csi1, csi2); |
| csi2 = csi1; |
| |
| csi2.setNHits(csi2.getNHits() + 1); |
| BOOST_CHECK_NE(csi1, csi2); |
| csi2 = csi1; |
| |
| csi2.setNMisses(csi2.getNMisses() + 1); |
| BOOST_CHECK_NE(csi1, csi2); |
| csi2 = csi1; |
| } |
| |
| BOOST_AUTO_TEST_CASE(Print) |
| { |
| CsInfo csi; |
| BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(csi), |
| "CsInfo: 0 entries, 0 max, admit disabled, serve disabled, 0 hits, 0 misses"); |
| |
| csi = makeCsInfo(); |
| BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(csi), |
| "CsInfo: 5509 entries, 20177 max, admit disabled, serve enabled, 12951 hits, 28179 misses"); |
| |
| csi.setEnableAdmit(true).setNHits(1).setNMisses(1); |
| BOOST_CHECK_EQUAL(boost::lexical_cast<std::string>(csi), |
| "CsInfo: 5509 entries, 20177 max, admit enabled, serve enabled, 1 hit, 1 miss"); |
| } |
| |
| BOOST_AUTO_TEST_SUITE_END() // TestCsInfo |
| BOOST_AUTO_TEST_SUITE_END() // Nfd |
| BOOST_AUTO_TEST_SUITE_END() // Mgmt |
| |
| } // namespace ndn::tests |