2017-01-06 21:07:34 +01:00
|
|
|
// Copyright Benoit Blanchon 2014-2017
|
2014-12-08 20:22:01 +01: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!
|
2014-12-08 20:22:01 +01:00
|
|
|
|
|
|
|
#include <ArduinoJson.h>
|
2017-01-06 21:07:34 +01:00
|
|
|
#include <gtest/gtest.h>
|
2014-12-08 20:22:01 +01:00
|
|
|
|
|
|
|
class Issue34 : public testing::Test {
|
|
|
|
protected:
|
|
|
|
template <typename T>
|
|
|
|
void test_with_value(T expected) {
|
2014-12-20 15:42:43 +01:00
|
|
|
StaticJsonBuffer<JSON_OBJECT_SIZE(1)> jsonBuffer;
|
2014-12-08 20:22:01 +01:00
|
|
|
|
|
|
|
JsonObject& jsonObject = jsonBuffer.createObject();
|
|
|
|
|
|
|
|
jsonObject["key"] = expected;
|
|
|
|
T actual = jsonObject["key"];
|
|
|
|
|
|
|
|
ASSERT_EQ(expected, actual);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-01-06 21:07:34 +01:00
|
|
|
TEST_F(Issue34, int8_t) {
|
|
|
|
test_with_value<int8_t>(1);
|
|
|
|
}
|
2014-12-08 20:22:01 +01:00
|
|
|
|
2017-01-06 21:07:34 +01:00
|
|
|
TEST_F(Issue34, uint8_t) {
|
|
|
|
test_with_value<uint8_t>(2);
|
|
|
|
}
|
2014-12-08 20:22:01 +01:00
|
|
|
|
2017-01-06 21:07:34 +01:00
|
|
|
TEST_F(Issue34, int16_t) {
|
|
|
|
test_with_value<int16_t>(3);
|
|
|
|
}
|
2014-12-08 20:22:01 +01:00
|
|
|
|
2017-01-06 21:07:34 +01:00
|
|
|
TEST_F(Issue34, uint16_t) {
|
|
|
|
test_with_value<uint16_t>(4);
|
|
|
|
}
|
2014-12-08 20:22:01 +01:00
|
|
|
|
2017-01-06 21:07:34 +01:00
|
|
|
TEST_F(Issue34, int32_t) {
|
|
|
|
test_with_value<int32_t>(5);
|
|
|
|
}
|
2014-12-08 20:22:01 +01:00
|
|
|
|
2017-01-06 21:07:34 +01:00
|
|
|
TEST_F(Issue34, uint32_t) {
|
|
|
|
test_with_value<uint32_t>(6);
|
|
|
|
}
|
2014-12-08 20:22:01 +01:00
|
|
|
|
2017-01-06 21:07:34 +01:00
|
|
|
TEST_F(Issue34, float) {
|
|
|
|
test_with_value<float>(7);
|
|
|
|
}
|
2014-12-08 20:22:01 +01:00
|
|
|
|
2017-01-06 21:07:34 +01:00
|
|
|
TEST_F(Issue34, double) {
|
|
|
|
test_with_value<double>(8);
|
|
|
|
}
|