123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /*
- __ _____ _____ _____
- __| | __| | | | JSON for Modern C++ (test suite)
- | | |__ | | | | | | version 3.7.3
- |_____|_____|_____|_|___| https://github.com/nlohmann/json
- Licensed under the MIT License <http://opensource.org/licenses/MIT>.
- SPDX-License-Identifier: MIT
- Copyright (c) 2013-2019 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 "doctest_compatibility.h"
- #include <nlohmann/json.hpp>
- using nlohmann::json;
- namespace
- {
- 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";
- json _;
- 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";
- json _;
- 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";
- json _;
- CHECK_THROWS_AS(_ = json::parse(w), json::parse_error&);
- }
- }
- }
|