2015-09-17 20:44:15 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file tst_measurementregexp.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 16 9, 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 TST_MEASUREMENTREGEXP_H
|
|
|
|
#define TST_MEASUREMENTREGEXP_H
|
|
|
|
|
2016-10-25 20:06:58 +02:00
|
|
|
#include "tst_abstractregexp.h"
|
2015-09-17 20:44:15 +02:00
|
|
|
|
2015-10-18 21:30:51 +02:00
|
|
|
#include <QPointer>
|
|
|
|
|
2015-09-17 20:44:15 +02:00
|
|
|
class QTranslator;
|
2015-12-17 11:52:10 +01:00
|
|
|
class VTranslateVars;
|
2015-09-17 20:44:15 +02:00
|
|
|
|
2016-10-25 20:06:58 +02:00
|
|
|
class TST_MeasurementRegExp : public TST_AbstractRegExp
|
2015-09-17 20:44:15 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-08-03 13:49:46 +02:00
|
|
|
TST_MeasurementRegExp(quint32 systemCode, const QString &locale, QObject *parent = nullptr);
|
2016-10-25 20:06:58 +02:00
|
|
|
virtual ~TST_MeasurementRegExp();
|
2015-09-17 20:44:15 +02:00
|
|
|
|
2016-08-03 13:49:46 +02:00
|
|
|
static const quint32 systemCounts;
|
|
|
|
|
2016-10-25 20:06:58 +02:00
|
|
|
protected:
|
|
|
|
virtual void PrepareData() Q_DECL_OVERRIDE;
|
|
|
|
virtual QStringList AllNames() Q_DECL_OVERRIDE;
|
|
|
|
|
2015-09-17 20:44:15 +02:00
|
|
|
private slots:
|
2016-08-03 13:49:46 +02:00
|
|
|
void initTestCase();
|
|
|
|
void TestCheckNoEndLine_data();
|
|
|
|
void TestCheckNoEndLine();
|
|
|
|
void TestCheckRegExpNames_data();
|
|
|
|
void TestCheckRegExpNames();
|
|
|
|
void TestCheckIsNamesUnique_data();
|
|
|
|
void TestCheckIsNamesUnique();
|
|
|
|
void TestCheckNoOriginalNamesInTranslation_data();
|
|
|
|
void TestCheckNoOriginalNamesInTranslation();
|
|
|
|
void cleanupTestCase();
|
2015-09-17 20:44:15 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(TST_MeasurementRegExp)
|
|
|
|
|
2016-10-25 20:06:58 +02:00
|
|
|
quint32 m_systemCode;
|
|
|
|
QString m_system;
|
|
|
|
QPointer<QTranslator> m_pmsTranslator;
|
2015-09-17 20:44:15 +02:00
|
|
|
|
2016-08-03 13:49:46 +02:00
|
|
|
void TestCombinations(int systemCounts, const QStringList &locales) const;
|
2015-12-17 11:52:10 +01:00
|
|
|
|
|
|
|
int LoadMeasurements(const QString &checkedSystem, const QString &checkedLocale);
|
|
|
|
void RemoveTrMeasurements(const QString &checkedSystem, const QString &checkedLocale);
|
2015-09-17 20:44:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TST_MEASUREMENTREGEXP_H
|