2016-01-07 22:35:12 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2016
|
2015-09-28 22:14:50 +02:00
|
|
|
// MIT License
|
|
|
|
//
|
|
|
|
// Arduino JSON library
|
|
|
|
// https://github.com/bblanchon/ArduinoJson
|
2016-01-07 22:35:12 +01:00
|
|
|
// If you like this project, please add a star!
|
2015-09-28 22:14:50 +02:00
|
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <ArduinoJson.h>
|
|
|
|
|
|
|
|
class JsonObject_Subscript_Tests : public ::testing::Test {
|
|
|
|
public:
|
|
|
|
JsonObject_Subscript_Tests() : _object(_jsonBuffer.createObject()) {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
DynamicJsonBuffer _jsonBuffer;
|
|
|
|
JsonObject& _object;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define TEST_(name) TEST_F(JsonObject_Subscript_Tests, name)
|
|
|
|
|
|
|
|
TEST_(SizeIncreased_WhenValuesAreAdded) {
|
|
|
|
_object["hello"] = 1;
|
|
|
|
EXPECT_EQ(1, _object.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_(SizeUntouched_WhenSameValueIsAdded) {
|
|
|
|
_object["hello"] = 1;
|
|
|
|
_object["hello"] = 2;
|
|
|
|
EXPECT_EQ(1, _object.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_(StoreInteger) {
|
|
|
|
_object["hello"] = 123;
|
|
|
|
|
|
|
|
EXPECT_EQ(123, _object["hello"].as<int>());
|
|
|
|
EXPECT_TRUE(_object["hello"].is<int>());
|
|
|
|
EXPECT_FALSE(_object["hello"].is<double>());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_(StoreDouble) {
|
|
|
|
_object["hello"] = 123.45;
|
|
|
|
|
|
|
|
EXPECT_TRUE(_object["hello"].is<double>());
|
|
|
|
EXPECT_FALSE(_object["hello"].is<long>());
|
|
|
|
EXPECT_EQ(123.45, _object["hello"].as<double>());
|
|
|
|
}
|
|
|
|
|
2015-10-30 22:29:47 +01:00
|
|
|
TEST_(StoreDoubleWithDigits) {
|
|
|
|
_object["hello"].set(123.45, 2);
|
|
|
|
|
|
|
|
EXPECT_TRUE(_object["hello"].is<double>());
|
|
|
|
EXPECT_FALSE(_object["hello"].is<long>());
|
|
|
|
EXPECT_EQ(123.45, _object["hello"].as<double>());
|
|
|
|
}
|
|
|
|
|
2015-09-28 22:14:50 +02:00
|
|
|
TEST_(StoreBoolean) {
|
|
|
|
_object["hello"] = true;
|
|
|
|
|
|
|
|
EXPECT_TRUE(_object["hello"].is<bool>());
|
|
|
|
EXPECT_FALSE(_object["hello"].is<long>());
|
|
|
|
EXPECT_TRUE(_object["hello"].as<bool>());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_(StoreString) {
|
|
|
|
_object["hello"] = "h3110";
|
|
|
|
|
|
|
|
EXPECT_TRUE(_object["hello"].is<const char*>());
|
|
|
|
EXPECT_FALSE(_object["hello"].is<long>());
|
|
|
|
EXPECT_STREQ("h3110", _object["hello"].as<const char*>());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_(StoreArray) {
|
|
|
|
JsonArray& arr = _jsonBuffer.createArray();
|
|
|
|
|
|
|
|
_object["hello"] = arr;
|
|
|
|
|
|
|
|
EXPECT_EQ(&arr, &_object["hello"].asArray());
|
|
|
|
EXPECT_TRUE(_object["hello"].is<JsonArray&>());
|
|
|
|
EXPECT_FALSE(_object["hello"].is<JsonObject&>());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_(StoreObject) {
|
|
|
|
JsonObject& obj = _jsonBuffer.createObject();
|
|
|
|
|
|
|
|
_object["hello"] = obj;
|
|
|
|
|
|
|
|
EXPECT_EQ(&obj, &_object["hello"].asObject());
|
|
|
|
EXPECT_TRUE(_object["hello"].is<JsonObject&>());
|
|
|
|
EXPECT_FALSE(_object["hello"].is<JsonArray&>());
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_(StoreArraySubscript) {
|
|
|
|
JsonArray& arr = _jsonBuffer.createArray();
|
|
|
|
arr.add(42);
|
|
|
|
|
|
|
|
_object["a"] = arr[0];
|
|
|
|
|
|
|
|
EXPECT_EQ(42, _object["a"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_(StoreObjectSubscript) {
|
|
|
|
JsonObject& obj = _jsonBuffer.createObject();
|
|
|
|
obj.set("x", 42);
|
|
|
|
|
|
|
|
_object["a"] = obj["x"];
|
|
|
|
|
|
|
|
EXPECT_EQ(42, _object["a"]);
|
|
|
|
}
|