2014-08-25 09:17:32 +02:00
|
|
|
/*
|
|
|
|
* Arduino JSON library
|
|
|
|
* Benoit Blanchon 2014 - MIT License
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "CppUnitTest.h"
|
|
|
|
#include "IndentedPrintDecorator.h"
|
|
|
|
#include "StringBuilder.h"
|
|
|
|
|
|
|
|
using namespace ArduinoJson::Internals;
|
|
|
|
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
|
|
|
|
|
|
|
|
namespace JsonGeneratorTests
|
|
|
|
{
|
2014-08-25 09:19:26 +02:00
|
|
|
TEST_CLASS(IntentedPrintTests)
|
|
|
|
{
|
|
|
|
char buffer[1024];
|
|
|
|
size_t returnValue;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
TEST_METHOD(EmptyString)
|
|
|
|
{
|
2014-08-25 09:17:32 +02:00
|
|
|
whenInputIs("");
|
|
|
|
outputMustBe("");
|
2014-08-25 09:19:26 +02:00
|
|
|
}
|
2014-08-25 09:17:32 +02:00
|
|
|
|
2014-08-25 09:23:41 +02:00
|
|
|
TEST_METHOD(EmptyObject)
|
|
|
|
{
|
|
|
|
whenInputIs("{}");
|
|
|
|
outputMustBe("{}");
|
|
|
|
}
|
|
|
|
|
2014-08-25 09:17:32 +02:00
|
|
|
private:
|
|
|
|
|
|
|
|
void whenInputIs(const char input[])
|
|
|
|
{
|
|
|
|
StringBuilder sb(buffer, sizeof(buffer));
|
|
|
|
IndentedPrintDecorator decorator(sb);
|
|
|
|
|
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
|
|
|
}
|