2014-08-25 10:42:00 +02:00
|
|
|
/*
|
|
|
|
* Arduino JSON library
|
|
|
|
* Benoit Blanchon 2014 - MIT License
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "CppUnitTest.h"
|
2014-08-25 11:42:07 +02:00
|
|
|
#include "PrettyPrintDecorator.h"
|
2014-08-25 10:42:00 +02:00
|
|
|
#include "StringBuilder.h"
|
|
|
|
|
|
|
|
using namespace ArduinoJson::Internals;
|
2014-08-25 13:19:07 +02:00
|
|
|
using namespace ArduinoJson::Generator;
|
2014-08-25 10:42:00 +02:00
|
|
|
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
|
|
|
|
|
|
|
|
namespace JsonGeneratorTests
|
|
|
|
{
|
2014-08-25 11:42:07 +02:00
|
|
|
TEST_CLASS(PrettyPrint_String_Tests)
|
2014-08-25 10:42:00 +02:00
|
|
|
{
|
|
|
|
char buffer[1024];
|
|
|
|
size_t returnValue;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
TEST_METHOD(EmptyString)
|
|
|
|
{
|
|
|
|
whenInputIs("");
|
|
|
|
outputMustBe("");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_METHOD(TrickyCharacters)
|
|
|
|
{
|
|
|
|
whenInputIs ("\":\\\"',\"");
|
|
|
|
outputMustBe("\":\\\"',\"");
|
|
|
|
}
|
2014-08-25 12:23:08 +02:00
|
|
|
|
|
|
|
TEST_METHOD(OpeningCurlyBrace)
|
|
|
|
{
|
|
|
|
whenInputIs ("\"{\"");
|
|
|
|
outputMustBe("\"{\"");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_METHOD(OpeningSquareBrace)
|
|
|
|
{
|
|
|
|
whenInputIs("\"[\"");
|
|
|
|
outputMustBe("\"[\"");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_METHOD(ClosingCurlyBrace)
|
|
|
|
{
|
|
|
|
whenInputIs("\"}\"");
|
|
|
|
outputMustBe("\"}\"");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_METHOD(ClosingSquareBrace)
|
|
|
|
{
|
|
|
|
whenInputIs("\"]\"");
|
|
|
|
outputMustBe("\"]\"");
|
|
|
|
}
|
2014-08-25 10:42:00 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void whenInputIs(const char input[])
|
|
|
|
{
|
|
|
|
StringBuilder sb(buffer, sizeof(buffer));
|
2014-08-25 11:42:07 +02:00
|
|
|
PrettyPrintDecorator decorator(sb);
|
2014-08-25 10:42:00 +02:00
|
|
|
|
|
|
|
returnValue = decorator.print(input);
|
|
|
|
}
|
|
|
|
|
|
|
|
void outputMustBe(const char* expected)
|
|
|
|
{
|
|
|
|
Assert::AreEqual(expected, buffer);
|
|
|
|
Assert::AreEqual(strlen(expected), returnValue);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|