cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
126 lines
3.7 KiB
C++
126 lines
3.7 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2017 Montel Laurent <montel@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
|
|
#include "kpasswordlineedittest.h"
|
|
#include "kpasswordlineedit.h"
|
|
#include <QAction>
|
|
#include <QHBoxLayout>
|
|
#include <QLineEdit>
|
|
#include <QSignalSpy>
|
|
#include <QTest>
|
|
|
|
#include "windowscheck.h"
|
|
|
|
PasswordLineEditTest::PasswordLineEditTest(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
}
|
|
|
|
void PasswordLineEditTest::shouldHaveDefaultValue()
|
|
{
|
|
KPasswordLineEdit lineEdit;
|
|
QVERIFY(lineEdit.password().isEmpty());
|
|
|
|
QHBoxLayout *mainLayout = lineEdit.findChild<QHBoxLayout *>(QStringLiteral("mainlayout"));
|
|
QVERIFY(mainLayout);
|
|
QCOMPARE(mainLayout->contentsMargins(), QMargins(0, 0, 0, 0));
|
|
|
|
QLineEdit *edit = lineEdit.findChild<QLineEdit *>(QStringLiteral("passwordlineedit"));
|
|
QVERIFY(edit);
|
|
QVERIFY(edit->text().isEmpty());
|
|
QCOMPARE(edit->echoMode(), QLineEdit::Password);
|
|
|
|
QVERIFY(lineEdit.toggleEchoModeAction());
|
|
QVERIFY(!lineEdit.toggleEchoModeAction()->isVisible());
|
|
}
|
|
|
|
void PasswordLineEditTest::shouldShowTogglePassword()
|
|
{
|
|
if (isWindowsCI()) {
|
|
QSKIP("GUI Tests on Windows CI are not supported");
|
|
}
|
|
|
|
KPasswordLineEdit lineEdit;
|
|
lineEdit.show();
|
|
QVERIFY(QTest::qWaitForWindowExposed(&lineEdit));
|
|
|
|
QLineEdit *edit = lineEdit.findChild<QLineEdit *>(QStringLiteral("passwordlineedit"));
|
|
edit->setText(QStringLiteral("FOO"));
|
|
QVERIFY(lineEdit.toggleEchoModeAction()->isVisible());
|
|
|
|
edit->clear();
|
|
QVERIFY(!lineEdit.toggleEchoModeAction()->isVisible());
|
|
}
|
|
|
|
void PasswordLineEditTest::shouldNotShowToggleWhenSetPassword()
|
|
{
|
|
if (isWindowsCI()) {
|
|
QSKIP("GUI Tests on Windows CI are not supported");
|
|
}
|
|
|
|
KPasswordLineEdit lineEdit;
|
|
lineEdit.show();
|
|
QVERIFY(QTest::qWaitForWindowExposed(&lineEdit));
|
|
lineEdit.setPassword(QStringLiteral("foo"));
|
|
QVERIFY(!lineEdit.toggleEchoModeAction()->isVisible());
|
|
}
|
|
|
|
void PasswordLineEditTest::shouldShowRevealPassword()
|
|
{
|
|
if (isWindowsCI()) {
|
|
QSKIP("GUI Tests on Windows CI are not supported");
|
|
}
|
|
|
|
KPasswordLineEdit lineEdit;
|
|
lineEdit.show();
|
|
QVERIFY(QTest::qWaitForWindowExposed(&lineEdit));
|
|
|
|
QLineEdit *edit = lineEdit.findChild<QLineEdit *>(QStringLiteral("passwordlineedit"));
|
|
edit->setText(QStringLiteral("FOO"));
|
|
QVERIFY(lineEdit.toggleEchoModeAction()->isVisible());
|
|
|
|
lineEdit.setRevealPasswordMode(KPassword::RevealMode::Never);
|
|
QVERIFY(!lineEdit.toggleEchoModeAction()->isVisible());
|
|
|
|
lineEdit.setRevealPasswordMode(KPassword::RevealMode::Always);
|
|
QVERIFY(lineEdit.toggleEchoModeAction()->isVisible());
|
|
|
|
lineEdit.setRevealPasswordMode(KPassword::RevealMode::OnlyNew);
|
|
QVERIFY(lineEdit.toggleEchoModeAction()->isVisible());
|
|
|
|
lineEdit.setPassword(QStringLiteral("FOO2"));
|
|
QVERIFY(!lineEdit.toggleEchoModeAction()->isVisible());
|
|
|
|
edit->clear();
|
|
QVERIFY(!lineEdit.toggleEchoModeAction()->isVisible());
|
|
}
|
|
|
|
void PasswordLineEditTest::shouldEmitSignalPasswordChanged()
|
|
{
|
|
KPasswordLineEdit lineEdit;
|
|
lineEdit.show();
|
|
QSignalSpy spy(&lineEdit, &KPasswordLineEdit::passwordChanged);
|
|
lineEdit.setPassword(QStringLiteral("foo"));
|
|
QCOMPARE(spy.count(), 1);
|
|
}
|
|
|
|
void PasswordLineEditTest::testReadOnly()
|
|
{
|
|
KPasswordLineEdit lineEdit;
|
|
lineEdit.show();
|
|
lineEdit.setReadOnly(true);
|
|
QSignalSpy spy(&lineEdit, &KPasswordLineEdit::passwordChanged);
|
|
lineEdit.setPassword(QStringLiteral("foo"));
|
|
QCOMPARE(spy.count(), 1);
|
|
QTest::keyClick(&lineEdit, Qt::Key_A);
|
|
QCOMPARE(spy.count(), 1);
|
|
QCOMPARE(lineEdit.password(), QStringLiteral("foo"));
|
|
}
|
|
|
|
QTEST_MAIN(PasswordLineEditTest)
|
|
|
|
#include "moc_kpasswordlineedittest.cpp"
|