Add explicit tests around use of scoped_allocator_adaptor to emulat… (#31)

* Add explicit tests around use of `scoped_allocator_adaptor` to emulate issue https://github.com/boostorg/unordered/issues/22

* Refine test to only run in C++11 mode and later with possibility of re-introducing C++03 support later

* Update test to use `<boost/cstdint.hpp>`

* Refactor test to use `UNORDERED_AUTO_TEST`

* Cleanup how the scoped allocator test is conditionally compiled

* Update test to generate a UUID for the name of the shared memory segment so tests can run safely in parallel

* Update test jamfile to relocate the Filesystem link dependency directly to the test that requires it
This commit is contained in:
LeonineKing1199
2021-11-15 11:22:40 -08:00
committed by GitHub
parent 0f37f774f1
commit 1e553df5b6
2 changed files with 91 additions and 0 deletions

View File

@ -64,6 +64,7 @@ test-suite unordered
[ run unordered/swap_tests.cpp ]
[ run unordered/detail_tests.cpp ]
[ run unordered/deduction_tests.cpp ]
[ run unordered/scoped_allocator.cpp /boost/filesystem//boost_filesystem ]
[ run unordered/compile_set.cpp : :
: <define>BOOST_UNORDERED_USE_MOVE

View File

@ -0,0 +1,90 @@
// Copyright 2021 Christian Mazakas.
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// clang-format off
#include "../helpers/prefix.hpp"
#include <boost/unordered_set.hpp>
#include <boost/unordered_map.hpp>
#include "../helpers/postfix.hpp"
// clang-format on
#include "../helpers/test.hpp"
#include <boost/config.hpp>
#include <boost/config/pragma_message.hpp>
#include <boost/cstdint.hpp>
#include <boost/container/scoped_allocator.hpp>
#include <boost/container/uses_allocator.hpp>
#include <boost/core/ignore_unused.hpp>
#include <boost/filesystem.hpp>
#include <boost/interprocess/allocators/node_allocator.hpp>
#include <boost/interprocess/managed_shared_memory.hpp>
#include <string>
#include <utility>
#include <vector>
// This test is based on a user-submitted issue found here:
// https://github.com/boostorg/unordered/issues/22
//
#if BOOST_CXX_VERSION <= 199711L
BOOST_PRAGMA_MESSAGE(
"scoped allocator adaptor tests only work under C++11 and above")
int main() {}
#else
namespace bi = boost::interprocess;
template <typename T> struct node_alloc
{
typedef bi::node_allocator<T, bi::managed_shared_memory::segment_manager>
type;
};
typedef std::vector<boost::uint64_t, node_alloc<boost::uint64_t>::type>
vector_type;
typedef std::pair<boost::uint64_t, vector_type> pair_type;
typedef boost::container::scoped_allocator_adaptor<node_alloc<pair_type>::type,
node_alloc<boost::uint64_t>::type>
allocator_type;
typedef boost::unordered_map<const boost::uint64_t, vector_type,
boost::hash<boost::uint64_t>, std::equal_to<boost::uint64_t>, allocator_type>
map_type;
std::string make_uuid() { return boost::filesystem::unique_path().string(); }
UNORDERED_AUTO_TEST (scoped_allocator) {
std::string uuid = make_uuid();
bi::managed_shared_memory s(bi::create_only, uuid.c_str(), 65536);
allocator_type alloc(node_alloc<pair_type>::type(s.get_segment_manager()),
node_alloc<boost::uint64_t>::type(s.get_segment_manager()));
map_type map(alloc);
for (unsigned i = 0; i < 10; ++i) {
boost::ignore_unused(map[i]);
}
BOOST_TEST(map.size() == 10);
bi::shared_memory_object::remove(uuid.c_str());
}
RUN_TESTS()
#endif