1
1

torture: Added more test for correct auth.

Этот коммит содержится в:
Andreas Schneider 2011-02-07 13:31:31 +01:00
родитель 92f20ec85a
Коммит 057704c097

Просмотреть файл

@ -154,6 +154,7 @@ ssh_session torture_ssh_session(const char *host,
const char *user,
const char *password) {
ssh_session session;
int rc;
if (host == NULL) {
return NULL;
@ -184,6 +185,15 @@ ssh_session torture_ssh_session(const char *host,
/* We are in testing mode, so consinder the hostkey as verified ;) */
/* This request should return a SSH_REQUEST_DENIED error */
rc = ssh_userauth_none(session, NULL);
if (rc == SSH_ERROR) {
goto failed;
}
if (!(ssh_auth_list(session) & SSH_AUTH_METHOD_INTERACTIVE)) {
goto failed;
}
if (password != NULL) {
rc = _torture_auth_kbdint(session, password);
} else {