Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 3 | * Copyright (c) 2014-2022, Regents of the University of California, |
Spyridon Mastorakis | d0381c0 | 2015-02-19 10:29:41 -0800 | [diff] [blame] | 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 Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 10 | * |
| 11 | * This file is part of NFD (Named Data Networking Forwarding Daemon). |
| 12 | * See AUTHORS.md for complete list of NFD authors and contributors. |
| 13 | * |
| 14 | * NFD is free software: you can redistribute it and/or modify it under the terms |
| 15 | * of the GNU General Public License as published by the Free Software Foundation, |
| 16 | * either version 3 of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 19 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 20 | * PURPOSE. See the GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along with |
| 23 | * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 25 | |
| 26 | #include "table/strategy-info-host.hpp" |
| 27 | |
Junxiao Shi | d9ee45c | 2014-02-27 15:38:11 -0700 | [diff] [blame] | 28 | #include "tests/test-common.hpp" |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame] | 29 | #include "tests/daemon/global-io-fixture.hpp" |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 30 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 31 | namespace nfd::tests { |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 32 | |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 33 | using fw::StrategyInfo; |
| 34 | |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 35 | static int g_DummyStrategyInfo_count = 0; |
| 36 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 37 | class DummyStrategyInfo : public StrategyInfo, noncopyable |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 38 | { |
| 39 | public: |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 40 | static constexpr int |
| 41 | getTypeId() |
| 42 | { |
| 43 | return 1; |
| 44 | } |
| 45 | |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 46 | DummyStrategyInfo(int id) |
| 47 | : m_id(id) |
| 48 | { |
| 49 | ++g_DummyStrategyInfo_count; |
| 50 | } |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 51 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 52 | ~DummyStrategyInfo() override |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 53 | { |
| 54 | --g_DummyStrategyInfo_count; |
| 55 | } |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 56 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 57 | public: |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 58 | int m_id; |
| 59 | }; |
| 60 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 61 | class DummyStrategyInfo2 : public StrategyInfo, noncopyable |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 62 | { |
| 63 | public: |
| 64 | static constexpr int |
| 65 | getTypeId() |
| 66 | { |
| 67 | return 2; |
| 68 | } |
| 69 | |
| 70 | DummyStrategyInfo2(int id) |
| 71 | : m_id(id) |
| 72 | { |
| 73 | } |
| 74 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 75 | public: |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 76 | int m_id; |
| 77 | }; |
| 78 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 79 | BOOST_AUTO_TEST_SUITE(Table) |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame] | 80 | BOOST_FIXTURE_TEST_SUITE(TestStrategyInfoHost, GlobalIoFixture) |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 81 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 82 | BOOST_AUTO_TEST_CASE(Basic) |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 83 | { |
| 84 | StrategyInfoHost host; |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 85 | g_DummyStrategyInfo_count = 0; |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 86 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 87 | auto [info, isNew] = host.insertStrategyInfo<DummyStrategyInfo>(3503); |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 88 | BOOST_CHECK_EQUAL(isNew, true); |
| 89 | BOOST_CHECK_EQUAL(g_DummyStrategyInfo_count, 1); |
| 90 | BOOST_REQUIRE(info != nullptr); |
| 91 | BOOST_CHECK_EQUAL(info->m_id, 3503); |
| 92 | BOOST_CHECK_EQUAL(host.getStrategyInfo<DummyStrategyInfo>(), info); |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 93 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 94 | auto [info2, isNew2] = host.insertStrategyInfo<DummyStrategyInfo>(1032); |
| 95 | BOOST_CHECK_EQUAL(isNew2, false); |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 96 | BOOST_CHECK_EQUAL(g_DummyStrategyInfo_count, 1); |
| 97 | BOOST_CHECK_EQUAL(info2, info); |
| 98 | BOOST_CHECK_EQUAL(info->m_id, 3503); |
| 99 | BOOST_CHECK_EQUAL(host.getStrategyInfo<DummyStrategyInfo>(), info); |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 100 | |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 101 | host.clearStrategyInfo(); |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 102 | BOOST_CHECK(host.getStrategyInfo<DummyStrategyInfo>() == nullptr); |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 103 | BOOST_CHECK_EQUAL(g_DummyStrategyInfo_count, 0); |
| 104 | } |
| 105 | |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 106 | BOOST_AUTO_TEST_CASE(Types) |
| 107 | { |
| 108 | StrategyInfoHost host; |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 109 | g_DummyStrategyInfo_count = 0; |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 110 | |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 111 | host.insertStrategyInfo<DummyStrategyInfo>(8063); |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 112 | BOOST_REQUIRE(host.getStrategyInfo<DummyStrategyInfo>() != nullptr); |
| 113 | BOOST_CHECK_EQUAL(host.getStrategyInfo<DummyStrategyInfo>()->m_id, 8063); |
| 114 | |
Junxiao Shi | 5b3feb6 | 2016-08-19 01:51:41 +0000 | [diff] [blame] | 115 | host.insertStrategyInfo<DummyStrategyInfo2>(2871); |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 116 | BOOST_REQUIRE(host.getStrategyInfo<DummyStrategyInfo2>() != nullptr); |
| 117 | BOOST_CHECK_EQUAL(host.getStrategyInfo<DummyStrategyInfo2>()->m_id, 2871); |
| 118 | |
| 119 | BOOST_REQUIRE(host.getStrategyInfo<DummyStrategyInfo>() != nullptr); |
| 120 | BOOST_CHECK_EQUAL(host.getStrategyInfo<DummyStrategyInfo>()->m_id, 8063); |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 121 | |
| 122 | BOOST_CHECK_EQUAL(host.eraseStrategyInfo<DummyStrategyInfo>(), 1); |
| 123 | BOOST_CHECK(host.getStrategyInfo<DummyStrategyInfo>() == nullptr); |
| 124 | BOOST_CHECK_EQUAL(g_DummyStrategyInfo_count, 0); |
| 125 | BOOST_CHECK(host.getStrategyInfo<DummyStrategyInfo2>() != nullptr); |
| 126 | |
| 127 | BOOST_CHECK_EQUAL(host.eraseStrategyInfo<DummyStrategyInfo>(), 0); |
Junxiao Shi | 39ef261 | 2014-11-29 20:35:19 -0700 | [diff] [blame] | 128 | } |
| 129 | |
Junxiao Shi | fc02186 | 2016-08-25 21:51:18 +0000 | [diff] [blame] | 130 | BOOST_AUTO_TEST_SUITE_END() // TestStrategyInfoHost |
| 131 | BOOST_AUTO_TEST_SUITE_END() // Table |
Junxiao Shi | e5e2fce | 2014-02-10 20:01:53 -0700 | [diff] [blame] | 132 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 133 | } // namespace nfd::tests |