2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-07-06 15:48:52 +00:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2011-07-06 15:48:52 +00:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-07-06 15:48:52 +00:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2011-07-06 15:48:52 +00:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2011-07-06 15:48:52 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-07-06 15:48:52 +00:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QString>
|
|
|
|
|
#include <QtTest>
|
2010-11-10 08:49:19 +01:00
|
|
|
|
|
|
|
|
#include <coreplugin/externaltool.h>
|
|
|
|
|
|
|
|
|
|
using namespace Core::Internal;
|
|
|
|
|
|
2011-11-02 16:45:13 +01:00
|
|
|
static const char TEST_XML1[] =
|
2010-11-11 15:47:23 +01:00
|
|
|
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
2010-11-11 14:57:29 +01:00
|
|
|
"<externaltool id=\"lupdate\">"
|
2010-11-10 08:49:19 +01:00
|
|
|
" <description>Synchronizes translator's ts files with the program code</description>"
|
|
|
|
|
" <description xml:lang=\"de\">Synchronisiert die ts-Übersetzungsdateien mit dem Programmcode</description>"
|
|
|
|
|
" <displayname>Update translations (lupdate)</displayname>"
|
|
|
|
|
" <displayname xml:lang=\"de\">Übersetzungen aktualisieren (lupdate)</displayname>"
|
|
|
|
|
" <category>Linguist</category>"
|
|
|
|
|
" <category xml:lang=\"de\">Linguist</category>"
|
|
|
|
|
" <order>1</order>"
|
2010-12-08 14:52:53 +01:00
|
|
|
" <executable error=\"ignore\">"
|
2010-11-10 08:49:19 +01:00
|
|
|
" <path>%{QT_INSTALL_BINS}/lupdate</path>"
|
|
|
|
|
" <path>lupdate</path>"
|
|
|
|
|
" <arguments>%{CurrentProjectFilePath}</arguments>"
|
|
|
|
|
" <workingdirectory>%{CurrentProjectPath}</workingdirectory>"
|
|
|
|
|
" </executable>"
|
2013-12-03 16:31:14 +01:00
|
|
|
"</externaltool>";
|
2010-11-10 08:49:19 +01:00
|
|
|
|
2011-11-02 16:45:13 +01:00
|
|
|
static const char TEST_XML2[] =
|
2010-11-11 15:47:23 +01:00
|
|
|
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
2010-11-11 14:57:29 +01:00
|
|
|
"<externaltool id=\"sort\">"
|
2010-11-10 08:49:19 +01:00
|
|
|
" <description>Sorts the selected text</description>"
|
|
|
|
|
" <description xml:lang=\"de\">Sortiert den ausgewählten Text</description>"
|
|
|
|
|
" <displayname>Sort</displayname>"
|
|
|
|
|
" <displayname xml:lang=\"de\">Sortieren</displayname>"
|
|
|
|
|
" <category>Text</category>"
|
|
|
|
|
" <category xml:lang=\"de\">Text</category>"
|
|
|
|
|
" <executable output=\"replaceselection\">"
|
|
|
|
|
" <path>sort</path>"
|
2010-12-09 14:57:22 +01:00
|
|
|
" <input>%{CurrentSelection}</input>"
|
2010-11-10 08:49:19 +01:00
|
|
|
" <workingdirectory>%{CurrentPath}</workingdirectory>"
|
|
|
|
|
" </executable>"
|
|
|
|
|
"</externaltool>";
|
|
|
|
|
|
2011-11-02 16:45:13 +01:00
|
|
|
static const char TEST_XML3[] =
|
2010-11-11 15:47:23 +01:00
|
|
|
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
|
2010-11-11 14:57:29 +01:00
|
|
|
"<externaltool id=\"vi\">"
|
2010-11-10 08:49:19 +01:00
|
|
|
" <description>Opens the current file in vi</description>"
|
|
|
|
|
" <description xml:lang=\"de\">Öffnet die aktuelle Datei in vi</description>"
|
|
|
|
|
" <displayname>Edit with vi</displayname>"
|
|
|
|
|
" <displayname xml:lang=\"de\">In vi öffnen</displayname>"
|
|
|
|
|
" <category>Text</category>"
|
|
|
|
|
" <category xml:lang=\"de\">Text</category>"
|
2011-01-24 12:21:42 +01:00
|
|
|
" <executable modifiesdocument=\"yes\">"
|
2010-11-10 08:49:19 +01:00
|
|
|
" <path>xterm</path>"
|
|
|
|
|
" <arguments>-geom %{EditorCharWidth}x%{EditorCharHeight}+%{EditorXPos}+%{EditorYPos} -e vi %{CurrentFilePath} +%{EditorLine} +\"normal %{EditorColumn}|\"</arguments>"
|
|
|
|
|
" <workingdirectory>%{CurrentPath}</workingdirectory>"
|
|
|
|
|
" </executable>"
|
|
|
|
|
"</externaltool>";
|
|
|
|
|
|
2011-11-02 16:45:13 +01:00
|
|
|
static const char TEST_XML_LANG[] =
|
2010-11-11 15:47:23 +01:00
|
|
|
"<?xml version=\"1.0\" encoding=\"Latin-1\"?>"
|
2010-11-11 14:57:29 +01:00
|
|
|
"<externaltool id=\"temp\">"
|
2010-11-11 14:26:14 +01:00
|
|
|
" <description>Hi</description>"
|
|
|
|
|
" <description xml:lang=\"de\">Hallo</description>"
|
|
|
|
|
" <description xml:lang=\"de_CH\">Grüezi</description>"
|
|
|
|
|
" <displayname xml:lang=\"de\">Hallo</displayname>"
|
|
|
|
|
" <displayname>Hi</displayname>"
|
|
|
|
|
" <displayname xml:lang=\"de_CH\">Grüezi</displayname>"
|
|
|
|
|
" <category xml:lang=\"de_CH\">Grüezi</category>"
|
|
|
|
|
" <category>Hi</category>"
|
|
|
|
|
" <category xml:lang=\"de\">Hallo</category>"
|
|
|
|
|
" <executable>"
|
|
|
|
|
" <path>foo</path>"
|
|
|
|
|
" </executable>"
|
|
|
|
|
"</externaltool>";
|
|
|
|
|
|
2010-11-10 08:49:19 +01:00
|
|
|
class ExternaltoolTest : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
|
void testRead1();
|
|
|
|
|
void testRead2();
|
|
|
|
|
void testRead3();
|
2010-11-11 14:26:14 +01:00
|
|
|
void testReadLocale();
|
2010-11-10 08:49:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void ExternaltoolTest::testRead1()
|
|
|
|
|
{
|
|
|
|
|
QString error;
|
2010-11-11 15:47:23 +01:00
|
|
|
ExternalTool *tool = ExternalTool::createFromXml(QByteArray(TEST_XML1), &error);
|
2010-11-10 08:49:19 +01:00
|
|
|
QVERIFY(tool != 0);
|
|
|
|
|
QVERIFY(error.isEmpty());
|
2010-11-11 14:57:29 +01:00
|
|
|
QCOMPARE(tool->id(), QString::fromLatin1("lupdate"));
|
2010-11-10 08:49:19 +01:00
|
|
|
QVERIFY(tool->description().startsWith(QLatin1String("Synchronizes tran")));
|
|
|
|
|
QCOMPARE(tool->displayName(), QString::fromLatin1("Update translations (lupdate)"));
|
|
|
|
|
QCOMPARE(tool->displayCategory(), QString::fromLatin1("Linguist"));
|
|
|
|
|
QCOMPARE(tool->order(), 1);
|
|
|
|
|
QCOMPARE(tool->executables().size(), 2);
|
|
|
|
|
QCOMPARE(tool->executables().at(0), QString::fromLatin1("%{QT_INSTALL_BINS}/lupdate"));
|
|
|
|
|
QCOMPARE(tool->executables().at(1), QString::fromLatin1("lupdate"));
|
|
|
|
|
QCOMPARE(tool->arguments(), QString::fromLatin1("%{CurrentProjectFilePath}"));
|
2010-12-09 14:57:22 +01:00
|
|
|
QCOMPARE(tool->input(), QString());
|
2010-11-10 08:49:19 +01:00
|
|
|
QCOMPARE(tool->workingDirectory(), QString::fromLatin1("%{CurrentProjectPath}"));
|
|
|
|
|
QCOMPARE(tool->outputHandling(), ExternalTool::ShowInPane);
|
2010-12-08 14:52:53 +01:00
|
|
|
QCOMPARE(tool->errorHandling(), ExternalTool::Ignore);
|
2010-11-11 14:26:14 +01:00
|
|
|
delete tool;
|
2010-11-10 08:49:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExternaltoolTest::testRead2()
|
|
|
|
|
{
|
|
|
|
|
QString error;
|
2010-11-11 15:47:23 +01:00
|
|
|
ExternalTool *tool = ExternalTool::createFromXml(QByteArray(TEST_XML2), &error);
|
2010-11-10 08:49:19 +01:00
|
|
|
QVERIFY(tool != 0);
|
|
|
|
|
QVERIFY(error.isEmpty());
|
2010-11-11 14:57:29 +01:00
|
|
|
QCOMPARE(tool->id(), QString::fromLatin1("sort"));
|
2010-11-10 08:49:19 +01:00
|
|
|
QVERIFY(tool->description().startsWith(QLatin1String("Sorts the")));
|
|
|
|
|
QCOMPARE(tool->displayName(), QString::fromLatin1("Sort"));
|
|
|
|
|
QCOMPARE(tool->displayCategory(), QString::fromLatin1("Text"));
|
|
|
|
|
QCOMPARE(tool->order(), -1);
|
|
|
|
|
QCOMPARE(tool->executables().size(), 1);
|
|
|
|
|
QCOMPARE(tool->executables().at(0), QString::fromLatin1("sort"));
|
2010-12-09 14:57:22 +01:00
|
|
|
QCOMPARE(tool->arguments(), QString());
|
|
|
|
|
QCOMPARE(tool->input(), QString::fromLatin1("%{CurrentSelection}"));
|
2010-11-10 08:49:19 +01:00
|
|
|
QCOMPARE(tool->workingDirectory(), QString::fromLatin1("%{CurrentPath}"));
|
|
|
|
|
QCOMPARE(tool->outputHandling(), ExternalTool::ReplaceSelection);
|
2010-12-08 14:52:53 +01:00
|
|
|
QCOMPARE(tool->errorHandling(), ExternalTool::ShowInPane);
|
2010-11-11 14:26:14 +01:00
|
|
|
delete tool;
|
2010-11-10 08:49:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExternaltoolTest::testRead3()
|
|
|
|
|
{
|
|
|
|
|
QString error;
|
2010-11-11 15:47:23 +01:00
|
|
|
ExternalTool *tool = ExternalTool::createFromXml(QByteArray(TEST_XML3), &error);
|
2010-11-10 08:49:19 +01:00
|
|
|
QVERIFY(tool != 0);
|
|
|
|
|
QVERIFY(error.isEmpty());
|
2010-11-11 14:57:29 +01:00
|
|
|
QCOMPARE(tool->id(), QString::fromLatin1("vi"));
|
2010-11-10 08:49:19 +01:00
|
|
|
QVERIFY(tool->description().startsWith(QLatin1String("Opens the")));
|
|
|
|
|
QCOMPARE(tool->displayName(), QString::fromLatin1("Edit with vi"));
|
|
|
|
|
QCOMPARE(tool->displayCategory(), QString::fromLatin1("Text"));
|
|
|
|
|
QCOMPARE(tool->order(), -1);
|
|
|
|
|
QCOMPARE(tool->executables().size(), 1);
|
|
|
|
|
QCOMPARE(tool->executables().at(0), QString::fromLatin1("xterm"));
|
|
|
|
|
QVERIFY(tool->arguments().startsWith(QLatin1String("-geom %{")));
|
2010-12-09 14:57:22 +01:00
|
|
|
QCOMPARE(tool->input(), QString());
|
2010-11-10 08:49:19 +01:00
|
|
|
QCOMPARE(tool->workingDirectory(), QString::fromLatin1("%{CurrentPath}"));
|
2011-01-24 12:21:42 +01:00
|
|
|
QCOMPARE(tool->outputHandling(), ExternalTool::ShowInPane);
|
|
|
|
|
QCOMPARE(tool->modifiesCurrentDocument(), true);
|
2010-12-08 14:52:53 +01:00
|
|
|
QCOMPARE(tool->errorHandling(), ExternalTool::ShowInPane);
|
2010-11-11 14:26:14 +01:00
|
|
|
delete tool;
|
2010-11-10 08:49:19 +01:00
|
|
|
}
|
|
|
|
|
|
2010-11-11 14:26:14 +01:00
|
|
|
void ExternaltoolTest::testReadLocale()
|
|
|
|
|
{
|
|
|
|
|
QString error;
|
|
|
|
|
ExternalTool *tool;
|
|
|
|
|
|
2010-11-11 15:47:23 +01:00
|
|
|
tool = ExternalTool::createFromXml(QByteArray(TEST_XML_LANG), &error);
|
2010-11-11 14:26:14 +01:00
|
|
|
QVERIFY(tool != 0);
|
|
|
|
|
QVERIFY(error.isEmpty());
|
|
|
|
|
QCOMPARE(tool->description(), QString::fromLatin1("Hi"));
|
|
|
|
|
QCOMPARE(tool->displayName(), QString::fromLatin1("Hi"));
|
|
|
|
|
QCOMPARE(tool->displayCategory(), QString::fromLatin1("Hi"));
|
|
|
|
|
delete tool;
|
|
|
|
|
|
2010-11-11 15:47:23 +01:00
|
|
|
tool = ExternalTool::createFromXml(QByteArray(TEST_XML_LANG), &error, QLatin1String("uk"));
|
2010-11-11 14:26:14 +01:00
|
|
|
QVERIFY(tool != 0);
|
|
|
|
|
QVERIFY(error.isEmpty());
|
|
|
|
|
QCOMPARE(tool->description(), QString::fromLatin1("Hi"));
|
|
|
|
|
QCOMPARE(tool->displayName(), QString::fromLatin1("Hi"));
|
|
|
|
|
QCOMPARE(tool->displayCategory(), QString::fromLatin1("Hi"));
|
|
|
|
|
delete tool;
|
|
|
|
|
|
2010-11-11 15:47:23 +01:00
|
|
|
tool = ExternalTool::createFromXml(QByteArray(TEST_XML_LANG), &error, QLatin1String("de_DE.UTF-8"));
|
2010-11-11 14:26:14 +01:00
|
|
|
QVERIFY(tool != 0);
|
|
|
|
|
QVERIFY(error.isEmpty());
|
|
|
|
|
QCOMPARE(tool->description(), QString::fromLatin1("Hallo"));
|
|
|
|
|
QCOMPARE(tool->displayName(), QString::fromLatin1("Hallo"));
|
|
|
|
|
QCOMPARE(tool->displayCategory(), QString::fromLatin1("Hallo"));
|
|
|
|
|
delete tool;
|
|
|
|
|
|
2010-11-11 15:47:23 +01:00
|
|
|
tool = ExternalTool::createFromXml(QByteArray(TEST_XML_LANG), &error, QLatin1String("de_CH"));
|
2010-11-11 14:26:14 +01:00
|
|
|
QVERIFY(tool != 0);
|
|
|
|
|
QVERIFY(error.isEmpty());
|
|
|
|
|
QCOMPARE(tool->description(), QString::fromLatin1("Grüezi"));
|
|
|
|
|
QCOMPARE(tool->displayName(), QString::fromLatin1("Grüezi"));
|
|
|
|
|
QCOMPARE(tool->displayCategory(), QString::fromLatin1("Grüezi"));
|
2013-12-03 16:31:14 +01:00
|
|
|
delete tool;
|
|
|
|
|
}
|
2010-11-11 14:26:14 +01:00
|
|
|
|
2010-11-10 08:49:19 +01:00
|
|
|
QTEST_APPLESS_MAIN(ExternaltoolTest);
|
|
|
|
|
|
|
|
|
|
#include "tst_externaltooltest.moc"
|