An error occurred while loading the file. Please try again.
-
Oswald Buddenhagen authored
at the time of release it will be almost five years since we introduced TS 2.0 and stopped writing 1.1 by default, so there shouldn't be much of a need to write such files any more - and this commit doesn't even remove 1.1 reading capability (because it comes for free so far). Change-Id: Ie54fe31f83733ef944306c01301c0ec0e9bcb8bf Reviewed-by:
hjk <hjk121@nokiamail.com>
cb1f2663
tst_lrelease.cpp 9.61 KiB
/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the Qt Linguist of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3.0 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU General Public License version 3.0 requirements will be
** met: http://www.gnu.org/copyleft/gpl.html.
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QtCore/QDir>
#include <QtCore/QDebug>
#include <QtCore/QFile>
#include <QtCore/QByteArray>
#include <QtTest/QtTest>
class tst_lrelease : public QObject
{
Q_OBJECT
public:
tst_lrelease()
: binDir(QLibraryInfo::location(QLibraryInfo::BinariesPath))
, dataDir(QFINDTESTDATA("testdata/"))
{}
private:
private slots:
void translate();
void mixedcodecs();
void compressed();
void idbased();
void markuntranslated();
void dupes();
private:
void doCompare(const QStringList &actual, const QString &expectedFn);
7172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
QString binDir;
QString dataDir;
};
void tst_lrelease::doCompare(const QStringList &actual, const QString &expectedFn)
{
QFile file(expectedFn);
QVERIFY(file.open(QIODevice::ReadOnly | QIODevice::Text));
QStringList expected = QString(file.readAll()).trimmed().split('\n');
int i = 0, ei = expected.size(), gi = actual.size();
for (; ; i++) {
if (i == gi) {
if (i == ei)
return;
gi = 0;
break;
} else if (i == ei) {
ei = 0;
break;
} else if (!QRegExp(expected.at(i)).exactMatch(actual.at(i))) {
while ((ei - 1) >= i && (gi - 1) >= i &&
(QRegExp(expected.at(ei - 1)).exactMatch(actual.at(gi - 1))))
ei--, gi--;
break;
}
}
QByteArray diff;
for (int j = qMax(0, i - 3); j < i; j++)
diff += expected.at(j) + '\n';
diff += "<<<<<<< got\n";
for (int j = i; j < gi; j++) {
diff += actual.at(j) + '\n';
if (j >= i + 5) {
diff += "...\n";
break;
}
}
diff += "=========\n";
for (int j = i; j < ei; j++) {
diff += expected.at(j) + '\n';
if (j >= i + 5) {
diff += "...\n";
break;
}
}
diff += ">>>>>>> expected\n";
for (int j = ei; j < qMin(ei + 3, expected.size()); j++)
diff += expected.at(j) + '\n';
QFAIL(qPrintable("Output for " + expectedFn + " does not meet expectations:\n" + diff));
}
void tst_lrelease::translate()
{
QVERIFY(!QProcess::execute(binDir + "/lrelease " + dataDir + "translate.ts"));
QTranslator translator;
QVERIFY(translator.load(dataDir + "translate.qm"));
qApp->installTranslator(&translator);
QCOMPARE(QObject::tr("\nnewline at the start"), QString("\nNEWLINE AT THE START"));
QCOMPARE(QObject::tr("newline at the end\n"), QString("NEWLINE AT THE END\n"));
QCOMPARE(QObject::tr("newline and space at the end\n "), QString("NEWLINE AND SPACE AT THE END\n "));
QCOMPARE(QObject::tr("space and newline at the end \n"), QString("SPACE AND NEWLINE AT THE END \n"));
QCOMPARE(QObject::tr("\ttab at the start and newline at the end\n"), QString("\tTAB AT THE START AND NEWLINE AT THE END\n"));
QCOMPARE(QObject::tr("\n\tnewline and tab at the start"), QString("\n\tNEWLINE AND TAB AT THE START"));
QCOMPARE(QObject::tr(" \tspace and tab at the start"), QString(" \tSPACE AND TAB AT THE START"));
QCOMPARE(QObject::tr(" string that does not exist"), QString(" string that does not exist"));
141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
QCOMPARE(QCoreApplication::translate("CubeForm", "Test"), QString::fromLatin1("BBBB"));
QCOMPARE(QCoreApplication::translate("", "Test", "Empty context"), QString("AAAA"));
// Test plurals
QString txed = QCoreApplication::translate("Plurals", "There are %n houses", 0, QCoreApplication::UnicodeUTF8, 0);
QCOMPARE(QString::fromLatin1("[%1]").arg(txed), QString("[There are 0 houses]"));
QCOMPARE(QCoreApplication::translate("Plurals", "There are %n houses", 0, QCoreApplication::UnicodeUTF8, 1), QString("There is 1 house"));
QCOMPARE(QCoreApplication::translate("Plurals", "There are %n houses", 0, QCoreApplication::UnicodeUTF8, 2), QString("There are 2 houses"));
QCOMPARE(QCoreApplication::translate("Plurals", "There are %n houses", 0, QCoreApplication::UnicodeUTF8, 3), QString("There are 3 houses"));
// More plurals
QCOMPARE(tr("There are %n cars", "More Plurals", 0) , QString("There are 0 cars"));
QCOMPARE(tr("There are %n cars", "More Plurals", 1) , QString("There is 1 car"));
QCOMPARE(tr("There are %n cars", "More Plurals", 2) , QString("There are 2 cars"));
QCOMPARE(tr("There are %n cars", "More Plurals", 3) , QString("There are 3 cars"));
QCOMPARE(QCoreApplication::translate("no_en", "Kj\370r K\345re, kj\346re"), QString::fromLatin1("Drive K\345re, dear"));
QCOMPARE(QCoreApplication::translate("en_no", "Drive K\345re, dear"), QString::fromLatin1("Kj\370r K\345re, kj\346re"));
QCOMPARE(QCoreApplication::translate("en_ch", "Chinese symbol:"), QString::fromLatin1("Chinese symbol:%1").arg(QChar(0x7c1f)));
// printf("halo\r\nhallo");
// QCOMPARE(tr("This\r\nwill fail"), QString("THIS\nWILL FAIL")); // \r\n = 0d 0a
QCOMPARE(tr("Completely random string"),
QString::fromLatin1("Super-lange Uebersetzung mit Schikanen\x9c"
"Mittlere Uebersetung\x9c"
"Kurze Uebers."));
qApp->removeTranslator(&translator);
}
void tst_lrelease::mixedcodecs()
{
QVERIFY(!QProcess::execute(binDir + "/lrelease " + dataDir + "mixedcodecs-ts20.ts"));
QTranslator translator;
QVERIFY(translator.load(dataDir + "mixedcodecs-ts20.qm"));
qApp->installTranslator(&translator);
QCOMPARE(QCoreApplication::translate("FooBar", "this contains an umlaut \xfc ü"),
QString::fromLatin1("random stuff with umlaut"));
QCOMPARE(QCoreApplication::translate("FooBar", "umlaut \xc3\xbc ü in utf8"),
QString::fromLatin1("more random stuff with umlaut"));
}
void tst_lrelease::compressed()
{
QVERIFY(!QProcess::execute(binDir + "/lrelease -compress " + dataDir + "compressed.ts"));
QTranslator translator;
QVERIFY(translator.load(dataDir + "compressed.qm"));
qApp->installTranslator(&translator);
QCOMPARE(QCoreApplication::translate("Context1", "Foo"), QString::fromLatin1("in first context"));
QCOMPARE(QCoreApplication::translate("Context2", "Bar"), QString::fromLatin1("in second context"));
QCOMPARE(QCoreApplication::translate("Action1", "Component Name"), QString::fromLatin1("translation in first context"));
QCOMPARE(QCoreApplication::translate("Action2", "Component Name"), QString::fromLatin1("translation in second context"));
QCOMPARE(QCoreApplication::translate("Action3", "Component Name"), QString::fromLatin1("translation in third context"));
}
void tst_lrelease::idbased()
{
QVERIFY(!QProcess::execute(binDir + "/lrelease -idbased " + dataDir + "idbased.ts"));
QTranslator translator;
QVERIFY(translator.load(dataDir + "idbased.qm"));
211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
qApp->installTranslator(&translator);
QCOMPARE(qtTrId("test_id"), QString::fromLatin1("This is a test string."));
QCOMPARE(qtTrId("untranslated_id"), QString::fromLatin1("This has no translation."));
}
void tst_lrelease::markuntranslated()
{
QVERIFY(!QProcess::execute(binDir + "/lrelease -markuntranslated # -idbased " + dataDir + "idbased.ts"));
QTranslator translator;
QVERIFY(translator.load(dataDir + "idbased.qm"));
qApp->installTranslator(&translator);
QCOMPARE(qtTrId("test_id"), QString::fromLatin1("This is a test string."));
QCOMPARE(qtTrId("untranslated_id"), QString::fromLatin1("#This has no translation."));
}
void tst_lrelease::dupes()
{
QProcess proc;
proc.start(binDir + "/lrelease " + dataDir + "dupes.ts", QIODevice::ReadWrite | QIODevice::Text);
QVERIFY(proc.waitForFinished());
QVERIFY(proc.exitStatus() == QProcess::NormalExit);
doCompare(QString(proc.readAllStandardError()).trimmed().split('\n'), dataDir + "dupes.errors");
}
QTEST_MAIN(tst_lrelease)
#include "tst_lrelease.moc"