/************************************************************************ ** ** @file abstracttest.h ** @author Roman Telezhynskyi ** @date 7 5, 2015 ** ** @brief ** @copyright ** This source code is part of the Valentina project, a pattern making ** program, whose allow create and modeling patterns of clothing. ** Copyright (C) 2015 Valentina project ** All Rights Reserved. ** ** Valentina 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. ** ** Valentina 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 Valentina. If not, see . ** *************************************************************************/ #ifndef ABSTRACTTEST_H #define ABSTRACTTEST_H #include #include #include #include #include #include #include #include "../vgeometry/vpointf.h" #include "../vlayout/vsapoint.h" #include "../vlayout/vrawsapoint.h" #include "../ifc/exception/vexception.h" template class QVector; #include #ifdef __GNUC__ #define V_UNUSED __attribute__ ((unused)) #else #define V_UNUSED #endif // Return codes for testing run application static const auto V_UNUSED TST_EX_BIN = -1; // Can't find binary. static const auto V_UNUSED TST_EX_FINISH_TIME_OUT = -2; // The operation timed out or an error occurred. static const auto V_UNUSED TST_EX_START_TIME_OUT = -3; // The operation timed out or an error occurred. static const auto V_UNUSED TST_EX_CRASH = -4; // Program crashed. #undef V_UNUSED enum ErrorState {ErrorLoad = 0, ErrorInstall, ErrorSize, NoError}; class VPiece; class VContainer; class VPointF; class VSplinePoint; class VPieceNode; enum class GOType : qint8; struct VPiecePassmarkData; class VRawSAPoint; class AbstractTest : public QObject { Q_OBJECT // NOLINT public: explicit AbstractTest(QObject *parent = nullptr); template static auto VectorFromJson(const QString &json) -> QVector; void PieceFromJson(const QString &json, VPiece &piece, QSharedPointer &data); void PassmarkDataFromJson(const QString &json, VPiecePassmarkData& data); void PassmarkShapeFromJson(const QString &json, QVector &shape); protected: void ComparePathsDistance(const QVector &ekv, const QVector &ekvOrig) const; void ComparePointsDistance(const QPointF &result, const QPointF &expected, qreal testAccuracy) const; void CompareLinesDistance(const QVector &result, const QVector &expected) const; auto ValentinaPath() const -> QString; auto TapePath() const -> QString; auto TranslationsPath() const -> QString; static auto RunTimeout(int defMsecs) -> int; auto Run(int exit, const QString &program, const QStringList &arguments, QString &error, int msecs = 120000) -> int; auto CopyRecursively(const QString &srcFilePath, const QString &tgtFilePath) const -> bool; static void PrepareDocument(const QString &json, QByteArray &data); static void TestRoot(const QJsonObject &root, const QString &attribute, const QString &file); template ::value>::type* = nullptr> static void ReadDoubleValue(const QJsonObject &itemObject, const QString &attribute, T &value, const QString &defaultValue = QString()); template ::value>::type* = nullptr> static void ReadDoubleValue(const QJsonObject &itemObject, const QString &attribute, T &value, const QString &defaultValue = QString()); template ::value>::type* = nullptr> static void ReadDoubleValue(const QJsonObject &itemObject, const QString &attribute, T &value, const QString &defaultValue = QString()); static void ReadStringValue(const QJsonObject &itemObject, const QString &attribute, QString &value, const QString &defaultValue = QString()); static void ReadBooleanValue(const QJsonObject &itemObject, const QString &attribute, bool &value, const QString &defaultValue = QString()); void ReadPointValue(const QJsonObject &itemObject, const QString &attribute, VPointF &value); void ReadSplinePointValues(const QJsonObject &itemObject, const QString &attribute, QVector &points); void ReadSplinePointValue(const QJsonObject &itemObject, VSplinePoint &point); void ReadPieceNodeValue(const QJsonObject &itemObject, VPieceNode &node); template static void CheckClassType(const QJsonObject &itemObject); template static auto ReadPointData(const QJsonObject &pointObject) -> T; template static auto PointFromJson(const QJsonObject &pointObject) -> T; auto QLineFromJson(const QJsonObject &itemObject) -> QLineF; void SplineFromJson(const QJsonObject &itemObject, QSharedPointer &data); void SplinePathFromJson(const QJsonObject &itemObject, QSharedPointer &data); void DBFromJson(const QJsonObject &dbObject, QSharedPointer &data); void MainPathFromJson(const QJsonObject &pieceObject, VPiece &piece); }; //--------------------------------------------------------------------------------------------------------------------- template inline auto AbstractTest::VectorFromJson(const QString &json) -> QVector { QByteArray saveData; PrepareDocument(json, saveData); QJsonDocument loadDoc(QJsonDocument::fromJson(saveData)); const QString vectorKey = QStringLiteral("vector"); QJsonObject vectorObject = loadDoc.object(); TestRoot(vectorObject, vectorKey, json); QJsonArray vectorArray = vectorObject[vectorKey].toArray(); QVector vector(vectorArray.size()); for (auto && item : vectorArray) { try { vector.append(PointFromJson(item.toObject())); } catch (const VException &e) { throw VException(QStringLiteral("Invalid json file '%1'. %2").arg(json, e.ErrorMessage())); } } return vector; } //--------------------------------------------------------------------------------------------------------------------- template inline void AbstractTest::CheckClassType(const QJsonObject &itemObject) { const QString typeKey = QStringLiteral("type"); QString type; AbstractTest::ReadStringValue(itemObject, typeKey, type); if (type != typeid(T).name()) { throw VException(QStringLiteral("Unexpected class '%2'.").arg(itemObject[typeKey].toString())); } } //--------------------------------------------------------------------------------------------------------------------- template inline auto AbstractTest::ReadPointData(const QJsonObject &pointObject) -> T { T point; qreal x = 0; AbstractTest::ReadDoubleValue(pointObject, QChar('x'), x); point.setX(x); qreal y = 0; AbstractTest::ReadDoubleValue(pointObject, QChar('y'), y); point.setY(y); return point; } //--------------------------------------------------------------------------------------------------------------------- template inline auto AbstractTest::PointFromJson(const QJsonObject &pointObject) -> T { CheckClassType(pointObject); return ReadPointData(pointObject); } //--------------------------------------------------------------------------------------------------------------------- template<> inline auto AbstractTest::PointFromJson(const QJsonObject &pointObject) -> VPointF { CheckClassType(pointObject); vidtype id = NULL_ID; AbstractTest::ReadDoubleValue(pointObject, QStringLiteral("id"), id); qreal mx = 0; AbstractTest::ReadDoubleValue(pointObject, QStringLiteral("mx"), mx); qreal my = 0; AbstractTest::ReadDoubleValue(pointObject, QStringLiteral("my"), my); QString name; AbstractTest::ReadStringValue(pointObject, QStringLiteral("name"), name); qreal x = 0; AbstractTest::ReadDoubleValue(pointObject, QChar('x'), x); qreal y = 0; AbstractTest::ReadDoubleValue(pointObject, QChar('y'), y); VPointF point(x, y, name, mx, my); point.setId(id); return point; } //--------------------------------------------------------------------------------------------------------------------- template<> inline auto AbstractTest::ReadPointData(const QJsonObject &pointObject) -> VLayoutPoint { VLayoutPoint point(ReadPointData(pointObject)); bool turnPoint; AbstractTest::ReadBooleanValue(pointObject, QStringLiteral("turnPoint"), turnPoint, QStringLiteral("0")); point.SetTurnPoint(turnPoint); bool curvePoint; AbstractTest::ReadBooleanValue(pointObject, QStringLiteral("curvePoint"), curvePoint, QStringLiteral("0")); point.SetCurvePoint(curvePoint); return point; } //--------------------------------------------------------------------------------------------------------------------- template<> inline auto AbstractTest::PointFromJson(const QJsonObject &pointObject) -> VLayoutPoint { CheckClassType(pointObject); return ReadPointData(pointObject); } //--------------------------------------------------------------------------------------------------------------------- template<> inline auto AbstractTest::PointFromJson(const QJsonObject &pointObject) -> VSAPoint { CheckClassType(pointObject); VSAPoint point(ReadPointData(pointObject)); qreal saBefore; AbstractTest::ReadDoubleValue(pointObject, QStringLiteral("saBefore"), saBefore, QStringLiteral("-1")); point.SetSABefore(saBefore); qreal saAfter; AbstractTest::ReadDoubleValue(pointObject, QStringLiteral("saAfter"), saAfter, QStringLiteral("-1")); point.SetSAAfter(saAfter); PieceNodeAngle angleType = PieceNodeAngle::ByLength; AbstractTest::ReadDoubleValue(pointObject, QStringLiteral("angle"), angleType, QString::number(static_cast(PieceNodeAngle::ByLength))); point.SetAngleType(angleType); return point; } //--------------------------------------------------------------------------------------------------------------------- template<> inline auto AbstractTest::PointFromJson(const QJsonObject &pointObject) -> VRawSAPoint { CheckClassType(pointObject); VRawSAPoint point(ReadPointData(pointObject)); bool loopPoint; AbstractTest::ReadBooleanValue(pointObject, QStringLiteral("loopPoint"), loopPoint, QStringLiteral("0")); point.SetLoopPoint(loopPoint); return point; } #endif // ABSTRACTTEST_H