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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
/*
* Copyright (C) 2015 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Greeter.h"
#include "PromptsModel.h"
#include <QtTest>
class GreeterPromptsModelTest : public QObject
{
Q_OBJECT
private:
class PromptInfo {
public:
PromptInfo(PromptsModel::PromptType t, const QString &p)
: type(t), text(p) {}
PromptsModel::PromptType type;
QString text;
};
void selectUser(const QString &user)
{
Greeter::instance()->authenticate(user);
QCOMPARE(Greeter::instance()->authenticationUser(), user);
}
void respond(const QString &response, bool authenticated)
{
Greeter::instance()->respond(response);
QCOMPARE(Greeter::instance()->isAuthenticated(), authenticated);
}
void comparePrompts(const QList<PromptInfo> &expected)
{
QTRY_COMPARE(prompts->rowCount(), expected.size());
for (int i = 0; i < prompts->rowCount(); i++) {
QCOMPARE(prompts->data(prompts->index(i, 0), PromptsModel::TypeRole).toInt(), (int)expected[i].type);
QCOMPARE(prompts->data(prompts->index(i, 0), PromptsModel::TextRole).toString(), expected[i].text);
}
}
private Q_SLOTS:
void initTestCase()
{
prompts = Greeter::instance()->promptsModel();
QVERIFY(prompts);
}
void init()
{
QCOMPARE(prompts->rowCount(), 0);
}
void cleanup()
{
prompts->clear();
}
void testSimpleFailure()
{
selectUser("has-password");
comparePrompts({{PromptsModel::Secret, ""}});
respond("nope", false);
comparePrompts({{PromptsModel::Secret, ""}}); // prompts don't change immediately
selectUser("has-password");
comparePrompts({{PromptsModel::Error, "Invalid password, please try again"},
{PromptsModel::Secret, ""}});
}
void testSimpleSuccess()
{
selectUser("has-password");
comparePrompts({{PromptsModel::Secret, ""}});
respond("password", true);
comparePrompts({{PromptsModel::Secret, ""}}); // prompts don't change
}
void testHasPassword()
{
selectUser("has-password");
comparePrompts({{PromptsModel::Secret, ""}});
}
void testDifferentPrompt()
{
selectUser("different-prompt");
comparePrompts({{PromptsModel::Secret, "Secret word"}});
}
void testNoPassword()
{
selectUser("no-password");
comparePrompts({{PromptsModel::Button, "Log In"}});
}
void testAuthError()
{
selectUser("auth-error");
comparePrompts({{PromptsModel::Error, "Failed to authenticate"},
{PromptsModel::Button, "Retry"}});
}
void testTwoFactor()
{
selectUser("two-factor");
comparePrompts({{PromptsModel::Secret, ""}});
respond("password", false);
comparePrompts({{PromptsModel::Question, "otp"}});
}
void testTwoPrompts()
{
selectUser("two-prompts");
comparePrompts({{PromptsModel::Question, "Favorite Color (blue)"},
{PromptsModel::Secret, ""}});
}
void testWackyPrompts()
{
selectUser("wacky-prompts");
comparePrompts({{PromptsModel::Message, "First message"},
{PromptsModel::Question, "Favorite Color (blue)"},
{PromptsModel::Error, "Second message"},
{PromptsModel::Secret, ""},
{PromptsModel::Message, "Last message"}});
}
void testHtmlInfoPrompts()
{
selectUser("html-info-prompt");
comparePrompts({{PromptsModel::Message, "<b>&</b>"},
{PromptsModel::Secret, ""}});
}
void testInfoAfterLogin()
{
selectUser("info-after-login");
comparePrompts({{PromptsModel::Secret, ""}});
respond("password", true);
comparePrompts({{PromptsModel::Message, "Congratulations on logging in!"},
{PromptsModel::Button, "Log In"}});
}
void testLocked()
{
selectUser("locked");
comparePrompts({{PromptsModel::Secret, ""}});
respond("nope", false);
selectUser("locked");
comparePrompts({{PromptsModel::Error, "Account is locked"},
{PromptsModel::Secret, ""}});
}
private:
PromptsModel *prompts;
};
QTEST_GUILESS_MAIN(GreeterPromptsModelTest)
#include "promptsmodel.moc"
|