You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
908 B
52 lines
908 B
// ArduinoJson - https://arduinojson.org |
|
// Copyright © 2014-2024, Benoit BLANCHON |
|
// MIT License |
|
|
|
#include <ArduinoJson.h> |
|
#include <catch.hpp> |
|
|
|
TEST_CASE("JsonDocument::remove()") { |
|
JsonDocument doc; |
|
|
|
SECTION("remove(int)") { |
|
doc.add(1); |
|
doc.add(2); |
|
doc.add(3); |
|
|
|
doc.remove(1); |
|
|
|
REQUIRE(doc.as<std::string>() == "[1,3]"); |
|
} |
|
|
|
SECTION("remove(const char *)") { |
|
doc["a"] = 1; |
|
doc["b"] = 2; |
|
|
|
doc.remove("a"); |
|
|
|
REQUIRE(doc.as<std::string>() == "{\"b\":2}"); |
|
} |
|
|
|
SECTION("remove(std::string)") { |
|
doc["a"] = 1; |
|
doc["b"] = 2; |
|
|
|
doc.remove(std::string("b")); |
|
|
|
REQUIRE(doc.as<std::string>() == "{\"a\":1}"); |
|
} |
|
|
|
#ifdef HAS_VARIABLE_LENGTH_ARRAY |
|
SECTION("remove(vla)") { |
|
doc["a"] = 1; |
|
doc["b"] = 2; |
|
|
|
size_t i = 4; |
|
char vla[i]; |
|
strcpy(vla, "b"); |
|
doc.remove(vla); |
|
|
|
REQUIRE(doc.as<std::string>() == "{\"a\":1}"); |
|
} |
|
#endif |
|
}
|
|
|