2017-12-13 22:36:22 +00:00
|
|
|
/*
|
|
|
|
__ _____ _____ _____
|
|
|
|
__| | __| | | | JSON for Modern C++ (test suite)
|
2018-03-14 20:09:27 +00:00
|
|
|
| | |__ | | | | | | version 3.1.2
|
2017-12-13 22:36:22 +00:00
|
|
|
|_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
|
|
|
|
|
|
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
|
2018-05-03 15:41:45 +00:00
|
|
|
SPDX-License-Identifier: MIT
|
2018-02-01 21:20:26 +00:00
|
|
|
Copyright (c) 2013-2018 Niels Lohmann <http://nlohmann.me>.
|
2017-12-13 22:36:22 +00: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 "catch.hpp"
|
|
|
|
|
2018-01-29 10:21:11 +00:00
|
|
|
#include <nlohmann/json.hpp>
|
2017-12-13 22:36:22 +00:00
|
|
|
using nlohmann::json;
|
|
|
|
|
|
|
|
TEST_CASE("JSON Merge Patch")
|
|
|
|
{
|
|
|
|
SECTION("examples from RFC 7396")
|
|
|
|
{
|
|
|
|
SECTION("Section 1")
|
|
|
|
{
|
|
|
|
json document = R"({
|
|
|
|
"a": "b",
|
|
|
|
"c": {
|
|
|
|
"d": "e",
|
|
|
|
"f": "g"
|
|
|
|
}
|
|
|
|
})"_json;
|
|
|
|
|
|
|
|
json patch = R"({
|
|
|
|
"a": "z",
|
|
|
|
"c": {
|
|
|
|
"f": null
|
|
|
|
}
|
|
|
|
})"_json;
|
|
|
|
|
|
|
|
json expected = R"({
|
|
|
|
"a": "z",
|
|
|
|
"c": {
|
|
|
|
"d": "e"
|
|
|
|
}
|
|
|
|
})"_json;
|
|
|
|
|
|
|
|
document.merge_patch(patch);
|
|
|
|
CHECK(document == expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Section 3")
|
|
|
|
{
|
|
|
|
json document = R"({
|
|
|
|
"title": "Goodbye!",
|
|
|
|
"author": {
|
|
|
|
"givenName": "John",
|
|
|
|
"familyName": "Doe"
|
|
|
|
},
|
|
|
|
"tags": [
|
|
|
|
"example",
|
|
|
|
"sample"
|
|
|
|
],
|
|
|
|
"content": "This will be unchanged"
|
|
|
|
})"_json;
|
|
|
|
|
|
|
|
json patch = R"({
|
|
|
|
"title": "Hello!",
|
|
|
|
"phoneNumber": "+01-123-456-7890",
|
|
|
|
"author": {
|
|
|
|
"familyName": null
|
|
|
|
},
|
|
|
|
"tags": [
|
|
|
|
"example"
|
|
|
|
]
|
|
|
|
})"_json;
|
|
|
|
|
|
|
|
json expected = R"({
|
|
|
|
"title": "Hello!",
|
|
|
|
"author": {
|
|
|
|
"givenName": "John"
|
|
|
|
},
|
|
|
|
"tags": [
|
|
|
|
"example"
|
|
|
|
],
|
|
|
|
"content": "This will be unchanged",
|
|
|
|
"phoneNumber": "+01-123-456-7890"
|
|
|
|
})"_json;
|
|
|
|
|
|
|
|
document.merge_patch(patch);
|
|
|
|
CHECK(document == expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Appendix A")
|
|
|
|
{
|
|
|
|
SECTION("Example 1")
|
|
|
|
{
|
|
|
|
json original = R"({"a":"b"})"_json;
|
|
|
|
json patch = R"({"a":"c"})"_json;
|
|
|
|
json result = R"({"a":"c"})"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 2")
|
|
|
|
{
|
|
|
|
json original = R"({"a":"b"})"_json;
|
|
|
|
json patch = R"({"b":"c"})"_json;
|
|
|
|
json result = R"({"a":"b", "b":"c"})"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 3")
|
|
|
|
{
|
|
|
|
json original = R"({"a":"b"})"_json;
|
|
|
|
json patch = R"({"a":null})"_json;
|
|
|
|
json result = R"({})"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 4")
|
|
|
|
{
|
|
|
|
json original = R"({"a":"b","b":"c"})"_json;
|
|
|
|
json patch = R"({"a":null})"_json;
|
|
|
|
json result = R"({"b":"c"})"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 5")
|
|
|
|
{
|
|
|
|
json original = R"({"a":["b"]})"_json;
|
|
|
|
json patch = R"({"a":"c"})"_json;
|
|
|
|
json result = R"({"a":"c"})"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 6")
|
|
|
|
{
|
|
|
|
json original = R"({"a":"c"})"_json;
|
|
|
|
json patch = R"({"a":["b"]})"_json;
|
|
|
|
json result = R"({"a":["b"]})"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 7")
|
|
|
|
{
|
|
|
|
json original = R"({"a":{"b": "c"}})"_json;
|
|
|
|
json patch = R"({"a":{"b":"d","c":null}})"_json;
|
|
|
|
json result = R"({"a": {"b": "d"}})"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 8")
|
|
|
|
{
|
|
|
|
json original = R"({"a":[{"b":"c"}]})"_json;
|
|
|
|
json patch = R"({"a":[1]})"_json;
|
|
|
|
json result = R"({"a":[1]})"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 9")
|
|
|
|
{
|
|
|
|
json original = R"(["a","b"])"_json;
|
|
|
|
json patch = R"(["c","d"])"_json;
|
|
|
|
json result = R"(["c","d"])"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 10")
|
|
|
|
{
|
|
|
|
json original = R"({"a":"b"})"_json;
|
|
|
|
json patch = R"(["c"])"_json;
|
|
|
|
json result = R"(["c"])"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 11")
|
|
|
|
{
|
|
|
|
json original = R"({"a":"foo"})"_json;
|
|
|
|
json patch = R"(null)"_json;
|
|
|
|
json result = R"(null)"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 12")
|
|
|
|
{
|
|
|
|
json original = R"({"a":"foo"})"_json;
|
|
|
|
json patch = R"("bar")"_json;
|
|
|
|
json result = R"("bar")"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 13")
|
|
|
|
{
|
|
|
|
json original = R"({"e":null})"_json;
|
|
|
|
json patch = R"({"a":1})"_json;
|
|
|
|
json result = R"({"e":null,"a":1})"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 14")
|
|
|
|
{
|
|
|
|
json original = R"([1,2])"_json;
|
|
|
|
json patch = R"({"a":"b","c":null})"_json;
|
|
|
|
json result = R"({"a":"b"})"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Example 15")
|
|
|
|
{
|
|
|
|
json original = R"({})"_json;
|
|
|
|
json patch = R"({"a":{"bb":{"ccc":null}}})"_json;
|
|
|
|
json result = R"({"a":{"bb":{}}})"_json;
|
|
|
|
|
|
|
|
original.merge_patch(patch);
|
|
|
|
CHECK(original == result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|