Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2014-2018, The University of Memphis |
| 4 | * |
| 5 | * This file is part of PSync. |
| 6 | * See AUTHORS.md for complete list of PSync authors and contributors. |
| 7 | * |
| 8 | * PSync is free software: you can redistribute it and/or modify it under the terms |
| 9 | * of the GNU General Public License as published by the Free Software Foundation, |
| 10 | * either version 3 of the License, or (at your option) any later version. |
| 11 | * |
| 12 | * PSync is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 13 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 | * PURPOSE. See the GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License along with |
| 17 | * PSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 18 | **/ |
| 19 | |
Ashlesh Gawande | 78b94ad | 2018-12-13 15:29:19 -0600 | [diff] [blame^] | 20 | #include "PSync/detail/bloom-filter.hpp" |
Ashlesh Gawande | 0b2897e | 2018-06-20 14:40:47 -0500 | [diff] [blame] | 21 | |
| 22 | #include <boost/test/unit_test.hpp> |
| 23 | #include <ndn-cxx/name.hpp> |
| 24 | |
| 25 | namespace psync { |
| 26 | |
| 27 | using namespace ndn; |
| 28 | |
| 29 | BOOST_AUTO_TEST_SUITE(TestBloomFilter) |
| 30 | |
| 31 | BOOST_AUTO_TEST_CASE(Basic) |
| 32 | { |
| 33 | BloomFilter bf(100, 0.001); |
| 34 | |
| 35 | std::string insertName("/memphis"); |
| 36 | bf.insert(insertName); |
| 37 | BOOST_CHECK(bf.contains(insertName)); |
| 38 | } |
| 39 | |
| 40 | BOOST_AUTO_TEST_CASE(NameAppendAndExtract) |
| 41 | { |
| 42 | Name bfName("/test"); |
| 43 | BloomFilter bf(100, 0.001); |
| 44 | bf.insert("/memphis"); |
| 45 | |
| 46 | bf.appendToName(bfName); |
| 47 | |
| 48 | BloomFilter bfFromName(100, 0.001, bfName.get(-1)); |
| 49 | |
| 50 | BOOST_CHECK_EQUAL(bfName.get(1).toNumber(), 100); |
| 51 | BOOST_CHECK_EQUAL(bfName.get(2).toNumber(), 1); |
| 52 | BOOST_CHECK_EQUAL(bf, bfFromName); |
| 53 | |
| 54 | BOOST_CHECK_THROW(BloomFilter inCompatibleBf(200, 0.001, bfName.get(-1)), std::runtime_error); |
| 55 | } |
| 56 | |
| 57 | BOOST_AUTO_TEST_SUITE_END() |
| 58 | |
| 59 | } // namespace psync |