112 lines
3.2 KiB
C++
112 lines
3.2 KiB
C++
/*
|
|
__ _____ _____ _____
|
|
__| | __| | | | JSON for Modern C++ (test suite)
|
|
| | |__ | | | | | | version 3.5.0
|
|
|_____|_____|_____|_|___| https://github.com/nlohmann/json
|
|
|
|
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
|
|
SPDX-License-Identifier: MIT
|
|
Copyright (c) 2013-2018 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"
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
using nlohmann::json;
|
|
|
|
bool wstring_is_utf16();
|
|
bool wstring_is_utf16()
|
|
{
|
|
return (std::wstring(L"💩") == std::wstring(L"\U0001F4A9"));
|
|
}
|
|
|
|
bool u16string_is_utf16();
|
|
bool u16string_is_utf16()
|
|
{
|
|
return (std::u16string(u"💩") == std::u16string(u"\U0001F4A9"));
|
|
}
|
|
|
|
bool u32string_is_utf32();
|
|
bool u32string_is_utf32()
|
|
{
|
|
return (std::u32string(U"💩") == std::u32string(U"\U0001F4A9"));
|
|
}
|
|
|
|
TEST_CASE("wide strings")
|
|
{
|
|
SECTION("std::wstring")
|
|
{
|
|
if (wstring_is_utf16())
|
|
{
|
|
std::wstring w = L"[12.2,\"Ⴥaäö💤🧢\"]";
|
|
json j = json::parse(w);
|
|
CHECK(j.dump() == "[12.2,\"Ⴥaäö💤🧢\"]");
|
|
}
|
|
}
|
|
|
|
SECTION("invalid std::wstring")
|
|
{
|
|
if (wstring_is_utf16())
|
|
{
|
|
std::wstring w = L"\"\xDBFF";
|
|
CHECK_THROWS_AS(json::parse(w), json::parse_error&);
|
|
}
|
|
}
|
|
|
|
SECTION("std::u16string")
|
|
{
|
|
if (u16string_is_utf16())
|
|
{
|
|
std::u16string w = u"[12.2,\"Ⴥaäö💤🧢\"]";
|
|
json j = json::parse(w);
|
|
CHECK(j.dump() == "[12.2,\"Ⴥaäö💤🧢\"]");
|
|
}
|
|
}
|
|
|
|
SECTION("invalid std::u16string")
|
|
{
|
|
if (wstring_is_utf16())
|
|
{
|
|
std::u16string w = u"\"\xDBFF";
|
|
CHECK_THROWS_AS(json::parse(w), json::parse_error&);
|
|
}
|
|
}
|
|
|
|
SECTION("std::u32string")
|
|
{
|
|
if (u32string_is_utf32())
|
|
{
|
|
std::u32string w = U"[12.2,\"Ⴥaäö💤🧢\"]";
|
|
json j = json::parse(w);
|
|
CHECK(j.dump() == "[12.2,\"Ⴥaäö💤🧢\"]");
|
|
}
|
|
}
|
|
|
|
SECTION("invalid std::u32string")
|
|
{
|
|
if (u32string_is_utf32())
|
|
{
|
|
std::u32string w = U"\"\x110000";
|
|
CHECK_THROWS_AS(json::parse(w), json::parse_error&);
|
|
}
|
|
}
|
|
}
|