2017-11-07 20:42:50 +01:00
|
|
|
// ArduinoJson - arduinojson.org
|
2018-01-05 09:20:01 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2018
|
2017-04-18 18:22:24 +02:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
#include <catch.hpp>
|
|
|
|
|
2018-10-02 16:54:05 +02:00
|
|
|
using namespace ARDUINOJSON_NAMESPACE;
|
2018-01-19 08:32:15 +01:00
|
|
|
|
2018-09-03 16:14:21 +02:00
|
|
|
TEST_CASE("StaticMemoryPool::startString()") {
|
2017-04-18 18:22:24 +02:00
|
|
|
SECTION("WorksWhenBufferIsBigEnough") {
|
2018-09-03 16:14:21 +02:00
|
|
|
StaticMemoryPool<6> memoryPool;
|
2017-04-18 18:22:24 +02:00
|
|
|
|
2018-10-04 11:16:23 +02:00
|
|
|
StringBuilder str = memoryPool.startString();
|
2017-04-18 18:22:24 +02:00
|
|
|
str.append('h');
|
|
|
|
str.append('e');
|
|
|
|
str.append('l');
|
|
|
|
str.append('l');
|
|
|
|
str.append('o');
|
|
|
|
|
2018-10-04 11:16:23 +02:00
|
|
|
REQUIRE(str.complete().equals("hello"));
|
2017-04-18 18:22:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("ReturnsNullWhenTooSmall") {
|
2018-09-03 16:14:21 +02:00
|
|
|
StaticMemoryPool<5> memoryPool;
|
2017-04-18 18:22:24 +02:00
|
|
|
|
2018-10-04 11:16:23 +02:00
|
|
|
StringBuilder str = memoryPool.startString();
|
2017-04-18 18:22:24 +02:00
|
|
|
str.append('h');
|
|
|
|
str.append('e');
|
|
|
|
str.append('l');
|
|
|
|
str.append('l');
|
|
|
|
str.append('o');
|
|
|
|
|
2018-10-04 11:16:23 +02:00
|
|
|
REQUIRE(str.complete().isNull());
|
2017-04-18 18:22:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("SizeIncreases") {
|
2018-09-03 16:14:21 +02:00
|
|
|
StaticMemoryPool<5> memoryPool;
|
2017-04-18 18:22:24 +02:00
|
|
|
|
2018-10-04 11:16:23 +02:00
|
|
|
StringBuilder str = memoryPool.startString();
|
2017-04-18 18:22:24 +02:00
|
|
|
str.append('h');
|
2018-10-04 11:16:23 +02:00
|
|
|
str.complete();
|
2018-10-18 17:54:33 +02:00
|
|
|
|
2018-09-03 16:14:21 +02:00
|
|
|
REQUIRE(2 == memoryPool.size());
|
2017-04-18 18:22:24 +02:00
|
|
|
}
|
|
|
|
}
|