2015-05-07 15:12:53 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file abstracttest.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 7 5, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2015 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> 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 <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef ABSTRACTTEST_H
|
|
|
|
#define ABSTRACTTEST_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QMetaObject>
|
2015-05-07 15:12:53 +02:00
|
|
|
#include <QObject>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
class QPointF;
|
|
|
|
class QStringList;
|
|
|
|
template <class T> class QVector;
|
2015-05-07 15:12:53 +02:00
|
|
|
|
2015-10-23 19:47:33 +02:00
|
|
|
#ifdef Q_CC_MSVC
|
|
|
|
#include <ciso646>
|
|
|
|
#endif /* Q_CC_MSVC */
|
|
|
|
|
2016-08-21 17:57:08 +02:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#define V_UNUSED __attribute__ ((unused))
|
|
|
|
#else
|
|
|
|
#define V_UNUSED
|
|
|
|
#endif
|
|
|
|
|
2015-10-03 13:09:06 +02:00
|
|
|
// Return codes for testing run application
|
2016-08-21 17:57:08 +02:00
|
|
|
static const auto V_UNUSED TST_EX_BIN = -1; // Can't find binary.
|
|
|
|
static const auto V_UNUSED TST_EX_TIME_OUT = -2; // The operation timed out or an error occurred.
|
|
|
|
static const auto V_UNUSED TST_EX_CRASH = -3; // Program crashed.
|
|
|
|
|
|
|
|
#undef V_UNUSED
|
2015-10-03 13:09:06 +02:00
|
|
|
|
2015-10-16 13:55:23 +02:00
|
|
|
enum ErrorState {ErrorLoad = 0, ErrorInstall, ErrorSize, NoError};
|
|
|
|
|
2015-05-07 15:12:53 +02:00
|
|
|
class AbstractTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-02-24 16:31:44 +01:00
|
|
|
explicit AbstractTest(QObject *parent = nullptr);
|
2015-05-07 15:12:53 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void Comparison(const QVector<QPointF> &ekv, const QVector<QPointF> &ekvOrig) const;
|
|
|
|
|
2015-09-28 12:42:26 +02:00
|
|
|
QString ValentinaPath() const;
|
|
|
|
QString TapePath() const;
|
2015-10-16 13:55:23 +02:00
|
|
|
QString TranslationsPath() const;
|
2015-09-28 12:42:26 +02:00
|
|
|
|
2016-11-04 14:15:11 +01:00
|
|
|
int Run(int exit, const QString &program, const QStringList &arguments, int msecs = 30000);
|
2015-09-28 12:42:26 +02:00
|
|
|
bool CopyRecursively(const QString &srcFilePath, const QString &tgtFilePath) const;
|
2015-05-07 15:12:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ABSTRACTTEST_H
|