TestAmdaFuzzing.cpp
91 lines
| 2.0 KiB
| text/x-c
|
CppLexer
Alexandre Leroux
|
r1168 | #include <Network/NetworkController.h> | ||
#include <SqpApplication.h> | ||||
#include <Time/TimeController.h> | ||||
#include <Variable/VariableController.h> | ||||
#include <QLoggingCategory> | ||||
#include <QObject> | ||||
#include <QtTest> | ||||
#include <memory> | ||||
Q_LOGGING_CATEGORY(LOG_TestAmdaFuzzing, "TestAmdaFuzzing") | ||||
namespace { | ||||
/** | ||||
* Class to run random tests | ||||
*/ | ||||
class FuzzingTest { | ||||
public: | ||||
Alexandre Leroux
|
r1169 | explicit FuzzingTest(VariableController &variableController, Properties properties) | ||
: m_VariableController{variableController}, | ||||
m_Properties{std::move(properties)}, | ||||
{ | ||||
} | ||||
Alexandre Leroux
|
r1168 | void execute() | ||
{ | ||||
/// @todo: complete | ||||
qCInfo(LOG_TestAmdaFuzzing()) << "Execution of the test completed."; | ||||
} | ||||
Alexandre Leroux
|
r1169 | |||
private: | ||||
VariableController &m_VariableController; | ||||
Properties m_Properties; | ||||
Alexandre Leroux
|
r1168 | }; | ||
} // namespace | ||||
class TestAmdaFuzzing : public QObject { | ||||
Q_OBJECT | ||||
private slots: | ||||
/// Input data for @sa testFuzzing() | ||||
void testFuzzing_data(); | ||||
void testFuzzing(); | ||||
}; | ||||
void TestAmdaFuzzing::testFuzzing_data() | ||||
{ | ||||
// ////////////// // | ||||
// Test structure // | ||||
// ////////////// // | ||||
Alexandre Leroux
|
r1169 | QTest::addColumn<Properties>("properties"); // Properties for random test | ||
Alexandre Leroux
|
r1168 | |||
// ////////// // | ||||
// Test cases // | ||||
// ////////// // | ||||
///@todo: complete | ||||
} | ||||
void TestAmdaFuzzing::testFuzzing() | ||||
{ | ||||
Alexandre Leroux
|
r1169 | QFETCH(Properties, properties); | ||
Alexandre Leroux
|
r1168 | auto &variableController = sqpApp->variableController(); | ||
auto &timeController = sqpApp->timeController(); | ||||
Alexandre Leroux
|
r1169 | FuzzingTest test{variableController, properties}; | ||
Alexandre Leroux
|
r1168 | test.execute(); | ||
} | ||||
int main(int argc, char *argv[]) | ||||
{ | ||||
QLoggingCategory::setFilterRules( | ||||
"*.warning=false\n" | ||||
"*.info=false\n" | ||||
"*.debug=false\n" | ||||
"FuzzingOperations.info=true\n" | ||||
"TestAmdaFuzzing.info=true\n"); | ||||
SqpApplication app{argc, argv}; | ||||
app.setAttribute(Qt::AA_Use96Dpi, true); | ||||
TestAmdaFuzzing testObject{}; | ||||
QTEST_SET_MAIN_SOURCE_PATH | ||||
return QTest::qExec(&testObject, argc, argv); | ||||
} | ||||
#include "TestAmdaFuzzing.moc" | ||||