2016-08-04 19:55:47 +00:00
|
|
|
/*
|
|
|
|
__ _____ _____ _____
|
|
|
|
__| | __| | | | JSON for Modern C++ (test suite)
|
2017-12-29 17:31:13 +00:00
|
|
|
| | |__ | | | | | | version 3.0.1
|
2016-08-04 19:55:47 +00:00
|
|
|
|_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
|
|
|
|
|
|
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
|
2017-01-02 08:40:00 +00:00
|
|
|
Copyright (c) 2013-2017 Niels Lohmann <http://nlohmann.me>.
|
2016-08-04 19:55:47 +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"
|
|
|
|
|
|
|
|
#define private public
|
|
|
|
#include "json.hpp"
|
|
|
|
using nlohmann::json;
|
|
|
|
|
2017-04-09 17:28:15 +00:00
|
|
|
// shortcut to scan a string literal
|
|
|
|
json::lexer::token_type scan_string(const char* s);
|
|
|
|
json::lexer::token_type scan_string(const char* s)
|
|
|
|
{
|
2017-07-23 16:11:34 +00:00
|
|
|
return json::lexer(nlohmann::detail::input_adapter(s)).scan();
|
2017-04-09 17:28:15 +00:00
|
|
|
}
|
|
|
|
|
2016-08-04 19:55:47 +00:00
|
|
|
TEST_CASE("lexer class")
|
|
|
|
{
|
|
|
|
SECTION("scan")
|
|
|
|
{
|
|
|
|
SECTION("structural characters")
|
|
|
|
{
|
2017-04-09 17:28:15 +00:00
|
|
|
CHECK((scan_string("[") == json::lexer::token_type::begin_array));
|
|
|
|
CHECK((scan_string("]") == json::lexer::token_type::end_array));
|
|
|
|
CHECK((scan_string("{") == json::lexer::token_type::begin_object));
|
|
|
|
CHECK((scan_string("}") == json::lexer::token_type::end_object));
|
|
|
|
CHECK((scan_string(",") == json::lexer::token_type::value_separator));
|
|
|
|
CHECK((scan_string(":") == json::lexer::token_type::name_separator));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("literal names")
|
|
|
|
{
|
2017-04-09 17:28:15 +00:00
|
|
|
CHECK((scan_string("null") == json::lexer::token_type::literal_null));
|
|
|
|
CHECK((scan_string("true") == json::lexer::token_type::literal_true));
|
|
|
|
CHECK((scan_string("false") == json::lexer::token_type::literal_false));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("numbers")
|
|
|
|
{
|
2017-04-09 17:28:15 +00:00
|
|
|
CHECK((scan_string("0") == json::lexer::token_type::value_unsigned));
|
|
|
|
CHECK((scan_string("1") == json::lexer::token_type::value_unsigned));
|
|
|
|
CHECK((scan_string("2") == json::lexer::token_type::value_unsigned));
|
|
|
|
CHECK((scan_string("3") == json::lexer::token_type::value_unsigned));
|
|
|
|
CHECK((scan_string("4") == json::lexer::token_type::value_unsigned));
|
|
|
|
CHECK((scan_string("5") == json::lexer::token_type::value_unsigned));
|
|
|
|
CHECK((scan_string("6") == json::lexer::token_type::value_unsigned));
|
|
|
|
CHECK((scan_string("7") == json::lexer::token_type::value_unsigned));
|
|
|
|
CHECK((scan_string("8") == json::lexer::token_type::value_unsigned));
|
|
|
|
CHECK((scan_string("9") == json::lexer::token_type::value_unsigned));
|
|
|
|
|
|
|
|
CHECK((scan_string("-0") == json::lexer::token_type::value_integer));
|
|
|
|
CHECK((scan_string("-1") == json::lexer::token_type::value_integer));
|
|
|
|
|
|
|
|
CHECK((scan_string("1.1") == json::lexer::token_type::value_float));
|
|
|
|
CHECK((scan_string("-1.1") == json::lexer::token_type::value_float));
|
|
|
|
CHECK((scan_string("1E10") == json::lexer::token_type::value_float));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("whitespace")
|
|
|
|
{
|
|
|
|
// result is end_of_input, because not token is following
|
2017-04-09 17:28:15 +00:00
|
|
|
CHECK((scan_string(" ") == json::lexer::token_type::end_of_input));
|
|
|
|
CHECK((scan_string("\t") == json::lexer::token_type::end_of_input));
|
|
|
|
CHECK((scan_string("\n") == json::lexer::token_type::end_of_input));
|
|
|
|
CHECK((scan_string("\r") == json::lexer::token_type::end_of_input));
|
|
|
|
CHECK((scan_string(" \t\n\r\n\t ") == json::lexer::token_type::end_of_input));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("token_type_name")
|
|
|
|
{
|
2017-03-28 18:29:27 +00:00
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::uninitialized)) == "<uninitialized>"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::literal_true)) == "true literal"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::literal_false)) == "false literal"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::literal_null)) == "null literal"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::value_string)) == "string literal"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::value_unsigned)) == "number literal"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::value_integer)) == "number literal"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::value_float)) == "number literal"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::begin_array)) == "'['"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::begin_object)) == "'{'"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::end_array)) == "']'"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::end_object)) == "'}'"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::name_separator)) == "':'"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::value_separator)) == "','"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::parse_error)) == "<parse error>"));
|
|
|
|
CHECK((std::string(json::lexer::token_type_name(json::lexer::token_type::end_of_input)) == "end of input"));
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("parse errors on first character")
|
|
|
|
{
|
|
|
|
for (int c = 1; c < 128; ++c)
|
|
|
|
{
|
2016-08-14 19:59:41 +00:00
|
|
|
// create string from the ASCII code
|
2017-03-16 17:39:33 +00:00
|
|
|
const auto s = std::string(1, static_cast<char>(c));
|
2016-08-14 19:59:41 +00:00
|
|
|
// store scan() result
|
2017-04-09 17:28:15 +00:00
|
|
|
const auto res = scan_string(s.c_str());
|
2016-08-04 19:55:47 +00:00
|
|
|
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
// single characters that are valid tokens
|
|
|
|
case ('['):
|
|
|
|
case (']'):
|
|
|
|
case ('{'):
|
|
|
|
case ('}'):
|
|
|
|
case (','):
|
|
|
|
case (':'):
|
|
|
|
case ('0'):
|
|
|
|
case ('1'):
|
|
|
|
case ('2'):
|
|
|
|
case ('3'):
|
|
|
|
case ('4'):
|
|
|
|
case ('5'):
|
|
|
|
case ('6'):
|
|
|
|
case ('7'):
|
|
|
|
case ('8'):
|
|
|
|
case ('9'):
|
|
|
|
{
|
2016-12-14 20:53:10 +00:00
|
|
|
CHECK((res != json::lexer::token_type::parse_error));
|
2016-08-04 19:55:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// whitespace
|
|
|
|
case (' '):
|
|
|
|
case ('\t'):
|
|
|
|
case ('\n'):
|
|
|
|
case ('\r'):
|
|
|
|
{
|
2016-12-14 20:53:10 +00:00
|
|
|
CHECK((res == json::lexer::token_type::end_of_input));
|
2016-08-04 19:55:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// anything else is not expected
|
|
|
|
default:
|
|
|
|
{
|
2016-12-14 20:53:10 +00:00
|
|
|
CHECK((res == json::lexer::token_type::parse_error));
|
2016-08-04 19:55:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-01 06:34:58 +00:00
|
|
|
SECTION("very large string")
|
|
|
|
{
|
|
|
|
// strings larger than 1024 bytes yield a resize of the lexer's yytext buffer
|
|
|
|
std::string s("\"");
|
|
|
|
s += std::string(2048, 'x');
|
|
|
|
s += "\"";
|
2017-04-09 17:28:15 +00:00
|
|
|
CHECK((scan_string(s.c_str()) == json::lexer::token_type::value_string));
|
2017-04-01 06:34:58 +00:00
|
|
|
}
|
|
|
|
|
2017-03-24 18:49:02 +00:00
|
|
|
/* NOTE: to_unicode function has been removed
|
2016-08-04 19:55:47 +00:00
|
|
|
SECTION("to_unicode")
|
|
|
|
{
|
2017-03-01 20:28:44 +00:00
|
|
|
// lexer to call to_unicode on
|
2017-03-24 18:49:02 +00:00
|
|
|
json::lexer dummy_lexer("", 0);
|
2017-03-01 20:28:44 +00:00
|
|
|
CHECK(dummy_lexer.to_unicode(0x1F4A9) == "💩");
|
|
|
|
CHECK_THROWS_AS(dummy_lexer.to_unicode(0x200000), json::parse_error);
|
|
|
|
CHECK_THROWS_WITH(dummy_lexer.to_unicode(0x200000), "[json.exception.parse_error.103] parse error: code points above 0x10FFFF are invalid");
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|
2017-03-24 18:49:02 +00:00
|
|
|
*/
|
2016-08-04 19:55:47 +00:00
|
|
|
}
|