From 057704c097b69c982fc342fdb5b3566198cf3372 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 7 Feb 2011 13:31:31 +0100 Subject: torture: Added more test for correct auth. --- tests/torture.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/torture.c b/tests/torture.c index b1d5bf6..9c61ed2 100644 --- a/tests/torture.c +++ b/tests/torture.c @@ -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 { -- cgit