2014-08-25 09:17:32 +02:00
|
|
|
/*
|
|
|
|
* Arduino JSON library
|
|
|
|
* Benoit Blanchon 2014 - MIT License
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "CppUnitTest.h"
|
2014-08-26 10:08:54 +02:00
|
|
|
#include "JsonPrettyPrint.h"
|
2014-08-25 09:17:32 +02:00
|
|
|
#include "StringBuilder.h"
|
|
|
|
|
|
|
|
using namespace ArduinoJson::Internals;
|
2014-08-25 13:19:07 +02:00
|
|
|
using namespace ArduinoJson::Generator;
|
2014-08-25 09:17:32 +02:00
|
|
|
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
|
|
|
|
|
|
|
|
namespace JsonGeneratorTests
|
|
|
|
{
|
2014-08-25 11:42:07 +02:00
|
|
|
TEST_CLASS(PrettyPrint_Object_Tests)
|
2014-08-25 09:19:26 +02:00
|
|
|
{
|
|
|
|
char buffer[1024];
|
|
|
|
size_t returnValue;
|
|
|
|
|
|
|
|
public:
|
2014-08-25 09:17:32 +02:00
|
|
|
|
2014-08-25 09:23:41 +02:00
|
|
|
TEST_METHOD(EmptyObject)
|
|
|
|
{
|
|
|
|
whenInputIs("{}");
|
|
|
|
outputMustBe("{}");
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:42:00 +02:00
|
|
|
TEST_METHOD(OneMember)
|
2014-08-25 09:52:42 +02:00
|
|
|
{
|
|
|
|
whenInputIs("{\"key\":\"value\"}");
|
|
|
|
outputMustBe(
|
2014-08-26 11:52:12 +02:00
|
|
|
"{\r\n"
|
|
|
|
" \"key\": \"value\"\r\n"
|
2014-08-25 09:52:42 +02:00
|
|
|
"}");
|
|
|
|
}
|
2014-08-25 09:24:31 +02:00
|
|
|
|
2014-08-25 10:42:00 +02:00
|
|
|
TEST_METHOD(TwoMembers)
|
2014-08-25 10:22:42 +02:00
|
|
|
{
|
|
|
|
whenInputIs("{\"key1\":\"value1\",\"key2\":\"value2\"}");
|
|
|
|
outputMustBe(
|
2014-08-26 11:52:12 +02:00
|
|
|
"{\r\n"
|
|
|
|
" \"key1\": \"value1\",\r\n"
|
|
|
|
" \"key2\": \"value2\"\r\n"
|
2014-08-25 10:22:42 +02:00
|
|
|
"}");
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:42:00 +02:00
|
|
|
TEST_METHOD(EmptyNestedObjects)
|
2014-08-25 10:36:25 +02:00
|
|
|
{
|
|
|
|
whenInputIs("{\"key1\":{},\"key2\":{}}");
|
|
|
|
outputMustBe(
|
2014-08-26 11:52:12 +02:00
|
|
|
"{\r\n"
|
|
|
|
" \"key1\": {},\r\n"
|
|
|
|
" \"key2\": {}\r\n"
|
2014-08-25 10:36:25 +02:00
|
|
|
"}");
|
|
|
|
}
|
|
|
|
|
2014-08-25 10:46:43 +02:00
|
|
|
TEST_METHOD(NestedObjects)
|
|
|
|
{
|
|
|
|
whenInputIs("{\"key1\":{\"a\":1},\"key2\":{\"b\":2}}");
|
|
|
|
outputMustBe(
|
2014-08-26 11:52:12 +02:00
|
|
|
"{\r\n"
|
|
|
|
" \"key1\": {\r\n"
|
|
|
|
" \"a\": 1\r\n"
|
|
|
|
" },\r\n"
|
|
|
|
" \"key2\": {\r\n"
|
|
|
|
" \"b\": 2\r\n"
|
|
|
|
" }\r\n"
|
2014-08-25 10:46:43 +02:00
|
|
|
"}");
|
|
|
|
}
|
2014-08-25 10:36:25 +02:00
|
|
|
|
2014-08-25 09:17:32 +02:00
|
|
|
private:
|
|
|
|
|
|
|
|
void whenInputIs(const char input[])
|
|
|
|
{
|
|
|
|
StringBuilder sb(buffer, sizeof(buffer));
|
2014-08-26 09:56:05 +02:00
|
|
|
IndentedPrint indentedPrint(sb);
|
2014-08-26 10:08:54 +02:00
|
|
|
JsonPrettyPrint decorator(indentedPrint);
|
2014-08-25 09:17:32 +02:00
|
|
|
|
2014-08-25 09:19:26 +02:00
|
|
|
returnValue = decorator.print(input);
|
2014-08-25 09:17:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void outputMustBe(const char* expected)
|
|
|
|
{
|
|
|
|
Assert::AreEqual(expected, buffer);
|
2014-08-25 09:19:26 +02:00
|
|
|
Assert::AreEqual(strlen(expected), returnValue);
|
2014-08-25 09:17:32 +02:00
|
|
|
}
|
2014-08-25 09:19:26 +02:00
|
|
|
};
|
2014-08-25 09:17:32 +02:00
|
|
|
}
|