Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -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 | /* |
| 3 | * Copyright (c) 2014-2019, 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 | 7b984c6 | 2014-07-17 22:18:34 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 25 | |
| 26 | #include "fw/face-table.hpp" |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 27 | |
| 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" |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 30 | #include "tests/daemon/face/dummy-face.hpp" |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 31 | |
| 32 | namespace nfd { |
| 33 | namespace tests { |
| 34 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 35 | BOOST_AUTO_TEST_SUITE(Fw) |
Davide Pesavento | cf7db2f | 2019-03-24 23:17:28 -0400 | [diff] [blame] | 36 | BOOST_FIXTURE_TEST_SUITE(TestFaceTable, GlobalIoFixture) |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 37 | |
| 38 | BOOST_AUTO_TEST_CASE(AddRemove) |
| 39 | { |
Junxiao Shi | dcffdaa | 2016-07-26 02:23:56 +0000 | [diff] [blame] | 40 | FaceTable faceTable; |
Junxiao Shi | 5b43f9a | 2016-07-19 13:15:56 +0000 | [diff] [blame] | 41 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 42 | std::vector<FaceId> addHistory; |
| 43 | std::vector<FaceId> removeHistory; |
Junxiao Shi | ae04d34 | 2016-07-19 13:20:22 +0000 | [diff] [blame] | 44 | faceTable.afterAdd.connect([&] (const Face& face) { addHistory.push_back(face.getId()); }); |
| 45 | faceTable.beforeRemove.connect([&] (const Face& face) { removeHistory.push_back(face.getId()); }); |
Junxiao Shi | bd392bf | 2014-03-17 15:54:11 -0700 | [diff] [blame] | 46 | |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 47 | shared_ptr<Face> face1 = make_shared<DummyFace>(); |
| 48 | shared_ptr<Face> face2 = make_shared<DummyFace>(); |
| 49 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 50 | BOOST_CHECK_EQUAL(face1->getId(), face::INVALID_FACEID); |
| 51 | BOOST_CHECK_EQUAL(face2->getId(), face::INVALID_FACEID); |
Junxiao Shi | 5b43f9a | 2016-07-19 13:15:56 +0000 | [diff] [blame] | 52 | BOOST_CHECK(faceTable.get(face::INVALID_FACEID) == nullptr); |
| 53 | BOOST_CHECK_EQUAL(faceTable.size(), 0); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 54 | |
Junxiao Shi | 5b43f9a | 2016-07-19 13:15:56 +0000 | [diff] [blame] | 55 | faceTable.add(face1); |
| 56 | faceTable.add(face2); |
| 57 | BOOST_CHECK_EQUAL(faceTable.size(), 2); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 58 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 59 | BOOST_CHECK_NE(face1->getId(), face::INVALID_FACEID); |
| 60 | BOOST_CHECK_NE(face2->getId(), face::INVALID_FACEID); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 61 | BOOST_CHECK_NE(face1->getId(), face2->getId()); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 62 | BOOST_CHECK_GT(face1->getId(), face::FACEID_RESERVED_MAX); |
| 63 | BOOST_CHECK_GT(face2->getId(), face::FACEID_RESERVED_MAX); |
Junxiao Shi | 5b43f9a | 2016-07-19 13:15:56 +0000 | [diff] [blame] | 64 | BOOST_CHECK(faceTable.get(face1->getId()) == face1.get()); |
| 65 | BOOST_CHECK(faceTable.get(face2->getId()) == face2.get()); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 66 | |
Alexander Afanasyev | bc521a5 | 2014-03-26 23:31:55 -0700 | [diff] [blame] | 67 | FaceId oldId1 = face1->getId(); |
| 68 | faceTable.add(face1); |
| 69 | BOOST_CHECK_EQUAL(face1->getId(), oldId1); |
| 70 | BOOST_CHECK_EQUAL(faceTable.size(), 2); |
| 71 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 72 | BOOST_REQUIRE_EQUAL(addHistory.size(), 2); |
| 73 | BOOST_CHECK_EQUAL(addHistory[0], face1->getId()); |
| 74 | BOOST_CHECK_EQUAL(addHistory[1], face2->getId()); |
Junxiao Shi | bd392bf | 2014-03-17 15:54:11 -0700 | [diff] [blame] | 75 | |
Junxiao Shi | c542b2b | 2014-03-16 21:45:52 -0700 | [diff] [blame] | 76 | face1->close(); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 77 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 78 | BOOST_CHECK_EQUAL(face1->getId(), face::INVALID_FACEID); |
Junxiao Shi | 5b43f9a | 2016-07-19 13:15:56 +0000 | [diff] [blame] | 79 | BOOST_CHECK_EQUAL(faceTable.size(), 1); |
| 80 | BOOST_CHECK(faceTable.get(oldId1) == nullptr); |
Junxiao Shi | bd392bf | 2014-03-17 15:54:11 -0700 | [diff] [blame] | 81 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 82 | BOOST_REQUIRE_EQUAL(removeHistory.size(), 1); |
| 83 | BOOST_CHECK_EQUAL(removeHistory[0], addHistory[0]); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 84 | } |
| 85 | |
Junxiao Shi | 7b984c6 | 2014-07-17 22:18:34 -0700 | [diff] [blame] | 86 | BOOST_AUTO_TEST_CASE(AddReserved) |
| 87 | { |
Junxiao Shi | dcffdaa | 2016-07-26 02:23:56 +0000 | [diff] [blame] | 88 | FaceTable faceTable; |
Junxiao Shi | 7b984c6 | 2014-07-17 22:18:34 -0700 | [diff] [blame] | 89 | |
| 90 | shared_ptr<Face> face1 = make_shared<DummyFace>(); |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 91 | BOOST_CHECK_EQUAL(face1->getId(), face::INVALID_FACEID); |
Junxiao Shi | 7b984c6 | 2014-07-17 22:18:34 -0700 | [diff] [blame] | 92 | |
| 93 | faceTable.addReserved(face1, 5); |
| 94 | BOOST_CHECK_EQUAL(face1->getId(), 5); |
| 95 | } |
| 96 | |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 97 | BOOST_AUTO_TEST_CASE(Enumerate) |
| 98 | { |
Junxiao Shi | dcffdaa | 2016-07-26 02:23:56 +0000 | [diff] [blame] | 99 | FaceTable faceTable; |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 100 | |
| 101 | shared_ptr<Face> face1 = make_shared<DummyFace>(); |
| 102 | shared_ptr<Face> face2 = make_shared<DummyFace>(); |
| 103 | bool hasFace1 = false, hasFace2 = false; |
| 104 | |
| 105 | BOOST_CHECK_EQUAL(faceTable.size(), 0); |
| 106 | BOOST_CHECK_EQUAL(std::distance(faceTable.begin(), faceTable.end()), faceTable.size()); |
| 107 | |
| 108 | faceTable.add(face1); |
| 109 | BOOST_CHECK_EQUAL(faceTable.size(), 1); |
| 110 | BOOST_CHECK_EQUAL(std::distance(faceTable.begin(), faceTable.end()), faceTable.size()); |
| 111 | hasFace1 = hasFace2 = false; |
| 112 | for (FaceTable::const_iterator it = faceTable.begin(); it != faceTable.end(); ++it) { |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 113 | hasFace1 = hasFace1 || &*it == face1.get(); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 114 | } |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 115 | BOOST_CHECK_EQUAL(hasFace1, true); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 116 | |
| 117 | faceTable.add(face2); |
| 118 | BOOST_CHECK_EQUAL(faceTable.size(), 2); |
| 119 | BOOST_CHECK_EQUAL(std::distance(faceTable.begin(), faceTable.end()), faceTable.size()); |
| 120 | hasFace1 = hasFace2 = false; |
| 121 | for (FaceTable::const_iterator it = faceTable.begin(); it != faceTable.end(); ++it) { |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 122 | hasFace1 = hasFace1 || &*it == face1.get(); |
| 123 | hasFace2 = hasFace2 || &*it == face2.get(); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 124 | } |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 125 | BOOST_CHECK_EQUAL(hasFace1, true); |
| 126 | BOOST_CHECK_EQUAL(hasFace2, true); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 127 | |
Junxiao Shi | c542b2b | 2014-03-16 21:45:52 -0700 | [diff] [blame] | 128 | face1->close(); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 129 | BOOST_CHECK_EQUAL(faceTable.size(), 1); |
| 130 | BOOST_CHECK_EQUAL(std::distance(faceTable.begin(), faceTable.end()), faceTable.size()); |
| 131 | hasFace1 = hasFace2 = false; |
| 132 | for (FaceTable::const_iterator it = faceTable.begin(); it != faceTable.end(); ++it) { |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 133 | hasFace1 = hasFace1 || &*it == face1.get(); |
| 134 | hasFace2 = hasFace2 || &*it == face2.get(); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 135 | } |
Junxiao Shi | b84e674 | 2016-07-19 13:16:22 +0000 | [diff] [blame] | 136 | BOOST_CHECK_EQUAL(hasFace1, false); |
| 137 | BOOST_CHECK_EQUAL(hasFace2, true); |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 138 | } |
| 139 | |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 140 | BOOST_AUTO_TEST_SUITE_END() // TestFaceTable |
| 141 | BOOST_AUTO_TEST_SUITE_END() // Fw |
Junxiao Shi | a4f2be8 | 2014-03-02 22:56:41 -0700 | [diff] [blame] | 142 | |
| 143 | } // namespace tests |
| 144 | } // namespace nfd |