Verify that the nlohmann json library gracefully handles UTF-8 BOM at the start of the payload (#4775)

This commit is contained in:
Ahson Khan 2023-07-13 11:46:18 -07:00 коммит произвёл GitHub
Родитель b54d509c72
Коммит 5ea89474e7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -17,6 +17,15 @@ TEST(Json, create)
EXPECT_EQ(expected, j.dump());
}
TEST(Json, utf8BOM)
{
// Verify that the UTF-8 BOM bytes (0xEF, 0xBB, 0xBF) are skipped when parsing JSON using the
// library.
std::array<uint8_t, 8> v{239, 187, 191, '5'};
json jsonRoot = json::parse(v);
EXPECT_EQ(jsonRoot.get<int>(), 5);
}
TEST(Json, duplicateName)
{
json jsonRoot = json::parse(R"({"KeyName": 1, "AnotherObject": {"KeyName": 2}})");