File indexing completed on 2025-01-19 04:46:51
0001 /* 0002 SPDX-FileCopyrightText: 2019-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #include "dkimauthenticationverifiedserverdialogtest.h" 0008 #include "dkimauthenticationverifiedserverdialog.h" 0009 #include "dkimauthenticationverifiedserverwidget.h" 0010 #include <QDialogButtonBox> 0011 #include <QStandardPaths> 0012 #include <QTest> 0013 #include <QVBoxLayout> 0014 QTEST_MAIN(DKIMAuthenticationVerifiedServerDialogTest) 0015 0016 DKIMAuthenticationVerifiedServerDialogTest::DKIMAuthenticationVerifiedServerDialogTest(QObject *parent) 0017 : QObject(parent) 0018 { 0019 QStandardPaths::setTestModeEnabled(true); 0020 } 0021 0022 void DKIMAuthenticationVerifiedServerDialogTest::shouldHaveDefaultValues() 0023 { 0024 DKIMAuthenticationVerifiedServerDialog dlg; 0025 QVERIFY(!dlg.windowTitle().isEmpty()); 0026 0027 auto mainLayout = dlg.findChild<QVBoxLayout *>(QStringLiteral("mainlayout")); 0028 QVERIFY(mainLayout); 0029 0030 auto mConfigureWidget = dlg.findChild<DKIMAuthenticationVerifiedServerWidget *>(QStringLiteral("mAuthenticationVerifiedWidget")); 0031 QVERIFY(mConfigureWidget); 0032 0033 auto buttonBox = dlg.findChild<QDialogButtonBox *>(QStringLiteral("buttonBox")); 0034 QVERIFY(buttonBox); 0035 QCOMPARE(buttonBox->standardButtons(), QDialogButtonBox::StandardButtons{QDialogButtonBox::Ok | QDialogButtonBox::Cancel}); 0036 } 0037 0038 #include "moc_dkimauthenticationverifiedserverdialogtest.cpp"