summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2014-01-06 16:48:58 +0100
committerAris Adamantiadis <aris@0xbadc0de.be>2014-01-06 16:52:44 +0100
commitd771dafe043cb7738c77be17f8772ff8c0f9363f (patch)
tree1211a3c9c502144d1b03584baa9ffb632a2c113e /tests
parent09af855b6fe256e196102e6494178cc86dcff4c3 (diff)
downloadlibssh-d771dafe043cb7738c77be17f8772ff8c0f9363f.tar.gz
libssh-d771dafe043cb7738c77be17f8772ff8c0f9363f.tar.xz
libssh-d771dafe043cb7738c77be17f8772ff8c0f9363f.zip
test: test case for async auth_none
This test currently fails
Diffstat (limited to 'tests')
-rw-r--r--tests/client/torture_auth.c59
1 files changed, 59 insertions, 0 deletions
diff --git a/tests/client/torture_auth.c b/tests/client/torture_auth.c
index f747f8e4..e3eddad7 100644
--- a/tests/client/torture_auth.c
+++ b/tests/client/torture_auth.c
@@ -362,6 +362,63 @@ static void torture_auth_agent_nonblocking(void **state) {
assert_true(rc == SSH_AUTH_SUCCESS);
}
+
+static void torture_auth_none(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);
+
+ assert_true(rc == SSH_ERROR);
+ /* This request should return a SSH_REQUEST_DENIED error */
+ if (rc == SSH_ERROR) {
+ assert_true(ssh_get_error_code(session) == SSH_REQUEST_DENIED);
+ }
+}
+
+static void torture_auth_none_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);
+
+ /* This request should return a SSH_REQUEST_DENIED error */
+ if (rc == SSH_ERROR) {
+ assert_true(ssh_get_error_code(session) == SSH_REQUEST_DENIED);
+ }
+
+ ssh_set_blocking(session,0);
+
+ do {
+ rc = ssh_userauth_none(session,NULL);
+ } while (rc == SSH_AUTH_AGAIN);
+ assert_true(rc == SSH_AUTH_ERROR);
+ assert_true(ssh_get_error_code(session) == SSH_REQUEST_DENIED);
+
+}
+
int torture_run_tests(void) {
int rc;
const UnitTest tests[] = {
@@ -373,6 +430,8 @@ int torture_run_tests(void) {
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),
+ unit_test_setup_teardown(torture_auth_none, setup, teardown),
+ unit_test_setup_teardown(torture_auth_none_nonblocking, setup, teardown),
};
ssh_init();