json/tests/src/unit-assert_macro.cpp

49 lines
1.4 KiB
C++
Raw Normal View History

// __ _____ _____ _____
// __| | __| | | | JSON for Modern C++ (supporting code)
2022-08-12 15:04:06 +02:00
// | | |__ | | | | | | version 3.11.2
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
//
// SPDX-FileCopyrightText: 2013-2022 Niels Lohmann <https://nlohmann.me>
// SPDX-License-Identifier: MIT
#include "doctest_compatibility.h"
// avoid warning when assert does not abort
DOCTEST_GCC_SUPPRESS_WARNING_PUSH
DOCTEST_GCC_SUPPRESS_WARNING("-Wstrict-overflow")
DOCTEST_CLANG_SUPPRESS_WARNING_PUSH
DOCTEST_CLANG_SUPPRESS_WARNING("-Wstrict-overflow")
/// global variable to record side effect of assert calls
2020-07-06 13:19:06 +02:00
static int assert_counter;
/// set failure variable to true instead of calling assert(x)
2020-07-06 13:19:06 +02:00
#define JSON_ASSERT(x) {if (!(x)) ++assert_counter; }
#include <nlohmann/json.hpp>
using nlohmann::json;
2020-07-08 14:47:22 +02:00
// the test assumes exceptions to work
#if !defined(JSON_NOEXCEPTION)
TEST_CASE("JSON_ASSERT(x)")
{
2020-07-08 12:38:46 +02:00
SECTION("basic_json(first, second)")
2020-07-06 13:19:06 +02:00
{
2020-07-08 12:38:46 +02:00
assert_counter = 0;
CHECK(assert_counter == 0);
json::iterator it;
json j;
2020-07-06 13:19:06 +02:00
2020-07-08 14:47:22 +02:00
// in case assertions do not abort execution, an exception is thrown
2020-07-08 12:38:46 +02:00
CHECK_THROWS_WITH_AS(json(it, j.end()), "[json.exception.invalid_iterator.201] iterators are not compatible", json::invalid_iterator);
2020-07-08 14:47:22 +02:00
// check that assertion actually happened
2020-07-08 12:38:46 +02:00
CHECK(assert_counter == 1);
}
2020-07-06 13:19:06 +02:00
}
2020-07-08 14:47:22 +02:00
#endif
DOCTEST_GCC_SUPPRESS_WARNING_POP
DOCTEST_CLANG_SUPPRESS_WARNING_POP