2023-07-21 10:38:35 +02:00
|
|
|
// ArduinoJson - https://arduinojson.org
|
2024-01-03 08:47:06 +01:00
|
|
|
// Copyright © 2014-2024, Benoit BLANCHON
|
2023-07-21 10:38:35 +02:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
#include <ArduinoJson/Memory/ResourceManager.hpp>
|
|
|
|
#include <ArduinoJson/Memory/VariantPoolImpl.hpp>
|
|
|
|
#include <catch.hpp>
|
|
|
|
|
|
|
|
#include "Allocators.hpp"
|
|
|
|
|
|
|
|
using namespace ArduinoJson::detail;
|
|
|
|
|
|
|
|
TEST_CASE("ResourceManager::shrinkToFit()") {
|
2023-07-25 14:53:54 +02:00
|
|
|
SpyingAllocator spyingAllocator;
|
2023-07-21 10:38:35 +02:00
|
|
|
ResourceManager resources(&spyingAllocator);
|
|
|
|
|
|
|
|
SECTION("empty") {
|
|
|
|
resources.shrinkToFit();
|
|
|
|
|
2023-07-26 06:06:38 +02:00
|
|
|
REQUIRE(spyingAllocator.log() == AllocatorLog{});
|
2023-07-21 10:38:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("only one pool") {
|
|
|
|
resources.allocSlot();
|
|
|
|
|
|
|
|
resources.shrinkToFit();
|
|
|
|
|
|
|
|
REQUIRE(spyingAllocator.log() ==
|
2023-07-26 06:06:38 +02:00
|
|
|
AllocatorLog{
|
|
|
|
Allocate(sizeofPool()),
|
|
|
|
Reallocate(sizeofPool(), sizeof(VariantSlot)),
|
|
|
|
});
|
2023-07-21 10:38:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("more pools than initial count") {
|
|
|
|
for (size_t i = 0;
|
|
|
|
i < ARDUINOJSON_POOL_CAPACITY * ARDUINOJSON_INITIAL_POOL_COUNT + 1;
|
|
|
|
i++)
|
|
|
|
resources.allocSlot();
|
|
|
|
REQUIRE(spyingAllocator.log() ==
|
2023-07-26 06:06:38 +02:00
|
|
|
AllocatorLog{
|
|
|
|
Allocate(sizeofPool()) * ARDUINOJSON_INITIAL_POOL_COUNT,
|
|
|
|
Allocate(sizeofPoolList(ARDUINOJSON_INITIAL_POOL_COUNT * 2)),
|
|
|
|
Allocate(sizeofPool()),
|
|
|
|
});
|
2023-07-21 10:38:35 +02:00
|
|
|
|
|
|
|
spyingAllocator.clearLog();
|
|
|
|
resources.shrinkToFit();
|
|
|
|
|
|
|
|
REQUIRE(spyingAllocator.log() ==
|
2023-07-26 06:06:38 +02:00
|
|
|
AllocatorLog{
|
|
|
|
Reallocate(sizeofPool(), sizeof(VariantSlot)),
|
|
|
|
Reallocate(sizeofPoolList(ARDUINOJSON_INITIAL_POOL_COUNT * 2),
|
|
|
|
sizeofPoolList(ARDUINOJSON_INITIAL_POOL_COUNT + 1)),
|
|
|
|
});
|
2023-07-21 10:38:35 +02:00
|
|
|
}
|
|
|
|
}
|