diff --git a/src/tests/gettextheadertest.cpp b/src/tests/gettextheadertest.cpp index e6311b3..857fd2a 100644 --- a/src/tests/gettextheadertest.cpp +++ b/src/tests/gettextheadertest.cpp @@ -1,56 +1,56 @@ /* * This file is part of Lokalize * * Copyright (c) 2019 Alexander Potashev * * This program 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 2 of * the License or (at your option) version 3 or any later version * accepted by the membership of KDE e.V. (or its successor approved * by the membership of KDE e.V.), which shall act as a proxy * defined in Section 14 of version 3 of the license. * * This program 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 this program. If not, see . */ #include #include #include "gettextheader.h" class GettextHeaderTest : public QObject { Q_OBJECT private Q_SLOTS: void testFormatDate(); }; void GettextHeaderTest::testFormatDate() { QCOMPARE(formatGettextDate( QDateTime(QDate(2006, 8, 3), QTime(7, 31, 32), Qt::UTC)), "2006-08-03 07:31+0000"); QCOMPARE(formatGettextDate( QDateTime(QDate(2006, 8, 3), QTime(7, 31, 32), QTimeZone("Europe/Moscow"))), "2006-08-03 07:31+0400"); QCOMPARE(formatGettextDate( QDateTime(QDate(2018, 8, 3), QTime(7, 31, 32), QTimeZone("Europe/Moscow"))), "2018-08-03 07:31+0300"); QCOMPARE(formatGettextDate( QDateTime(QDate(2018, 8, 3), QTime(7, 31, 32), QTimeZone("America/New_York"))), "2018-08-03 07:31-0400"); QCOMPARE(formatGettextDate( QDateTime(QDate(2018, 8, 3), QTime(7, 31, 32), QTimeZone(-14 * 3600))), "2018-08-03 07:31-1400"); QCOMPARE(formatGettextDate( QDateTime(QDate(2018, 8, 3), QTime(7, 31, 32), QTimeZone(14 * 3600))), "2018-08-03 07:31+1400"); QCOMPARE(formatGettextDate( QDateTime(QDate(2018, 8, 3), QTime(7, 31, 32), QTimeZone("Asia/Calcutta"))), "2018-08-03 07:31+0530"); } -QTEST_MAIN(GettextHeaderTest) +QTEST_GUILESS_MAIN(GettextHeaderTest) #include "gettextheadertest.moc" diff --git a/src/tests/projectmodeltest.cpp b/src/tests/projectmodeltest.cpp index 2ea61ea..b601dd7 100644 --- a/src/tests/projectmodeltest.cpp +++ b/src/tests/projectmodeltest.cpp @@ -1,109 +1,109 @@ /* * This file is part of Lokalize * * Copyright (c) 2019 Alexander Potashev * * This program 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 2 of * the License or (at your option) version 3 or any later version * accepted by the membership of KDE e.V. (or its successor approved * by the membership of KDE e.V.), which shall act as a proxy * defined in Section 14 of version 3 of the license. * * This program 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 this program. If not, see . */ #include #include #include #include #include "project/projectmodel.h" class ProjectModelTest : public QObject { Q_OBJECT private Q_SLOTS: void testInvalid(); void testHalfTranslated(); }; void ProjectModelTest::testInvalid() { QAtomicInt loaded; auto *model = new ProjectModel(this); connect(model, &ProjectModel::loadingFinished, [&loaded]() { loaded.fetchAndAddRelaxed(1); }); connect(model, &ProjectModel::totalsChanged, [=](int fuzzy, int translated, int untranslated, bool done) { QCOMPARE(fuzzy, 0); QCOMPARE(translated, 0); QCOMPARE(untranslated, 0); QCOMPARE(done, true); }); model->setUrl(QUrl::fromLocalFile(QFINDTESTDATA("data/dir-invalid")), {}); // Wait for signal while (!loaded.load()) { QCoreApplication::processEvents(); } QCOMPARE(model->rowCount(QModelIndex()), 1); QCOMPARE(model->data(model->index(0, 0), Qt::DisplayRole), QStringLiteral("invalid.po")); QCOMPARE(model->data(model->index(0, 1), Qt::DisplayRole), QRect(0, 0, 0, 0)); QCOMPARE(model->data(model->index(0, 2), Qt::DisplayRole), 0); QCOMPARE(model->data(model->index(0, 3), Qt::DisplayRole), 0); QCOMPARE(model->data(model->index(0, 4), Qt::DisplayRole), 0); QCOMPARE(model->data(model->index(0, 5), Qt::DisplayRole), 0); QCOMPARE(model->data(model->index(0, 6), Qt::DisplayRole), 0); QCOMPARE(model->data(model->index(0, 7), Qt::DisplayRole), QString()); QCOMPARE(model->data(model->index(0, 8), Qt::DisplayRole), QString()); QCOMPARE(model->data(model->index(0, 9), Qt::DisplayRole), QString()); } void ProjectModelTest::testHalfTranslated() { QAtomicInt loaded; auto *model = new ProjectModel(this); connect(model, &ProjectModel::loadingFinished, [&loaded]() { loaded.fetchAndAddRelaxed(1); }); connect(model, &ProjectModel::totalsChanged, [=](int fuzzy, int translated, int untranslated, bool done) { QCOMPARE(fuzzy, 1); QCOMPARE(translated, 3); QCOMPARE(untranslated, 2); QCOMPARE(done, true); }); model->setUrl(QUrl::fromLocalFile(QFINDTESTDATA("data/dir-halftranslated")), {}); // Wait for signal while (!loaded.load()) { QCoreApplication::processEvents(); } QCOMPARE(model->rowCount(QModelIndex()), 1); QCOMPARE(model->data(model->index(0, 0), Qt::DisplayRole), QStringLiteral("halftranslated.po")); QCOMPARE(model->data(model->index(0, 1), Qt::DisplayRole), QRect(3, 2, 1, 0)); QCOMPARE(model->data(model->index(0, 2), Qt::DisplayRole), 6); QCOMPARE(model->data(model->index(0, 3), Qt::DisplayRole), 3); QCOMPARE(model->data(model->index(0, 4), Qt::DisplayRole), 1); QCOMPARE(model->data(model->index(0, 5), Qt::DisplayRole), 2); QCOMPARE(model->data(model->index(0, 6), Qt::DisplayRole), 3); QCOMPARE(model->data(model->index(0, 7), Qt::DisplayRole), QStringLiteral("2019-05-20 03:26+0200")); QCOMPARE(model->data(model->index(0, 8), Qt::DisplayRole), QStringLiteral("2019-06-13 08:53+0300")); QCOMPARE(model->data(model->index(0, 9), Qt::DisplayRole), QStringLiteral("Alexander Potashev ")); } -QTEST_MAIN(ProjectModelTest) +QTEST_GUILESS_MAIN(ProjectModelTest) #include "projectmodeltest.moc"