-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add unit tests for json_diagnostic_postions only
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// __ _____ _____ _____ | ||
// __| | __| | | | JSON for Modern C++ (supporting code) | ||
// | | |__ | | | | | | version 3.11.3 | ||
// |_____|_____|_____|_|___| https://github.com/nlohmann/json | ||
// | ||
// SPDX-FileCopyrightText: 2013 - 2024 Niels Lohmann <https://nlohmann.me> | ||
// SPDX-License-Identifier: MIT | ||
|
||
#include "doctest_compatibility.h" | ||
|
||
#define JSON_DIAGNOSTIC_POSITIONS 1 | ||
#include <nlohmann/json.hpp> | ||
|
||
using json = nlohmann::json; | ||
|
||
TEST_CASE("Better diagnostics with positions only") | ||
{ | ||
SECTION("invalid type") | ||
{ | ||
const std::string json_invalid_string = R"( | ||
{ | ||
"address": { | ||
"street": "Fake Street", | ||
"housenumber": "1" | ||
} | ||
} | ||
)"; | ||
json j = json::parse(json_invalid_string); | ||
CHECK_THROWS_WITH_AS(j.at("address").at("housenumber").get<int>(), | ||
"[json.exception.type_error.302] (bytes 108-111) type must be number, but is string", json::type_error); | ||
} | ||
|
||
SECTION("invalid type without positions") | ||
{ | ||
const json j = "foo"; | ||
CHECK_THROWS_WITH_AS(j.get<int>(), | ||
"[json.exception.type_error.302] type must be number, but is string", json::type_error); | ||
} | ||
} |