mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 00:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			84 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// ArduinoJson - https://arduinojson.org
 | 
						|
// Copyright © 2014-2023, Benoit BLANCHON
 | 
						|
// MIT License
 | 
						|
 | 
						|
#include <ArduinoJson.h>
 | 
						|
#include <catch.hpp>
 | 
						|
#include <string>
 | 
						|
 | 
						|
TEST_CASE("JsonObject::remove()") {
 | 
						|
  JsonDocument doc;
 | 
						|
  JsonObject obj = doc.to<JsonObject>();
 | 
						|
  obj["a"] = 0;
 | 
						|
  obj["b"] = 1;
 | 
						|
  obj["c"] = 2;
 | 
						|
  std::string result;
 | 
						|
 | 
						|
  SECTION("remove(key)") {
 | 
						|
    SECTION("Remove first") {
 | 
						|
      obj.remove("a");
 | 
						|
      serializeJson(obj, result);
 | 
						|
      REQUIRE("{\"b\":1,\"c\":2}" == result);
 | 
						|
    }
 | 
						|
 | 
						|
    SECTION("Remove middle") {
 | 
						|
      obj.remove("b");
 | 
						|
      serializeJson(obj, result);
 | 
						|
      REQUIRE("{\"a\":0,\"c\":2}" == result);
 | 
						|
    }
 | 
						|
 | 
						|
    SECTION("Remove last") {
 | 
						|
      obj.remove("c");
 | 
						|
      serializeJson(obj, result);
 | 
						|
      REQUIRE("{\"a\":0,\"b\":1}" == result);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("remove(iterator)") {
 | 
						|
    JsonObject::iterator it = obj.begin();
 | 
						|
 | 
						|
    SECTION("Remove first") {
 | 
						|
      obj.remove(it);
 | 
						|
      serializeJson(obj, result);
 | 
						|
      REQUIRE("{\"b\":1,\"c\":2}" == result);
 | 
						|
    }
 | 
						|
 | 
						|
    SECTION("Remove middle") {
 | 
						|
      ++it;
 | 
						|
      obj.remove(it);
 | 
						|
      serializeJson(obj, result);
 | 
						|
      REQUIRE("{\"a\":0,\"c\":2}" == result);
 | 
						|
    }
 | 
						|
 | 
						|
    SECTION("Remove last") {
 | 
						|
      ++it;
 | 
						|
      ++it;
 | 
						|
      obj.remove(it);
 | 
						|
      serializeJson(obj, result);
 | 
						|
      REQUIRE("{\"a\":0,\"b\":1}" == result);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
#ifdef HAS_VARIABLE_LENGTH_ARRAY
 | 
						|
  SECTION("key is a vla") {
 | 
						|
    size_t i = 16;
 | 
						|
    char vla[i];
 | 
						|
    strcpy(vla, "b");
 | 
						|
    obj.remove(vla);
 | 
						|
 | 
						|
    serializeJson(obj, result);
 | 
						|
    REQUIRE("{\"a\":0,\"c\":2}" == result);
 | 
						|
  }
 | 
						|
#endif
 | 
						|
 | 
						|
  SECTION("remove by key on unbound reference") {
 | 
						|
    JsonObject unboundObject;
 | 
						|
    unboundObject.remove("key");
 | 
						|
  }
 | 
						|
 | 
						|
  SECTION("remove by iterator on unbound reference") {
 | 
						|
    JsonObject unboundObject;
 | 
						|
    unboundObject.remove(unboundObject.begin());
 | 
						|
  }
 | 
						|
}
 |