/* __ _____ _____ _____ __| | __| | | | JSON for Modern C++ (test suite) | | |__ | | | | | | version 2.0.10 |_____|_____|_____|_|___| https://github.com/nlohmann/json Licensed under the MIT License . Copyright (c) 2013-2016 Niels Lohmann . 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 "catch.hpp" #define private public #include "json.hpp" using nlohmann::json; // special test case to check if memory is leaked if constructor throws template struct bad_allocator : std::allocator { template void construct(T*, Args&& ...) { throw std::bad_alloc(); } }; TEST_CASE("bad_alloc") { SECTION("bad_alloc") { // create JSON type using the throwing allocator using bad_json = nlohmann::basic_json; // creating an object should throw CHECK_THROWS_AS(bad_json j(bad_json::value_t::object), std::bad_alloc); } } bool next_construct_fails = false; bool next_destroy_fails = false; bool next_deallocate_fails = false; template struct my_allocator : std::allocator { template void construct(T* p, Args&& ... args) { if (next_construct_fails) { next_construct_fails = false; throw std::bad_alloc(); } else { ::new(reinterpret_cast(p)) T(std::forward(args)...); } } void deallocate(T* p, std::size_t n) { if (next_deallocate_fails) { next_deallocate_fails = false; throw std::bad_alloc(); } else { std::allocator::deallocate(p, n); } } void destroy(T* p) { if (next_destroy_fails) { next_destroy_fails = false; throw std::bad_alloc(); } else { p->~T(); } } }; // allows deletion of raw pointer, usually hold by json_value template void my_allocator_clean_up(T* p) { assert(p != nullptr); my_allocator alloc; alloc.destroy(p); alloc.deallocate(p, 1); } TEST_CASE("controlled bad_alloc") { // create JSON type using the throwing allocator using my_json = nlohmann::basic_json; SECTION("class json_value") { SECTION("json_value(value_t)") { SECTION("object") { next_construct_fails = false; auto t = my_json::value_t::object; auto clean_up = [](my_json::json_value & j) { my_allocator_clean_up(j.object); }; CHECK_NOTHROW(my_json::json_value j(t); clean_up(j)); next_construct_fails = true; CHECK_THROWS_AS(my_json::json_value j(t), std::bad_alloc); next_construct_fails = false; } SECTION("array") { next_construct_fails = false; auto t = my_json::value_t::array; auto clean_up = [](my_json::json_value & j) { my_allocator_clean_up(j.array); }; CHECK_NOTHROW(my_json::json_value j(t); clean_up(j)); next_construct_fails = true; CHECK_THROWS_AS(my_json::json_value j(t), std::bad_alloc); next_construct_fails = false; } SECTION("string") { next_construct_fails = false; auto t = my_json::value_t::string; auto clean_up = [](my_json::json_value & j) { my_allocator_clean_up(j.string); }; CHECK_NOTHROW(my_json::json_value j(t); clean_up(j)); next_construct_fails = true; CHECK_THROWS_AS(my_json::json_value j(t), std::bad_alloc); next_construct_fails = false; } } SECTION("json_value(const string_t&)") { next_construct_fails = false; my_json::string_t v("foo"); auto clean_up = [](my_json::json_value & j) { my_allocator_clean_up(j.string); }; CHECK_NOTHROW(my_json::json_value j(v); clean_up(j)); next_construct_fails = true; CHECK_THROWS_AS(my_json::json_value j(v), std::bad_alloc); next_construct_fails = false; } /* SECTION("json_value(const object_t&)") { next_construct_fails = false; my_json::object_t v {{"foo", "bar"}}; CHECK_NOTHROW(my_json::json_value j(v)); next_construct_fails = true; CHECK_THROWS_AS(my_json::json_value j(v), std::bad_alloc); next_construct_fails = false; } */ /* SECTION("json_value(const array_t&)") { next_construct_fails = false; my_json::array_t v = {"foo", "bar", "baz"}; CHECK_NOTHROW(my_json::json_value j(v)); next_construct_fails = true; CHECK_THROWS_AS(my_json::json_value j(v), std::bad_alloc); next_construct_fails = false; } */ } SECTION("class basic_json") { SECTION("basic_json(const CompatibleObjectType&)") { next_construct_fails = false; std::map v {{"foo", "bar"}}; CHECK_NOTHROW(my_json j(v)); next_construct_fails = true; CHECK_THROWS_AS(my_json j(v), std::bad_alloc); next_construct_fails = false; } SECTION("basic_json(const CompatibleArrayType&)") { next_construct_fails = false; std::vector v {"foo", "bar", "baz"}; CHECK_NOTHROW(my_json j(v)); next_construct_fails = true; CHECK_THROWS_AS(my_json j(v), std::bad_alloc); next_construct_fails = false; } SECTION("basic_json(const typename string_t::value_type*)") { next_construct_fails = false; CHECK_NOTHROW(my_json v("foo")); next_construct_fails = true; CHECK_THROWS_AS(my_json v("foo"), std::bad_alloc); next_construct_fails = false; } SECTION("basic_json(const typename string_t::value_type*)") { next_construct_fails = false; std::string s("foo"); CHECK_NOTHROW(my_json v(s)); next_construct_fails = true; CHECK_THROWS_AS(my_json v(s), std::bad_alloc); next_construct_fails = false; } } }