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