1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
|
/*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2022 - Raw Material Software Limited
JUCE is an open source library subject to commercial or open-source
licensing.
The code included in this file is provided under the terms of the ISC license
http://www.isc.org/downloads/software-support-policy/isc-license. Permission
To use, copy, modify, and/or distribute this software for any purpose with or
without fee is hereby granted provided that the above copyright notice and
this permission notice appear in all copies.
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
DISCLAIMED.
==============================================================================
*/
namespace juce
{
struct TypeWithExternalUnifiedSerialisation
{
int a;
std::string b;
std::vector<int> c;
std::map<std::string, int> d;
auto operator== (const TypeWithExternalUnifiedSerialisation& other) const
{
const auto tie = [] (const auto& x) { return std::tie (x.a, x.b, x.c, x.d); };
return tie (*this) == tie (other);
}
auto operator!= (const TypeWithExternalUnifiedSerialisation& other) const { return ! operator== (other); }
};
template <>
struct SerialisationTraits<TypeWithExternalUnifiedSerialisation>
{
static constexpr auto marshallingVersion = 2;
template <typename Archive, typename T>
static void serialise (Archive& archive, T& t)
{
archive (named ("a", t.a),
named ("b", t.b),
named ("c", t.c),
named ("d", t.d));
}
};
// Now that the serialiser trait is visible, it should be detected
static_assert (detail::serialisationKind<TypeWithExternalUnifiedSerialisation> == detail::SerialisationKind::external);
struct TypeWithInternalUnifiedSerialisation
{
double a;
float b;
String c;
StringArray d;
auto operator== (const TypeWithInternalUnifiedSerialisation& other) const
{
const auto tie = [] (const auto& x) { return std::tie (x.a, x.b, x.c, x.d); };
return tie (*this) == tie (other);
}
auto operator!= (const TypeWithInternalUnifiedSerialisation& other) const { return ! operator== (other); }
static constexpr auto marshallingVersion = 5;
template <typename Archive, typename T>
static void serialise (Archive& archive, T& t)
{
archive (named ("a", t.a),
named ("b", t.b),
named ("c", t.c),
named ("d", t.d));
}
};
static_assert (detail::serialisationKind<TypeWithInternalUnifiedSerialisation> == detail::SerialisationKind::internal);
struct TypeWithExternalSplitSerialisation
{
std::optional<String> a;
Array<int> b;
auto operator== (const TypeWithExternalSplitSerialisation& other) const
{
const auto tie = [] (const auto& x) { return std::tie (x.a, x.b); };
return tie (*this) == tie (other);
}
auto operator!= (const TypeWithExternalSplitSerialisation& other) const { return ! operator== (other); }
};
template <>
struct SerialisationTraits<TypeWithExternalSplitSerialisation>
{
static constexpr auto marshallingVersion = 10;
template <typename Archive>
static void load (Archive& archive, TypeWithExternalSplitSerialisation& t)
{
std::optional<String> a;
Array<String> hexStrings;
archive (named ("a", a), named ("b", hexStrings));
Array<int> b;
for (auto& i : hexStrings)
b.add (i.getHexValue32());
t = { a, b };
}
template <typename Archive>
static void save (Archive& archive, const TypeWithExternalSplitSerialisation& t)
{
Array<String> hexStrings;
for (auto& i : t.b)
hexStrings.add ("0x" + String::toHexString (i));
archive (named ("a", t.a), named ("b", hexStrings));
}
};
// Now that the serialiser trait is visible, it should be detected
static_assert (detail::serialisationKind<TypeWithExternalSplitSerialisation> == detail::SerialisationKind::external);
// Check that serialisation kinds are correctly detected for primitives
static_assert (detail::serialisationKind<bool> == detail::SerialisationKind::primitive);
static_assert (detail::serialisationKind< int8_t> == detail::SerialisationKind::primitive);
static_assert (detail::serialisationKind< uint8_t> == detail::SerialisationKind::primitive);
static_assert (detail::serialisationKind< int16_t> == detail::SerialisationKind::primitive);
static_assert (detail::serialisationKind<uint16_t> == detail::SerialisationKind::primitive);
static_assert (detail::serialisationKind< int32_t> == detail::SerialisationKind::primitive);
static_assert (detail::serialisationKind<uint32_t> == detail::SerialisationKind::primitive);
static_assert (detail::serialisationKind< int64_t> == detail::SerialisationKind::primitive);
static_assert (detail::serialisationKind<uint64_t> == detail::SerialisationKind::primitive);
static_assert (detail::serialisationKind<float> == detail::SerialisationKind::primitive);
static_assert (detail::serialisationKind<double> == detail::SerialisationKind::primitive);
static_assert (detail::serialisationKind<std::byte> == detail::SerialisationKind::primitive);
static_assert (detail::serialisationKind<String> == detail::SerialisationKind::primitive);
// Check that serialisation is disabled for types with no serialsation defined
static_assert (detail::serialisationKind<Logger> == detail::SerialisationKind::none);
static_assert (detail::serialisationKind<CriticalSection> == detail::SerialisationKind::none);
struct TypeWithInternalSplitSerialisation
{
std::string a;
Array<int> b;
auto operator== (const TypeWithInternalSplitSerialisation& other) const
{
const auto tie = [] (const auto& x) { return std::tie (x.a, x.b); };
return tie (*this) == tie (other);
}
auto operator!= (const TypeWithInternalSplitSerialisation& other) const { return ! operator== (other); }
static constexpr auto marshallingVersion = 1;
template <typename Archive>
static void load (Archive& archive, TypeWithInternalSplitSerialisation& t)
{
std::string a;
Array<String> hexStrings;
archive (named ("a", a), named ("b", hexStrings));
Array<int> b;
for (auto& i : hexStrings)
b.add (i.getHexValue32());
t = { a, b };
}
template <typename Archive>
static void save (Archive& archive, const TypeWithInternalSplitSerialisation& t)
{
Array<String> hexStrings;
for (auto& i : t.b)
hexStrings.add ("0x" + String::toHexString (i));
archive (named ("a", t.a), named ("b", hexStrings));
}
};
static_assert (detail::serialisationKind<TypeWithInternalSplitSerialisation> == detail::SerialisationKind::internal);
struct TypeWithBrokenObjectSerialisation
{
int a;
int b;
static constexpr auto marshallingVersion = std::nullopt;
template <typename Archive, typename T>
static void serialise (Archive& archive, T& t)
{
// Archiving a named value will start reading/writing an object
archive (named ("a", t.a));
// Archiving a non-named value will assume that the current node is convertible
archive (t.b);
}
};
struct TypeWithBrokenPrimitiveSerialisation
{
int a;
int b;
static constexpr auto marshallingVersion = std::nullopt;
template <typename Archive, typename T>
static void serialise (Archive& archive, T& t)
{
// Archiving a non-named value will assume that the current node is convertible
archive (t.a);
// Archiving a named value will fail if the current node holds a non-object type
archive (named ("b", t.b));
}
};
struct TypeWithBrokenArraySerialisation
{
static constexpr auto marshallingVersion = std::nullopt;
template <typename Archive, typename T>
static void serialise (Archive& archive, T&)
{
size_t size = 5;
archive (size);
// serialisationSize should always be serialised first!
archive (serialisationSize (size));
}
};
struct TypeWithBrokenNestedSerialisation
{
int a;
TypeWithBrokenObjectSerialisation b;
static constexpr auto marshallingVersion = std::nullopt;
template <typename Archive, typename T>
static void serialise (Archive& archive, T& t)
{
archive (named ("a", t.a), named ("b", t.b));
}
};
struct TypeWithBrokenDynamicSerialisation
{
std::vector<TypeWithBrokenObjectSerialisation> a;
static constexpr auto marshallingVersion = std::nullopt;
template <typename Archive, typename T>
static void serialise (Archive& archive, T& t)
{
archive (t.a);
}
};
struct TypeWithVersionedSerialisation
{
int a{}, b{}, c{}, d{};
bool operator== (const TypeWithVersionedSerialisation& other) const
{
const auto tie = [] (const auto& x) { return std::tie (x.a, x.b, x.c, x.d); };
return tie (*this) == tie (other);
}
bool operator!= (const TypeWithVersionedSerialisation& other) const { return ! operator== (other); }
static constexpr auto marshallingVersion = 3;
template <typename Archive, typename T>
static void serialise (Archive& archive, T& t)
{
archive (named ("a", t.a));
if (archive.getVersion() >= 1)
archive (named ("b", t.b));
if (archive.getVersion() >= 2)
archive (named ("c", t.c));
if (archive.getVersion() >= 3)
archive (named ("d", t.d));
}
};
struct TypeWithRawVarLast
{
int status = 0;
String message;
var extended;
bool operator== (const TypeWithRawVarLast& other) const
{
const auto tie = [] (const auto& x) { return std::tie (x.status, x.message, x.extended); };
return tie (*this) == tie (other);
}
bool operator!= (const TypeWithRawVarLast& other) const { return ! operator== (other); }
static constexpr auto marshallingVersion = std::nullopt;
template <typename Archive, typename T>
static void serialise (Archive& archive, T& t)
{
archive (named ("status", t.status),
named ("message", t.message),
named ("extended", t.extended));
}
};
struct TypeWithRawVarFirst
{
int status = 0;
String message;
var extended;
bool operator== (const TypeWithRawVarFirst& other) const
{
const auto tie = [] (const auto& x) { return std::tie (x.status, x.message, x.extended); };
return tie (*this) == tie (other);
}
bool operator!= (const TypeWithRawVarFirst& other) const { return ! operator== (other); }
static constexpr auto marshallingVersion = std::nullopt;
template <typename Archive, typename T>
static void serialise (Archive& archive, T& t)
{
archive (named ("extended", t.extended),
named ("status", t.status),
named ("message", t.message));
}
};
struct TypeWithInnerVar
{
int eventId = 0;
var payload;
bool operator== (const TypeWithInnerVar& other) const
{
const auto tie = [] (const auto& x) { return std::tie (x.eventId, x.payload); };
return tie (*this) == tie (other);
}
bool operator!= (const TypeWithInnerVar& other) const { return ! operator== (other); }
static constexpr auto marshallingVersion = std::nullopt;
template <typename Archive, typename T>
static void serialise (Archive& archive, T& t)
{
archive (named ("eventId", t.eventId),
named ("payload", t.payload));
}
};
class JSONSerialisationTest final : public UnitTest
{
public:
JSONSerialisationTest() : UnitTest ("JSONSerialisation", UnitTestCategories::json) {}
void runTest() override
{
beginTest ("ToVar");
{
expectDeepEqual (ToVar::convert (false), false);
expectDeepEqual (ToVar::convert (true), true);
expectDeepEqual (ToVar::convert (1), 1);
expectDeepEqual (ToVar::convert (5.0f), 5.0);
expectDeepEqual (ToVar::convert (6LL), 6);
expectDeepEqual (ToVar::convert ("hello world"), "hello world");
expectDeepEqual (ToVar::convert (String ("hello world")), "hello world");
expectDeepEqual (ToVar::convert (std::vector<int> { 1, 2, 3 }), Array<var> { 1, 2, 3 });
expectDeepEqual (ToVar::convert (TypeWithExternalUnifiedSerialisation { 7,
"hello world",
{ 5, 6, 7 },
{ { "foo", 4 }, { "bar", 5 } } }),
JSONUtils::makeObject ({ { "__version__", 2 },
{ "a", 7 },
{ "b", "hello world" },
{ "c", Array<var> { 5, 6, 7 } },
{ "d",
Array<var> { JSONUtils::makeObject ({ { "first", "bar" },
{ "second", 5 } }),
JSONUtils::makeObject ({ { "first", "foo" },
{ "second", 4 } }) } } }));
expectDeepEqual (ToVar::convert (TypeWithInternalUnifiedSerialisation { 7.89,
4.321f,
"custom string",
{ "foo", "bar", "baz" } }),
JSONUtils::makeObject ({ { "__version__", 5 },
{ "a", 7.89 },
{ "b", 4.321f },
{ "c", "custom string" },
{ "d", Array<var> { "foo", "bar", "baz" } } }));
expectDeepEqual (ToVar::convert (TypeWithExternalSplitSerialisation { "string", { 1, 2, 3 } }),
JSONUtils::makeObject ({ { "__version__", 10 },
{ "a", JSONUtils::makeObject ({ { "engaged", true }, { "value", "string" } }) },
{ "b", Array<var> { "0x1", "0x2", "0x3" } } }));
expectDeepEqual (ToVar::convert (TypeWithInternalSplitSerialisation { "string", { 16, 32, 48 } }),
JSONUtils::makeObject ({ { "__version__", 1 },
{ "a", "string" },
{ "b", Array<var> { "0x10", "0x20", "0x30" } } }));
expect (ToVar::convert (TypeWithBrokenObjectSerialisation { 1, 2 }) == std::nullopt);
expect (ToVar::convert (TypeWithBrokenPrimitiveSerialisation { 1, 2 }) == std::nullopt);
expect (ToVar::convert (TypeWithBrokenArraySerialisation {}) == std::nullopt);
expect (ToVar::convert (TypeWithBrokenNestedSerialisation {}) == std::nullopt);
expect (ToVar::convert (TypeWithBrokenDynamicSerialisation { std::vector<TypeWithBrokenObjectSerialisation> (10) }) == std::nullopt);
expectDeepEqual (ToVar::convert (TypeWithVersionedSerialisation { 1, 2, 3, 4 }),
JSONUtils::makeObject ({ { "__version__", 3 },
{ "a", 1 },
{ "b", 2 },
{ "c", 3 },
{ "d", 4 } }));
expectDeepEqual (ToVar::convert (TypeWithVersionedSerialisation { 1, 2, 3, 4 }, ToVar::Options {}.withVersionIncluded (false)),
JSONUtils::makeObject ({ { "a", 1 },
{ "b", 2 },
{ "c", 3 },
{ "d", 4 } }));
// Requested explicit version is higher than the type's declared version
expectDeepEqual (ToVar::convert (TypeWithVersionedSerialisation { 1, 2, 3, 4 }, ToVar::Options {}.withExplicitVersion (4)),
std::nullopt);
expectDeepEqual (ToVar::convert (TypeWithVersionedSerialisation { 1, 2, 3, 4 }, ToVar::Options {}.withExplicitVersion (3)),
JSONUtils::makeObject ({ { "__version__", 3 },
{ "a", 1 },
{ "b", 2 },
{ "c", 3 },
{ "d", 4 } }));
expectDeepEqual (ToVar::convert (TypeWithVersionedSerialisation { 1, 2, 3, 4 }, ToVar::Options {}.withExplicitVersion (2)),
JSONUtils::makeObject ({ { "__version__", 2 },
{ "a", 1 },
{ "b", 2 },
{ "c", 3 } }));
expectDeepEqual (ToVar::convert (TypeWithVersionedSerialisation { 1, 2, 3, 4 }, ToVar::Options {}.withExplicitVersion (1)),
JSONUtils::makeObject ({ { "__version__", 1 },
{ "a", 1 },
{ "b", 2 } }));
expectDeepEqual (ToVar::convert (TypeWithVersionedSerialisation { 1, 2, 3, 4 }, ToVar::Options {}.withExplicitVersion (0)),
JSONUtils::makeObject ({ { "__version__", 0 },
{ "a", 1 } }));
expectDeepEqual (ToVar::convert (TypeWithVersionedSerialisation { 1, 2, 3, 4 }, ToVar::Options {}.withExplicitVersion (std::nullopt)),
JSONUtils::makeObject ({ { "a", 1 } }));
expectDeepEqual (ToVar::convert (TypeWithRawVarLast { 200, "success", true }),
JSONUtils::makeObject ({ { "status", 200 }, { "message", "success" }, { "extended", true } }));
expectDeepEqual (ToVar::convert (TypeWithRawVarLast { 200,
"success",
JSONUtils::makeObject ({ { "status", 123.456 },
{ "message", "failure" },
{ "extended", true } }) }),
JSONUtils::makeObject ({ { "status", 200 },
{ "message", "success" },
{ "extended", JSONUtils::makeObject ({ { "status", 123.456 },
{ "message", "failure" },
{ "extended", true } }) } }));
expectDeepEqual (ToVar::convert (TypeWithRawVarFirst { 200, "success", true }),
JSONUtils::makeObject ({ { "status", 200 }, { "message", "success" }, { "extended", true } }));
expectDeepEqual (ToVar::convert (TypeWithRawVarFirst { 200,
"success",
JSONUtils::makeObject ({ { "status", 123.456 },
{ "message", "failure" },
{ "extended", true } }) }),
JSONUtils::makeObject ({ { "status", 200 },
{ "message", "success" },
{ "extended", JSONUtils::makeObject ({ { "status", 123.456 },
{ "message", "failure" },
{ "extended", true } }) } }));
const auto payload = JSONUtils::makeObject ({ { "foo", 1 }, { "bar", 2 } });
expectDeepEqual (ToVar::convert (TypeWithInnerVar { 404, payload }),
JSONUtils::makeObject ({ { "eventId", 404 }, { "payload", payload } }));
}
beginTest ("FromVar");
{
expect (FromVar::convert<bool> (JSON::fromString ("false")) == false);
expect (FromVar::convert<bool> (JSON::fromString ("true")) == true);
expect (FromVar::convert<bool> (JSON::fromString ("0")) == false);
expect (FromVar::convert<bool> (JSON::fromString ("1")) == true);
expect (FromVar::convert<int> (JSON::fromString ("1")) == 1);
expect (FromVar::convert<float> (JSON::fromString ("5.0f")) == 5.0f);
expect (FromVar::convert<int64> (JSON::fromString ("6")) == 6);
expect (FromVar::convert<String> (JSON::fromString ("\"hello world\"")) == "hello world");
expect (FromVar::convert<std::vector<int>> (JSON::fromString ("[1,2,3]")) == std::vector<int> { 1, 2, 3 });
expect (FromVar::convert<TypeWithExternalUnifiedSerialisation> (JSONUtils::makeObject ({ { "__version__", 2 },
{ "a", 7 },
{ "b", "hello world" },
{ "c", Array<var> { 5, 6, 7 } },
{ "d",
Array<var> { JSONUtils::makeObject ({ { "first", "bar" },
{ "second", 5 } }),
JSONUtils::makeObject ({ { "first", "foo" },
{ "second", 4 } }) } } }))
== TypeWithExternalUnifiedSerialisation { 7,
"hello world",
{ 5, 6, 7 },
{ { "foo", 4 }, { "bar", 5 } } });
expect (FromVar::convert<TypeWithInternalUnifiedSerialisation> (JSONUtils::makeObject ({ { "__version__", 5 },
{ "a", 7.89 },
{ "b", 4.321f },
{ "c", "custom string" },
{ "d", Array<var> { "foo", "bar", "baz" } } }))
== TypeWithInternalUnifiedSerialisation { 7.89,
4.321f,
"custom string",
{ "foo", "bar", "baz" } });
expect (FromVar::convert<TypeWithExternalSplitSerialisation> (JSONUtils::makeObject ({ { "__version__", 10 },
{ "a", JSONUtils::makeObject ({ { "engaged", true }, { "value", "string" } }) },
{ "b", Array<var> { "0x1", "0x2", "0x3" } } }))
== TypeWithExternalSplitSerialisation { "string", { 1, 2, 3 } });
expect (FromVar::convert<TypeWithInternalSplitSerialisation> (JSONUtils::makeObject ({ { "__version__", 1 },
{ "a", "string" },
{ "b", Array<var> { "0x10", "0x20", "0x30" } } }))
== TypeWithInternalSplitSerialisation { "string", { 16, 32, 48 } });
expect (FromVar::convert<TypeWithBrokenObjectSerialisation> (JSON::fromString ("null")) == std::nullopt);
expect (FromVar::convert<TypeWithBrokenPrimitiveSerialisation> (JSON::fromString ("null")) == std::nullopt);
expect (FromVar::convert<TypeWithBrokenArraySerialisation> (JSON::fromString ("null")) == std::nullopt);
expect (FromVar::convert<TypeWithBrokenNestedSerialisation> (JSON::fromString ("null")) == std::nullopt);
expect (FromVar::convert<TypeWithBrokenDynamicSerialisation> (JSON::fromString ("null")) == std::nullopt);
expect (FromVar::convert<TypeWithInternalUnifiedSerialisation> (JSONUtils::makeObject ({ { "a", 7.89 },
{ "b", 4.321f } }))
== std::nullopt);
expect (FromVar::convert<TypeWithVersionedSerialisation> (JSONUtils::makeObject ({ { "__version__", 3 },
{ "a", 1 },
{ "b", 2 },
{ "c", 3 },
{ "d", 4 } }))
== TypeWithVersionedSerialisation { 1, 2, 3, 4 });
expect (FromVar::convert<TypeWithVersionedSerialisation> (JSONUtils::makeObject ({ { "__version__", 4 },
{ "a", 1 },
{ "b", 2 },
{ "c", 3 },
{ "d", 4 } }))
== TypeWithVersionedSerialisation { 1, 2, 3, 4 });
expect (FromVar::convert<TypeWithVersionedSerialisation> (JSONUtils::makeObject ({ { "__version__", 2 },
{ "a", 1 },
{ "b", 2 },
{ "c", 3 } }))
== TypeWithVersionedSerialisation { 1, 2, 3, 0 });
expect (FromVar::convert<TypeWithVersionedSerialisation> (JSONUtils::makeObject ({ { "__version__", 1 },
{ "a", 1 },
{ "b", 2 } }))
== TypeWithVersionedSerialisation { 1, 2, 0, 0 });
expect (FromVar::convert<TypeWithVersionedSerialisation> (JSONUtils::makeObject ({ { "__version__", 0 },
{ "a", 1 } }))
== TypeWithVersionedSerialisation { 1, 0, 0, 0 });
expect (FromVar::convert<TypeWithVersionedSerialisation> (JSONUtils::makeObject ({ { "a", 1 } }))
== TypeWithVersionedSerialisation { 1, 0, 0, 0 });
const auto raw = JSONUtils::makeObject ({ { "status", 200 }, { "message", "success" }, { "extended", "another string" } });
expect (FromVar::convert<TypeWithRawVarLast> (raw) == TypeWithRawVarLast { 200, "success", "another string" });
expect (FromVar::convert<TypeWithRawVarFirst> (raw) == TypeWithRawVarFirst { 200, "success", "another string" });
const var payloads[] { JSONUtils::makeObject ({ { "foo", 1 }, { "bar", 2 } }),
var (Array<var> { 1, 2 }),
var() };
for (const auto& payload : payloads)
{
const auto objectWithPayload = JSONUtils::makeObject ({ { "eventId", 404 }, { "payload", payload } });
expect (FromVar::convert<TypeWithInnerVar> (objectWithPayload) == TypeWithInnerVar { 404, payload });
}
}
}
private:
void expectDeepEqual (const std::optional<var>& a, const std::optional<var>& b)
{
const auto text = a.has_value() && b.has_value()
? JSON::toString (*a) + " != " + JSON::toString (*b)
: String();
expect (deepEqual (a, b), text);
}
static bool deepEqual (const std::optional<var>& a, const std::optional<var>& b)
{
if (a.has_value() && b.has_value())
return JSONUtils::deepEqual (*a, *b);
return a == b;
}
};
static JSONSerialisationTest jsonSerialisationTest;
} // namespace juce
|