json/test/src/unit-allocator.cpp

232 lines
7.0 KiB
C++
Raw Normal View History

2016-08-04 07:24:46 +02:00
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
2019-03-20 20:50:05 +01:00
| | |__ | | | | | | version 3.6.1
2016-08-04 07:24:46 +02:00
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
SPDX-License-Identifier: MIT
2019-03-20 00:19:07 +01:00
Copyright (c) 2013-2019 Niels Lohmann <http://nlohmann.me>.
2016-08-04 07:24:46 +02:00
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.
*/
#include "doctest_compatibility.h"
2016-08-21 14:39:54 +02:00
#define private public
#include <nlohmann/json.hpp>
using nlohmann::json;
#undef private
// special test case to check if memory is leaked if constructor throws
template<class T>
2016-08-21 14:39:54 +02:00
struct bad_allocator : std::allocator<T>
{
template<class... Args>
void construct(T*, Args&& ...)
{
throw std::bad_alloc();
}
};
TEST_CASE("bad_alloc")
{
SECTION("bad_alloc")
{
// create JSON type using the throwing allocator
2016-08-21 14:39:54 +02:00
using bad_json = nlohmann::basic_json<std::map,
std::vector,
std::string,
bool,
std::int64_t,
std::uint64_t,
double,
2016-08-21 14:39:54 +02:00
bad_allocator>;
// creating an object should throw
CHECK_THROWS_AS(auto tmp = bad_json(bad_json::value_t::object), std::bad_alloc&);
2016-08-21 14:39:54 +02:00
}
}
2017-02-22 18:14:29 +01:00
static bool next_construct_fails = false;
static bool next_destroy_fails = false;
static bool next_deallocate_fails = false;
2016-08-21 14:39:54 +02:00
template<class T>
struct my_allocator : std::allocator<T>
{
using std::allocator<T>::allocator;
2016-08-21 14:39:54 +02:00
template<class... Args>
void construct(T* p, Args&& ... args)
{
2016-08-21 21:48:15 +02:00
if (next_construct_fails)
2016-08-21 14:39:54 +02:00
{
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
throw std::bad_alloc();
}
else
{
2017-01-03 21:33:23 +01:00
::new (reinterpret_cast<void*>(p)) T(std::forward<Args>(args)...);
2016-08-21 14:39:54 +02:00
}
}
2016-08-21 21:48:15 +02:00
void deallocate(T* p, std::size_t n)
{
if (next_deallocate_fails)
{
next_deallocate_fails = false;
throw std::bad_alloc();
}
else
{
std::allocator<T>::deallocate(p, n);
}
}
void destroy(T* p)
{
if (next_destroy_fails)
{
next_destroy_fails = false;
throw std::bad_alloc();
}
else
{
p->~T();
}
}
template <class U>
struct rebind
{
using other = my_allocator<U>;
};
2016-08-21 14:39:54 +02:00
};
// allows deletion of raw pointer, usually hold by json_value
template<class T>
void my_allocator_clean_up(T* p)
{
assert(p != nullptr);
my_allocator<T> alloc;
alloc.destroy(p);
alloc.deallocate(p, 1);
}
2016-08-21 14:39:54 +02:00
TEST_CASE("controlled bad_alloc")
{
// create JSON type using the throwing allocator
using my_json = nlohmann::basic_json<std::map,
std::vector,
std::string,
bool,
std::int64_t,
std::uint64_t,
double,
my_allocator>;
SECTION("class json_value")
{
SECTION("json_value(value_t)")
{
SECTION("object")
{
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
auto t = my_json::value_t::object;
2017-02-04 15:30:28 +01:00
CHECK_NOTHROW(my_allocator_clean_up(my_json::json_value(t).object));
2016-08-21 21:48:15 +02:00
next_construct_fails = true;
CHECK_THROWS_AS(auto tmp = my_json::json_value(t), std::bad_alloc&);
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
}
SECTION("array")
{
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
auto t = my_json::value_t::array;
2017-02-04 15:30:28 +01:00
CHECK_NOTHROW(my_allocator_clean_up(my_json::json_value(t).array));
2016-08-21 21:48:15 +02:00
next_construct_fails = true;
CHECK_THROWS_AS(auto tmp = my_json::json_value(t), std::bad_alloc&);
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
}
SECTION("string")
{
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
auto t = my_json::value_t::string;
2017-02-04 15:30:28 +01:00
CHECK_NOTHROW(my_allocator_clean_up(my_json::json_value(t).string));
2016-08-21 21:48:15 +02:00
next_construct_fails = true;
CHECK_THROWS_AS(auto tmp = my_json::json_value(t), std::bad_alloc&);
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
}
}
SECTION("json_value(const string_t&)")
{
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
my_json::string_t v("foo");
2017-02-04 15:30:28 +01:00
CHECK_NOTHROW(my_allocator_clean_up(my_json::json_value(v).string));
2016-08-21 21:48:15 +02:00
next_construct_fails = true;
CHECK_THROWS_AS(auto tmp = my_json::json_value(v), std::bad_alloc&);
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
}
}
SECTION("class basic_json")
{
SECTION("basic_json(const CompatibleObjectType&)")
{
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
std::map<std::string, std::string> v {{"foo", "bar"}};
CHECK_NOTHROW(auto tmp = my_json(v));
2016-08-21 21:48:15 +02:00
next_construct_fails = true;
CHECK_THROWS_AS(auto tmp = my_json(v), std::bad_alloc&);
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
}
SECTION("basic_json(const CompatibleArrayType&)")
{
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
std::vector<std::string> v {"foo", "bar", "baz"};
CHECK_NOTHROW(auto tmp = my_json(v));
2016-08-21 21:48:15 +02:00
next_construct_fails = true;
CHECK_THROWS_AS(auto tmp = my_json(v), std::bad_alloc&);
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
}
SECTION("basic_json(const typename string_t::value_type*)")
{
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2017-02-04 15:30:28 +01:00
CHECK_NOTHROW(my_json("foo"));
2016-08-21 21:48:15 +02:00
next_construct_fails = true;
CHECK_THROWS_AS(my_json("foo"), std::bad_alloc&);
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
}
SECTION("basic_json(const typename string_t::value_type*)")
{
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
std::string s("foo");
CHECK_NOTHROW(auto tmp = my_json(s));
2016-08-21 21:48:15 +02:00
next_construct_fails = true;
CHECK_THROWS_AS(auto tmp = my_json(s), std::bad_alloc&);
2016-08-21 21:48:15 +02:00
next_construct_fails = false;
2016-08-21 14:39:54 +02:00
}
}
}