mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 00:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			117 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// ArduinoJson - https://arduinojson.org
 | 
						|
// Copyright © 2014-2024, Benoit BLANCHON
 | 
						|
// MIT License
 | 
						|
 | 
						|
#include <ArduinoJson.h>
 | 
						|
#include <stdint.h>
 | 
						|
#include <catch.hpp>
 | 
						|
 | 
						|
#include "Allocators.hpp"
 | 
						|
#include "Literals.hpp"
 | 
						|
 | 
						|
TEST_CASE("JsonVariant::add(T)") {
 | 
						|
  JsonDocument doc;
 | 
						|
  JsonVariant var = doc.to<JsonVariant>();
 | 
						|
 | 
						|
  SECTION("add integer to new variant") {
 | 
						|
    var.add(42);
 | 
						|
 | 
						|
    REQUIRE(var.as<std::string>() == "[42]");
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("add const char* to new variant") {
 | 
						|
    var.add("hello");
 | 
						|
 | 
						|
    REQUIRE(var.as<std::string>() == "[\"hello\"]");
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("add std::string to new variant") {
 | 
						|
    var.add("hello"_s);
 | 
						|
 | 
						|
    REQUIRE(var.as<std::string>() == "[\"hello\"]");
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("add integer to integer") {
 | 
						|
    var.set(123);
 | 
						|
 | 
						|
    var.add(456);  // no-op
 | 
						|
 | 
						|
    REQUIRE(var.as<std::string>() == "123");
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("add integer to object") {
 | 
						|
    var["val"] = 123;
 | 
						|
 | 
						|
    var.add(456);  // no-op
 | 
						|
 | 
						|
    REQUIRE(var.as<std::string>() == "{\"val\":123}");
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
TEST_CASE("JsonVariant::add<T>()") {
 | 
						|
  JsonDocument doc;
 | 
						|
  JsonVariant var = doc.to<JsonVariant>();
 | 
						|
 | 
						|
  SECTION("JsonArray") {
 | 
						|
    JsonArray array = var.add<JsonArray>();
 | 
						|
    array.add(1);
 | 
						|
    array.add(2);
 | 
						|
    REQUIRE(doc.as<std::string>() == "[[1,2]]");
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("JsonVariant") {
 | 
						|
    JsonVariant variant = var.add<JsonVariant>();
 | 
						|
    variant.set(42);
 | 
						|
    REQUIRE(doc.as<std::string>() == "[42]");
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
TEST_CASE("JsonObject::add(JsonObject) ") {
 | 
						|
  JsonDocument doc1;
 | 
						|
  doc1["hello"_s] = "world"_s;
 | 
						|
 | 
						|
  TimebombAllocator allocator(10);
 | 
						|
  SpyingAllocator spy(&allocator);
 | 
						|
  JsonDocument doc2(&spy);
 | 
						|
  JsonVariant variant = doc2.to<JsonVariant>();
 | 
						|
 | 
						|
  SECTION("success") {
 | 
						|
    bool result = variant.add(doc1.as<JsonObject>());
 | 
						|
 | 
						|
    REQUIRE(result == true);
 | 
						|
    REQUIRE(doc2.as<std::string>() == "[{\"hello\":\"world\"}]");
 | 
						|
    REQUIRE(spy.log() == AllocatorLog{
 | 
						|
                             Allocate(sizeofPool()),
 | 
						|
                             Allocate(sizeofString("hello")),
 | 
						|
                             Allocate(sizeofString("world")),
 | 
						|
                         });
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("partial failure") {  // issue #2081
 | 
						|
    allocator.setCountdown(2);
 | 
						|
 | 
						|
    bool result = variant.add(doc1.as<JsonObject>());
 | 
						|
 | 
						|
    REQUIRE(result == false);
 | 
						|
    REQUIRE(doc2.as<std::string>() == "[]");
 | 
						|
    REQUIRE(spy.log() == AllocatorLog{
 | 
						|
                             Allocate(sizeofPool()),
 | 
						|
                             Allocate(sizeofString("hello")),
 | 
						|
                             AllocateFail(sizeofString("world")),
 | 
						|
                             Deallocate(sizeofString("hello")),
 | 
						|
                         });
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("complete failure") {
 | 
						|
    allocator.setCountdown(0);
 | 
						|
 | 
						|
    bool result = variant.add(doc1.as<JsonObject>());
 | 
						|
 | 
						|
    REQUIRE(result == false);
 | 
						|
    REQUIRE(doc2.as<std::string>() == "[]");
 | 
						|
    REQUIRE(spy.log() == AllocatorLog{
 | 
						|
                             AllocateFail(sizeofPool()),
 | 
						|
                         });
 | 
						|
  }
 | 
						|
}
 |