diff --git a/src/ksieveui/autocreatescripts/autotests/selectheadertypecomboboxtest.cpp b/src/ksieveui/autocreatescripts/autotests/selectheadertypecomboboxtest.cpp index cbaca56..41cc6a0 100644 --- a/src/ksieveui/autocreatescripts/autotests/selectheadertypecomboboxtest.cpp +++ b/src/ksieveui/autocreatescripts/autotests/selectheadertypecomboboxtest.cpp @@ -1,102 +1,102 @@ /* Copyright (C) 2016-2017 Laurent Montel This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "selectheadertypecomboboxtest.h" #include "../sieveconditions/widgets/selectheadertypecombobox.h" #include #include #ifndef Q_OS_WIN void initLocale() { setenv("LC_ALL", "en_US.utf-8", 1); } Q_CONSTRUCTOR_FUNCTION(initLocale) #endif SelectHeaderTypeComboBoxTest::SelectHeaderTypeComboBoxTest(QObject *parent) : QObject(parent) { } SelectHeaderTypeComboBoxTest::~SelectHeaderTypeComboBoxTest() { } void SelectHeaderTypeComboBoxTest::shouldHaveDefaultValue() { KSieveUi::SelectHeaderTypeComboBox combox; QVERIFY(combox.isEditable()); QVERIFY(combox.count() > 0); QCOMPARE(combox.currentText(), QString()); QCOMPARE(combox.currentData().toString(), QString()); QCOMPARE(combox.currentIndex(), 0); QVERIFY(!combox.itemText(combox.count() - 1).isEmpty()); QCOMPARE(combox.itemData(combox.count() - 1).toString(), QString()); //Don't verify first element and last as we already did for (int i = 1; i < combox.count() - 1; ++i) { QVERIFY(!combox.itemData(i).toString().isEmpty()); QVERIFY(!combox.itemText(i).isEmpty()); } KSieveUi::SelectHeaderTypeComboBox combox1(true); /*onlyEnvelopType*/ QVERIFY(combox1.isEditable()); QVERIFY(combox1.count() > 0); QCOMPARE(combox1.currentText(), QString()); QCOMPARE(combox1.currentData().toString(), QString()); QCOMPARE(combox1.currentIndex(), 0); QVERIFY(!combox1.itemText(combox1.count() - 1).isEmpty()); QCOMPARE(combox1.itemData(combox1.count() - 1).toString(), QString()); //Don't verify first element and last as we already did for (int i = 1; i < combox1.count() - 1; ++i) { QVERIFY(!combox1.itemData(i).toString().isEmpty()); QVERIFY(!combox1.itemText(i).isEmpty()); } } void SelectHeaderTypeComboBoxTest::shouldSetCode_data() { QTest::addColumn("code"); QTest::addColumn("index"); QTest::addColumn("currentText"); QTest::addColumn("onlyEnvelopType"); QTest::addColumn("readOnly"); QTest::newRow("empty") << QString() << 0 << QString() << false << false; QTest::newRow("empty only header") << QString() << 0 << QString() << false << false; - QTest::newRow("from") << QStringLiteral("from") << 8 << QStringLiteral("From") << false << true; + QTest::newRow("from") << QStringLiteral("from") << 9 << QStringLiteral("From") << false << true; } void SelectHeaderTypeComboBoxTest::shouldSetCode() { QFETCH(QString, code); QFETCH(int, index); QFETCH(QString, currentText); QFETCH(bool, onlyEnvelopType); QFETCH(bool, readOnly); KSieveUi::SelectHeaderTypeComboBox combox(onlyEnvelopType); combox.setCode(code); QCOMPARE(combox.currentText(), currentText); QCOMPARE(combox.currentIndex(), index); QCOMPARE(combox.lineEdit()->isReadOnly(), readOnly); } QTEST_MAIN(SelectHeaderTypeComboBoxTest)