1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
/*
This file is part of the KDE libraries
SPDX-FileCopyrightText: 2007 Olivier Goffart <ogoffart at kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include <QApplication>
#include <QMap>
#include <kpassworddialog.h>
#include <iostream>
// We can't depend on i18n in this test, but still -- show good practice (other than the line below) :-)
#define i18n QString::fromLatin1
int main(int argc, char *argv[])
{
QApplication::setApplicationName(QStringLiteral("KNewPasswordDialogTest"));
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps, true);
QApplication a(argc, argv);
// step 1 simple password
{
KPasswordDialog dlg(nullptr, KPasswordDialog::ShowKeepPassword);
dlg.setPrompt(
i18n("This is a long prompt line. It is important it to be long so we can test the dialog does not get broken because of multiline labels. Please "
"enter a password:"));
dlg.addCommentLine(i18n("This is a rather large left comment line"),
i18n("Right part of the comment line has to be long too so be test the layouting works really ok. Please visit http://www.kde.org"));
if (dlg.exec()) {
std::cout << "Entered password: " << qPrintable(dlg.password()) << std::endl;
} else {
std::cout << "No password" << std::endl;
return -1;
}
}
// step 2 readonly username
{
KPasswordDialog dlg(nullptr, KPasswordDialog::ShowUsernameLine | KPasswordDialog::UsernameReadOnly);
dlg.setPrompt(i18n("Enter a password for the test"));
dlg.setUsername(QStringLiteral("konqui"));
dlg.addCommentLine(i18n("Site"), i18n("http://www.kde.org"));
if (dlg.exec()) {
std::cout << "Entered password: " << qPrintable(dlg.password()) << std::endl;
} else {
std::cout << "No password" << std::endl;
return -1;
}
}
// step 3 with some username preset
{
KPasswordDialog dlg(nullptr, KPasswordDialog::ShowUsernameLine);
dlg.setPrompt(i18n("Enter a password for the test"));
QMap<QString, QString> logins;
logins.insert(QStringLiteral("konqui"), QStringLiteral("foo"));
logins.insert(QStringLiteral("watson"), QStringLiteral("bar"));
logins.insert(QStringLiteral("ogoffart"), QString());
dlg.setKnownLogins(logins);
if (dlg.exec()) {
std::cout << "Entered password: " << qPrintable(dlg.password()) << " for username " << qPrintable(dlg.username()) << std::endl;
} else {
std::cout << "No password" << std::endl;
return -1;
}
}
return 0;
}
|