// ArduinoJson - https://arduinojson.org // Copyright © 2014-2023, Benoit BLANCHON // MIT License #include #include // malloc, free #include #include #include "Allocators.hpp" using ArduinoJson::detail::sizeofObject; using ArduinoJson::detail::sizeofString; TEST_CASE("JsonDocument::garbageCollect()") { ControllableAllocator controllableAllocator; SpyingAllocator spyingAllocator(&controllableAllocator); JsonDocument doc(&spyingAllocator); SECTION("when allocation succeeds") { deserializeJson(doc, "{\"blanket\":1,\"dancing\":2}"); doc.remove("blanket"); spyingAllocator.clearLog(); bool result = doc.garbageCollect(); REQUIRE(result == true); REQUIRE(doc.as() == "{\"dancing\":2}"); REQUIRE(spyingAllocator.log() == AllocatorLog() << AllocatorLog::Allocate(sizeofString(7)) << AllocatorLog::Allocate(sizeofPool()) << AllocatorLog::Deallocate(sizeofString(7)) << AllocatorLog::Deallocate(sizeofPool())); } SECTION("when allocation fails") { deserializeJson(doc, "{\"blanket\":1,\"dancing\":2}"); doc.remove("blanket"); controllableAllocator.disable(); spyingAllocator.clearLog(); bool result = doc.garbageCollect(); REQUIRE(result == false); REQUIRE(doc.as() == "{\"dancing\":2}"); REQUIRE(spyingAllocator.log() == AllocatorLog() << AllocatorLog::AllocateFail(sizeofString(7))); } }