aboutsummaryrefslogtreecommitdiff
path: root/tests/client/torture_auth.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2011-09-11 11:35:34 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2011-09-11 17:22:27 +0200
commit27dea3560806b5e797207147d18a40b006d740a4 (patch)
tree89c7933c76251237d2d5cddad0ab377ef994645e /tests/client/torture_auth.c
parentff5bf51af1247cdcb6ffda4f940a24536340a9a9 (diff)
downloadlibssh-27dea3560806b5e797207147d18a40b006d740a4.tar.gz
libssh-27dea3560806b5e797207147d18a40b006d740a4.tar.xz
libssh-27dea3560806b5e797207147d18a40b006d740a4.zip
Test: added torture_auth_autopubkey_nonblocking
Diffstat (limited to 'tests/client/torture_auth.c')
-rw-r--r--tests/client/torture_auth.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/client/torture_auth.c b/tests/client/torture_auth.c
index ceeb2f3..b716693 100644
--- a/tests/client/torture_auth.c
+++ b/tests/client/torture_auth.c
@@ -69,6 +69,37 @@ static void torture_auth_autopubkey(void **state) {
assert_true(rc == SSH_AUTH_SUCCESS);
}
+static void torture_auth_autopubkey_nonblocking(void **state) {
+ ssh_session session = *state;
+ char *user = getenv("TORTURE_USER");
+ int rc;
+
+ if (user == NULL) {
+ print_message("*** Please set the environment variable TORTURE_USER"
+ " to enable this test!!\n");
+ return;
+ }
+
+ rc = ssh_options_set(session, SSH_OPTIONS_USER, user);
+ assert_true(rc == SSH_OK);
+
+ rc = ssh_connect(session);
+ assert_true(rc == SSH_OK);
+
+ rc = ssh_userauth_none(session,NULL);
+ /* This request should return a SSH_REQUEST_DENIED error */
+ if (rc == SSH_ERROR) {
+ assert_true(ssh_get_error_code(session) == SSH_REQUEST_DENIED);
+ }
+ assert_true(ssh_auth_list(session) & SSH_AUTH_METHOD_PUBLICKEY);
+
+ ssh_set_blocking(session, 0);
+ do {
+ rc = ssh_userauth_autopubkey(session, NULL);
+ } while (rc == SSH_AUTH_AGAIN);
+ assert_true(rc == SSH_AUTH_SUCCESS);
+}
+
static void torture_auth_kbdint(void **state) {
ssh_session session = *state;
char *user = getenv("TORTURE_USER");
@@ -258,6 +289,7 @@ int torture_run_tests(void) {
unit_test_setup_teardown(torture_auth_password, setup, teardown),
unit_test_setup_teardown(torture_auth_password_nonblocking, setup, teardown),
unit_test_setup_teardown(torture_auth_autopubkey, setup, teardown),
+ unit_test_setup_teardown(torture_auth_autopubkey_nonblocking, setup, teardown),
unit_test_setup_teardown(torture_auth_agent, setup, teardown),
unit_test_setup_teardown(torture_auth_agent_nonblocking, setup, teardown),
};