File indexing completed on 2024-05-26 05:05:43

0001 /*
0002    SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "channelpassworddialogtest.h"
0008 #include "dialogs/channelpassworddialog.h"
0009 #include "dialogs/channelpasswordwidget.h"
0010 #include <QDialogButtonBox>
0011 #include <QStandardPaths>
0012 #include <QTest>
0013 #include <QVBoxLayout>
0014 QTEST_MAIN(ChannelPasswordDialogTest)
0015 ChannelPasswordDialogTest::ChannelPasswordDialogTest(QObject *parent)
0016     : QObject(parent)
0017 {
0018     QStandardPaths::setTestModeEnabled(true);
0019 }
0020 
0021 void ChannelPasswordDialogTest::shouldHaveDefaultValues()
0022 {
0023     ChannelPasswordDialog w;
0024     QVERIFY(!w.windowTitle().isEmpty());
0025     auto mainLayout = w.findChild<QVBoxLayout *>(QStringLiteral("mainLayout"));
0026     QVERIFY(mainLayout);
0027 
0028     auto mChannelPasswordWidget = w.findChild<ChannelPasswordWidget *>(QStringLiteral("mChannelPasswordWidget"));
0029     QVERIFY(mChannelPasswordWidget);
0030 
0031     auto buttonBox = w.findChild<QDialogButtonBox *>(QStringLiteral("button"));
0032     QVERIFY(buttonBox);
0033 }
0034 
0035 #include "moc_channelpassworddialogtest.cpp"