diff --git a/src/filter/autotests/filteractionwithurltest.cpp b/src/filter/autotests/filteractionwithurltest.cpp index 636c4c8..7746316 100644 --- a/src/filter/autotests/filteractionwithurltest.cpp +++ b/src/filter/autotests/filteractionwithurltest.cpp @@ -1,117 +1,117 @@ /* Copyright (c) 2015-2019 Montel Laurent This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "filteractionwithurltest.h" #include "../filteractions/filteractionwithurl.h" #include #include #include class TestFilterActionWithUrl : public MailCommon::FilterActionWithUrl { public: TestFilterActionWithUrl() : MailCommon::FilterActionWithUrl(QStringLiteral("test"), QStringLiteral("label")) { } FilterAction::ReturnCode process(MailCommon::ItemContext &, bool) const override { return GoOn; } MailCommon::SearchRule::RequiredPart requiredPart() const override { return MailCommon::SearchRule::CompleteMessage; } }; FilterActionWithUrlTest::FilterActionWithUrlTest(QObject *parent) : QObject(parent) { } FilterActionWithUrlTest::~FilterActionWithUrlTest() { } void FilterActionWithUrlTest::shouldHaveDefaultValue() { TestFilterActionWithUrl filter; QWidget *w = filter.createParamWidget(nullptr); KUrlRequester *requester = w->findChild(QStringLiteral("requester")); QVERIFY(requester); QToolButton *toolButton = w->findChild(QStringLiteral("helpbutton")); QVERIFY(toolButton); } void FilterActionWithUrlTest::shouldClearWidget() { TestFilterActionWithUrl filter; QWidget *w = filter.createParamWidget(nullptr); KUrlRequester *requester = w->findChild(QStringLiteral("requester")); requester->setUrl(QUrl::fromLocalFile(QStringLiteral("/foo/bla"))); QVERIFY(!requester->url().isEmpty()); filter.clearParamWidget(w); QVERIFY(requester->url().isEmpty()); } void FilterActionWithUrlTest::shouldAddValue() { TestFilterActionWithUrl filter; QWidget *w = filter.createParamWidget(nullptr); KUrlRequester *requester = w->findChild(QStringLiteral("requester")); filter.argsFromString(QStringLiteral("/foo")); filter.setParamWidgetValue(w); QCOMPARE(requester->lineEdit()->text(), QStringLiteral("/foo")); } void FilterActionWithUrlTest::shouldApplyValue() { TestFilterActionWithUrl filter; QWidget *w = filter.createParamWidget(nullptr); filter.argsFromString(QStringLiteral("foo")); filter.setParamWidgetValue(w); filter.applyParamWidgetValue(w); QCOMPARE(filter.argsAsString(), QStringLiteral("foo")); } void FilterActionWithUrlTest::shouldTestUrl_data() { QTest::addColumn("urlstr"); QTest::addColumn("output"); QTest::newRow("fullpath") << QStringLiteral("/usr/bin/ls") << QStringLiteral("/usr/bin/ls"); QTest::newRow("local") << QStringLiteral("ls") << QStringLiteral("ls"); QTest::newRow("localwithargument") << QStringLiteral("ls -l") << QStringLiteral("ls -l"); QTest::newRow("fullpathwithargument") << QStringLiteral("/usr/bin/ls -l") << QStringLiteral("/usr/bin/ls -l"); - QTest::newRow("url") << QStringLiteral("file:///usr/bin/ls -l") << QStringLiteral("/usr/bin/ls -l"); + QTest::newRow("url") << QStringLiteral("file:///usr/bin/ls -l") << QStringLiteral("file:///usr/bin/ls -l"); QTest::newRow("url2") << QStringLiteral("/usr/bin/ls -l") << QStringLiteral("/usr/bin/ls -l"); } void FilterActionWithUrlTest::shouldTestUrl() { QFETCH(QString, urlstr); QFETCH(QString, output); TestFilterActionWithUrl filter; QWidget *w = filter.createParamWidget(nullptr); filter.argsFromString(urlstr); filter.setParamWidgetValue(w); filter.applyParamWidgetValue(w); QCOMPARE(filter.argsAsString(), output); } QTEST_MAIN(FilterActionWithUrlTest)