blob: f4b4543b7c6760152e9f00b5b5b0f8444d9723dc [file] [log] [blame]
Junxiao Shi49e11e72014-12-14 19:46:05 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shib84e6742016-07-19 13:16:22 +00003 * Copyright (c) 2014-2016, Regents of the University of California,
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -08004 * 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.
Junxiao Shi49e11e72014-12-14 19:46:05 -070010 *
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/>.
24 */
25
26#include "fw/strategy.hpp"
27#include "dummy-strategy.hpp"
28#include "tests/daemon/face/dummy-face.hpp"
29#include <boost/range/adaptor/filtered.hpp>
Junxiao Shib84e6742016-07-19 13:16:22 +000030#include <boost/range/adaptor/transformed.hpp>
31#include <boost/range/algorithm/copy.hpp>
Junxiao Shi49e11e72014-12-14 19:46:05 -070032
33#include "tests/test-common.hpp"
34
35namespace nfd {
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -080036namespace fw {
Junxiao Shi49e11e72014-12-14 19:46:05 -070037namespace tests {
38
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -080039using namespace nfd::tests;
40
Junxiao Shicde37ad2015-12-24 01:02:05 -070041BOOST_AUTO_TEST_SUITE(Fw)
42BOOST_FIXTURE_TEST_SUITE(TestStrategy, BaseFixture)
Junxiao Shi49e11e72014-12-14 19:46:05 -070043
44class FaceTableAccessTestStrategy : public DummyStrategy
45{
46public:
47 explicit
48 FaceTableAccessTestStrategy(Forwarder& forwarder)
49 : DummyStrategy(forwarder, Name("ndn:/strategy"))
50 {
Junxiao Shiae04d342016-07-19 13:20:22 +000051 this->afterAddFace.connect([this] (const Face& face) {
52 this->addedFaces.push_back(face.getId());
Junxiao Shi49e11e72014-12-14 19:46:05 -070053 });
Junxiao Shiae04d342016-07-19 13:20:22 +000054 this->beforeRemoveFace.connect([this] (const Face& face) {
55 this->removedFaces.push_back(face.getId());
Junxiao Shi49e11e72014-12-14 19:46:05 -070056 });
57 }
58
59 std::vector<FaceId>
60 getLocalFaces()
61 {
62 auto enumerable = this->getFaceTable() |
Junxiao Shib84e6742016-07-19 13:16:22 +000063 boost::adaptors::filtered([] (Face& face) {
64 return face.getScope() == ndn::nfd::FACE_SCOPE_LOCAL;
65 }) |
66 boost::adaptors::transformed([] (Face& face) {
67 return face.getId();
Junxiao Shi49e11e72014-12-14 19:46:05 -070068 });
69
70 std::vector<FaceId> results;
Junxiao Shib84e6742016-07-19 13:16:22 +000071 boost::copy(enumerable, std::back_inserter(results));
Junxiao Shi49e11e72014-12-14 19:46:05 -070072 return results;
73 }
74
75public:
76 std::vector<FaceId> addedFaces;
77 std::vector<FaceId> removedFaces;
78};
79
80BOOST_AUTO_TEST_CASE(FaceTableAccess)
81{
82 Forwarder forwarder;
83 FaceTableAccessTestStrategy strategy(forwarder);
84
85 auto face1 = make_shared<DummyFace>();
Junxiao Shicde37ad2015-12-24 01:02:05 -070086 auto face2 = make_shared<DummyFace>("dummy://", "dummy://", ndn::nfd::FACE_SCOPE_LOCAL);
Junxiao Shi49e11e72014-12-14 19:46:05 -070087 forwarder.addFace(face1);
88 forwarder.addFace(face2);
89 FaceId id1 = face1->getId();
90 FaceId id2 = face2->getId();
91
92 BOOST_CHECK(strategy.getLocalFaces() == std::vector<FaceId>{id2});
93
94 face2->close();
95 face1->close();
96
97 BOOST_CHECK((strategy.addedFaces == std::vector<FaceId>{id1, id2}));
98 BOOST_CHECK((strategy.removedFaces == std::vector<FaceId>{id2, id1}));
99}
100
Junxiao Shicde37ad2015-12-24 01:02:05 -0700101BOOST_AUTO_TEST_SUITE_END() // TestStrategy
102BOOST_AUTO_TEST_SUITE_END() // Fw
Junxiao Shi49e11e72014-12-14 19:46:05 -0700103
104} // namespace tests
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -0800105} // namespace fw
Junxiao Shi49e11e72014-12-14 19:46:05 -0700106} // namespace nfd