Files
filament/third_party/robin-map/tests/robin_set_tests.cpp
2018-08-03 10:38:22 -07:00

122 lines
4.9 KiB
C++
Executable File

/**
* MIT License
*
* Copyright (c) 2017 Tessil
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#define BOOST_TEST_DYN_LINK
#include <boost/test/unit_test.hpp>
#include <boost/mpl/list.hpp>
#include <cstddef>
#include <cstdint>
#include <functional>
#include <memory>
#include <string>
#include <tuple>
#include <utility>
#include <tsl/robin_set.h>
#include "utils.h"
BOOST_AUTO_TEST_SUITE(test_robin_set)
using test_types = boost::mpl::list<tsl::robin_set<std::int64_t>,
tsl::robin_set<std::string>,
tsl::robin_set<self_reference_member_test>,
tsl::robin_set<move_only_test>,
tsl::robin_pg_set<self_reference_member_test>,
tsl::robin_set<move_only_test,
std::hash<move_only_test>,
std::equal_to<move_only_test>,
std::allocator<move_only_test>,
true,
tsl::rh::prime_growth_policy>,
tsl::robin_set<self_reference_member_test,
std::hash<self_reference_member_test>,
std::equal_to<self_reference_member_test>,
std::allocator<self_reference_member_test>,
true,
tsl::rh::mod_growth_policy<>>,
tsl::robin_set<move_only_test,
std::hash<move_only_test>,
std::equal_to<move_only_test>,
std::allocator<move_only_test>,
false,
tsl::rh::mod_growth_policy<>>
>;
BOOST_AUTO_TEST_CASE_TEMPLATE(test_insert, HSet, test_types) {
// insert x values, insert them again, check values
using key_t = typename HSet::key_type;
const std::size_t nb_values = 1000;
HSet set;
typename HSet::iterator it;
bool inserted;
for(std::size_t i = 0; i < nb_values; i++) {
std::tie(it, inserted) = set.insert(utils::get_key<key_t>(i));
BOOST_CHECK_EQUAL(*it, utils::get_key<key_t>(i));
BOOST_CHECK(inserted);
}
BOOST_CHECK_EQUAL(set.size(), nb_values);
for(std::size_t i = 0; i < nb_values; i++) {
std::tie(it, inserted) = set.insert(utils::get_key<key_t>(i));
BOOST_CHECK_EQUAL(*it, utils::get_key<key_t>(i));
BOOST_CHECK(!inserted);
}
for(std::size_t i = 0; i < nb_values; i++) {
it = set.find(utils::get_key<key_t>(i));
BOOST_CHECK_EQUAL(*it, utils::get_key<key_t>(i));
}
}
BOOST_AUTO_TEST_CASE(test_compare) {
const tsl::robin_set<std::string> set1_1 = {"a", "e", "d", "c", "b"};
const tsl::robin_set<std::string> set1_2 = {"e", "c", "b", "a", "d"};
const tsl::robin_set<std::string> set2_1 = {"e", "c", "b", "a", "d", "f"};
const tsl::robin_set<std::string> set3_1 = {"e", "c", "b", "a"};
BOOST_CHECK(set1_1 == set1_2);
BOOST_CHECK(set1_2 == set1_1);
BOOST_CHECK(set1_1 != set2_1);
BOOST_CHECK(set2_1 != set1_1);
BOOST_CHECK(set1_1 != set3_1);
BOOST_CHECK(set3_1 != set1_1);
BOOST_CHECK(set2_1 != set3_1);
BOOST_CHECK(set3_1 != set2_1);
}
BOOST_AUTO_TEST_SUITE_END()