2016-08-04 05:24:46 +00:00
|
|
|
/*
|
|
|
|
__ _____ _____ _____
|
|
|
|
__| | __| | | | JSON for Modern C++ (test suite)
|
|
|
|
| | |__ | | | | | | version 2.0.2
|
|
|
|
|_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
|
|
|
|
|
|
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
|
|
|
|
Copyright (c) 2013-2016 Niels Lohmann <http://nlohmann.me>.
|
|
|
|
|
|
|
|
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"
|
2016-08-04 19:55:47 +00:00
|
|
|
|
|
|
|
#include "json.hpp"
|
|
|
|
using nlohmann::json;
|
|
|
|
|
2016-08-15 20:44:14 +00:00
|
|
|
#include <valarray>
|
|
|
|
|
2016-08-04 19:55:47 +00:00
|
|
|
TEST_CASE("deserialization")
|
|
|
|
{
|
|
|
|
SECTION("stream")
|
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << "[\"foo\",1,2,3,false,{\"one\":1}]";
|
|
|
|
json j = json::parse(ss);
|
|
|
|
CHECK(j == json({"foo", 1, 2, 3, false, {{"one", 1}}}));
|
|
|
|
}
|
|
|
|
|
2016-08-15 20:44:14 +00:00
|
|
|
SECTION("string literal")
|
2016-08-04 19:55:47 +00:00
|
|
|
{
|
|
|
|
auto s = "[\"foo\",1,2,3,false,{\"one\":1}]";
|
|
|
|
json j = json::parse(s);
|
|
|
|
CHECK(j == json({"foo", 1, 2, 3, false, {{"one", 1}}}));
|
|
|
|
}
|
|
|
|
|
2016-08-15 20:44:14 +00:00
|
|
|
SECTION("string_t")
|
|
|
|
{
|
|
|
|
json::string_t s = "[\"foo\",1,2,3,false,{\"one\":1}]";
|
|
|
|
json j = json::parse(s);
|
|
|
|
CHECK(j == json({"foo", 1, 2, 3, false, {{"one", 1}}}));
|
|
|
|
}
|
|
|
|
|
2016-08-04 19:55:47 +00:00
|
|
|
SECTION("operator<<")
|
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << "[\"foo\",1,2,3,false,{\"one\":1}]";
|
|
|
|
json j;
|
|
|
|
j << ss;
|
|
|
|
CHECK(j == json({"foo", 1, 2, 3, false, {{"one", 1}}}));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("operator>>")
|
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << "[\"foo\",1,2,3,false,{\"one\":1}]";
|
|
|
|
json j;
|
|
|
|
ss >> j;
|
|
|
|
CHECK(j == json({"foo", 1, 2, 3, false, {{"one", 1}}}));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("user-defined string literal")
|
|
|
|
{
|
|
|
|
CHECK("[\"foo\",1,2,3,false,{\"one\":1}]"_json == json({"foo", 1, 2, 3, false, {{"one", 1}}}));
|
|
|
|
}
|
2016-08-15 20:44:14 +00:00
|
|
|
|
|
|
|
SECTION("contiguous containers")
|
|
|
|
{
|
2016-08-20 18:29:33 +00:00
|
|
|
SECTION("directly")
|
2016-08-15 20:44:14 +00:00
|
|
|
{
|
2016-08-20 18:29:33 +00:00
|
|
|
SECTION("from std::vector")
|
|
|
|
{
|
|
|
|
std::vector<uint8_t> v = {'t', 'r', 'u', 'e', '\0'};
|
|
|
|
CHECK(json::parse(v) == json(true));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("from std::array")
|
|
|
|
{
|
|
|
|
std::array<uint8_t, 5> v { {'t', 'r', 'u', 'e', '\0'} };
|
|
|
|
CHECK(json::parse(v) == json(true));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("from array")
|
|
|
|
{
|
|
|
|
uint8_t v[] = {'t', 'r', 'u', 'e', '\0'};
|
|
|
|
CHECK(json::parse(v) == json(true));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("from std::string")
|
|
|
|
{
|
|
|
|
std::string v = {'t', 'r', 'u', 'e'};
|
|
|
|
CHECK(json::parse(v) == json(true));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("from std::initializer_list")
|
|
|
|
{
|
|
|
|
std::initializer_list<uint8_t> v = {'t', 'r', 'u', 'e', '\0'};
|
|
|
|
CHECK(json::parse(v) == json(true));
|
|
|
|
}
|
2016-08-21 10:35:40 +00:00
|
|
|
|
|
|
|
SECTION("empty container")
|
|
|
|
{
|
|
|
|
std::vector<uint8_t> v;
|
|
|
|
CHECK_THROWS_AS(json::parse(v), std::invalid_argument);
|
|
|
|
}
|
2016-08-15 20:44:14 +00:00
|
|
|
}
|
|
|
|
|
2016-08-20 18:29:33 +00:00
|
|
|
SECTION("via iterator range")
|
2016-08-15 20:44:14 +00:00
|
|
|
{
|
2016-08-20 18:29:33 +00:00
|
|
|
SECTION("from std::vector")
|
|
|
|
{
|
|
|
|
std::vector<uint8_t> v = {'t', 'r', 'u', 'e', '\0'};
|
|
|
|
CHECK(json::parse(std::begin(v), std::end(v)) == json(true));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("from std::array")
|
|
|
|
{
|
|
|
|
std::array<uint8_t, 5> v { {'t', 'r', 'u', 'e', '\0'} };
|
|
|
|
CHECK(json::parse(std::begin(v), std::end(v)) == json(true));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("from array")
|
|
|
|
{
|
|
|
|
uint8_t v[] = {'t', 'r', 'u', 'e', '\0'};
|
|
|
|
CHECK(json::parse(std::begin(v), std::end(v)) == json(true));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("from std::string")
|
|
|
|
{
|
|
|
|
std::string v = {'t', 'r', 'u', 'e'};
|
|
|
|
CHECK(json::parse(std::begin(v), std::end(v)) == json(true));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("from std::initializer_list")
|
|
|
|
{
|
|
|
|
std::initializer_list<uint8_t> v = {'t', 'r', 'u', 'e', '\0'};
|
|
|
|
CHECK(json::parse(std::begin(v), std::end(v)) == json(true));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("from std::valarray")
|
|
|
|
{
|
|
|
|
std::valarray<uint8_t> v = {'t', 'r', 'u', 'e', '\0'};
|
|
|
|
CHECK(json::parse(std::begin(v), std::end(v)) == json(true));
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("with empty range")
|
|
|
|
{
|
|
|
|
std::vector<uint8_t> v;
|
|
|
|
CHECK_THROWS_AS(json::parse(std::begin(v), std::end(v)), std::invalid_argument);
|
|
|
|
}
|
2016-08-15 20:44:14 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|