mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 16:41:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// ArduinoJson - https://arduinojson.org
 | 
						|
// Copyright © 2014-2025, Benoit BLANCHON
 | 
						|
// MIT License
 | 
						|
 | 
						|
#include <ArduinoJson.h>
 | 
						|
#include <catch.hpp>
 | 
						|
 | 
						|
#include "Allocators.hpp"
 | 
						|
 | 
						|
using ArduinoJson::detail::sizeofArray;
 | 
						|
 | 
						|
TEST_CASE("deserializeJson() misc cases") {
 | 
						|
  SpyingAllocator spy;
 | 
						|
  JsonDocument doc(&spy);
 | 
						|
 | 
						|
  SECTION("null") {
 | 
						|
    DeserializationError err = deserializeJson(doc, "null");
 | 
						|
    REQUIRE(err == DeserializationError::Ok);
 | 
						|
    REQUIRE(doc.is<float>() == false);
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("true") {
 | 
						|
    DeserializationError err = deserializeJson(doc, "true");
 | 
						|
 | 
						|
    REQUIRE(err == DeserializationError::Ok);
 | 
						|
    REQUIRE(doc.is<bool>());
 | 
						|
    REQUIRE(doc.as<bool>() == true);
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("false") {
 | 
						|
    DeserializationError err = deserializeJson(doc, "false");
 | 
						|
 | 
						|
    REQUIRE(err == DeserializationError::Ok);
 | 
						|
    REQUIRE(doc.is<bool>());
 | 
						|
    REQUIRE(doc.as<bool>() == false);
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("Should clear the JsonVariant") {
 | 
						|
    deserializeJson(doc, "[1,2,3]");
 | 
						|
    spy.clearLog();
 | 
						|
 | 
						|
    deserializeJson(doc, "{}");
 | 
						|
 | 
						|
    REQUIRE(doc.is<JsonObject>());
 | 
						|
    REQUIRE(spy.log() == AllocatorLog{
 | 
						|
                             Deallocate(sizeofArray(3)),
 | 
						|
                         });
 | 
						|
  }
 | 
						|
}
 |