Fixed error "ambiguous overload for operator|" (fixes #1411)

This commit is contained in:
Benoit Blanchon
2020-10-22 09:30:31 +02:00
parent 1f7350658e
commit 2664a2d0da
4 changed files with 36 additions and 10 deletions

View File

@ -7,6 +7,7 @@ add_executable(MemberProxyTests
clear.cpp
compare.cpp
containsKey.cpp
or.cpp
remove.cpp
set.cpp
size.cpp

View File

@ -0,0 +1,29 @@
// ArduinoJson - arduinojson.org
// Copyright Benoit Blanchon 2014-2020
// MIT License
#include <ArduinoJson.h>
#include <catch.hpp>
using namespace ARDUINOJSON_NAMESPACE;
TEST_CASE("MemberProxy::operator|()") {
DynamicJsonDocument doc(4096);
SECTION("const char*") {
doc["a"] = "hello";
REQUIRE((doc["a"] | "world") == std::string("hello"));
REQUIRE((doc["b"] | "world") == std::string("world"));
}
SECTION("Issue #1411") {
doc["sensor"] = "gps";
const char *test = "test"; // <- the literal must be captured in a variable
// to trigger the bug
const char *sensor = doc["sensor"] | test; // "gps"
REQUIRE(sensor == std::string("gps"));
}
}