mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 08:31:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// ArduinoJson - arduinojson.org
 | 
						|
// Copyright Benoit Blanchon 2014-2019
 | 
						|
// MIT License
 | 
						|
 | 
						|
#include <ArduinoJson.h>
 | 
						|
#include <catch.hpp>
 | 
						|
#include <sstream>
 | 
						|
 | 
						|
TEST_CASE("operator<<(std::ostream)") {
 | 
						|
  DynamicJsonDocument doc(4096);
 | 
						|
  std::ostringstream os;
 | 
						|
 | 
						|
  SECTION("JsonVariant containing false") {
 | 
						|
    JsonVariant variant = doc.to<JsonVariant>();
 | 
						|
 | 
						|
    variant.set(false);
 | 
						|
    os << variant;
 | 
						|
 | 
						|
    REQUIRE("false" == os.str());
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("JsonVariant containing string") {
 | 
						|
    JsonVariant variant = doc.to<JsonVariant>();
 | 
						|
 | 
						|
    variant.set("coucou");
 | 
						|
    os << variant;
 | 
						|
 | 
						|
    REQUIRE("\"coucou\"" == os.str());
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("JsonObject") {
 | 
						|
    JsonObject object = doc.to<JsonObject>();
 | 
						|
    object["key"] = "value";
 | 
						|
 | 
						|
    os << object;
 | 
						|
 | 
						|
    REQUIRE("{\"key\":\"value\"}" == os.str());
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("MemberProxy") {
 | 
						|
    JsonObject object = doc.to<JsonObject>();
 | 
						|
    object["key"] = "value";
 | 
						|
 | 
						|
    os << object["key"];
 | 
						|
 | 
						|
    REQUIRE("\"value\"" == os.str());
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("JsonArray") {
 | 
						|
    JsonArray array = doc.to<JsonArray>();
 | 
						|
    array.add("value");
 | 
						|
 | 
						|
    os << array;
 | 
						|
 | 
						|
    REQUIRE("[\"value\"]" == os.str());
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("ElementProxy") {
 | 
						|
    JsonArray array = doc.to<JsonArray>();
 | 
						|
    array.add("value");
 | 
						|
 | 
						|
    os << array[0];
 | 
						|
 | 
						|
    REQUIRE("\"value\"" == os.str());
 | 
						|
  }
 | 
						|
}
 |