awesome-widgets/sources/test/testjsonformatter.cpp

94 lines
2.8 KiB
C++

/***************************************************************************
* This file is part of awesome-widgets *
* *
* awesome-widgets is free software: you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
* published by the Free Software Foundation, either version 3 of the *
* License, or (at your option) any later version. *
* *
* awesome-widgets is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with awesome-widgets. If not, see http://www.gnu.org/licenses/ *
***************************************************************************/
#include "testjsonformatter.h"
#include <QtTest>
#include "awjsonformatter.h"
#include "awtestlibrary.h"
void TestAWJsonFormatter::initTestCase()
{
AWTestLibrary::init();
formatter = new AWJsonFormatter(this);
generate();
formatter->setPath(path);
}
void TestAWJsonFormatter::cleanupTestCase() {}
void TestAWJsonFormatter::test_values()
{
QCOMPARE(formatter->path(), QString(".%1").arg(path));
}
void TestAWJsonFormatter::test_conversion()
{
QCOMPARE(formatter->convert(json), value);
}
void TestAWJsonFormatter::test_copy()
{
auto newFormatter = formatter->copy("/dev/null", 1);
QCOMPARE(newFormatter->path(), formatter->path());
QCOMPARE(newFormatter->number(), 1);
newFormatter->deleteLater();
}
void TestAWJsonFormatter::generate()
{
value = AWTestLibrary::randomString();
QVariantMap first;
auto firstKey = AWTestLibrary::randomString();
first[firstKey] = value;
auto listCount = AWTestLibrary::randomInt(5) + 1;
auto validCount = AWTestLibrary::randomInt(listCount);
QVariantList second;
for (auto i = 0; i < listCount; ++i) {
if (i == validCount) {
second.append(first);
} else {
auto key = AWTestLibrary::randomString();
auto val = AWTestLibrary::randomString();
QVariantMap dict{{key, val}};
second.append(dict);
}
}
auto thirdKey = AWTestLibrary::randomString();
QVariantMap output;
output[thirdKey] = second;
json = output;
path = QString("%1.%2.%3").arg(thirdKey).arg(validCount).arg(firstKey);
}
QTEST_MAIN(TestAWJsonFormatter);