2010-06-25 18:19:19 +04:00
|
|
|
#define LIBSSH_STATIC
|
|
|
|
|
|
|
|
#include "torture.h"
|
|
|
|
#include <libssh/priv.h>
|
|
|
|
#include <libssh/callbacks.h>
|
|
|
|
|
|
|
|
static int myauthcallback (const char *prompt, char *buf, size_t len,
|
2010-12-28 16:04:44 +03:00
|
|
|
int echo, int verify, void *userdata) {
|
|
|
|
(void) prompt;
|
|
|
|
(void) buf;
|
|
|
|
(void) len;
|
|
|
|
(void) echo;
|
|
|
|
(void) verify;
|
|
|
|
(void) userdata;
|
|
|
|
return 0;
|
2010-06-25 18:19:19 +04:00
|
|
|
}
|
|
|
|
|
2015-09-07 11:39:51 +03:00
|
|
|
static int setup(void **state)
|
|
|
|
{
|
2010-12-28 16:04:44 +03:00
|
|
|
struct ssh_callbacks_struct *cb;
|
2010-06-25 18:19:19 +04:00
|
|
|
|
2010-12-28 16:04:44 +03:00
|
|
|
cb = malloc(sizeof(struct ssh_callbacks_struct));
|
|
|
|
assert_false(cb == NULL);
|
2011-01-01 21:13:29 +03:00
|
|
|
ZERO_STRUCTP(cb);
|
2010-06-25 18:19:19 +04:00
|
|
|
|
2010-12-28 16:04:44 +03:00
|
|
|
cb->userdata = (void *) 0x0badc0de;
|
|
|
|
cb->auth_function = myauthcallback;
|
2010-06-25 18:19:19 +04:00
|
|
|
|
2010-12-28 16:04:44 +03:00
|
|
|
ssh_callbacks_init(cb);
|
|
|
|
*state = cb;
|
2015-09-07 11:39:51 +03:00
|
|
|
|
|
|
|
return 0;
|
2010-06-25 18:19:19 +04:00
|
|
|
}
|
|
|
|
|
2015-09-07 11:39:51 +03:00
|
|
|
static int teardown(void **state)
|
|
|
|
{
|
2010-12-28 16:04:44 +03:00
|
|
|
free(*state);
|
2015-09-07 11:39:51 +03:00
|
|
|
|
|
|
|
return 0;
|
2010-06-25 18:19:19 +04:00
|
|
|
}
|
2010-12-28 16:04:44 +03:00
|
|
|
|
|
|
|
static void torture_callbacks_size(void **state) {
|
|
|
|
struct ssh_callbacks_struct *cb = *state;;
|
|
|
|
|
|
|
|
assert_int_not_equal(cb->size, 0);
|
2010-06-25 18:19:19 +04:00
|
|
|
}
|
|
|
|
|
2010-12-28 16:04:44 +03:00
|
|
|
static void torture_callbacks_exists(void **state) {
|
|
|
|
struct ssh_callbacks_struct *cb = *state;
|
2010-06-25 18:19:19 +04:00
|
|
|
|
2010-12-28 16:04:44 +03:00
|
|
|
assert_int_not_equal(ssh_callbacks_exists(cb, auth_function), 0);
|
|
|
|
assert_int_equal(ssh_callbacks_exists(cb, log_function), 0);
|
2010-06-25 18:19:19 +04:00
|
|
|
|
2010-12-28 16:04:44 +03:00
|
|
|
/*
|
|
|
|
* We redefine size so auth_function is outside the range of
|
|
|
|
* callbacks->size.
|
|
|
|
*/
|
|
|
|
cb->size = (unsigned char *) &cb->auth_function - (unsigned char *) cb;
|
|
|
|
assert_int_equal(ssh_callbacks_exists(cb, auth_function), 0);
|
|
|
|
|
|
|
|
/* Now make it one pointer bigger so we spill over the auth_function slot */
|
|
|
|
cb->size += sizeof(void *);
|
|
|
|
assert_int_not_equal(ssh_callbacks_exists(cb, auth_function), 0);
|
2010-06-25 18:19:19 +04:00
|
|
|
}
|
|
|
|
|
2014-06-10 15:52:20 +04:00
|
|
|
struct test_mock_state {
|
|
|
|
int executed;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void test_mock_ssh_logging_callback(int priority,
|
|
|
|
const char *function,
|
|
|
|
const char *buffer,
|
|
|
|
void *userdata)
|
|
|
|
{
|
|
|
|
struct test_mock_state *t = (struct test_mock_state *)userdata;
|
|
|
|
|
|
|
|
check_expected(priority);
|
|
|
|
check_expected(function);
|
|
|
|
check_expected(buffer);
|
|
|
|
|
|
|
|
t->executed++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void torture_log_callback(void **state)
|
|
|
|
{
|
|
|
|
struct test_mock_state t = {
|
|
|
|
.executed = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
(void)state; /* unused */
|
|
|
|
|
|
|
|
ssh_set_log_callback(test_mock_ssh_logging_callback);
|
|
|
|
ssh_set_log_userdata(&t);
|
|
|
|
ssh_set_log_level(1);
|
|
|
|
|
|
|
|
expect_value(test_mock_ssh_logging_callback, priority, 1);
|
|
|
|
expect_string(test_mock_ssh_logging_callback, function, "torture_log_callback");
|
|
|
|
expect_string(test_mock_ssh_logging_callback, buffer, "torture_log_callback: test");
|
|
|
|
|
|
|
|
SSH_LOG(SSH_LOG_WARN, "test");
|
|
|
|
|
|
|
|
assert_int_equal(t.executed, 1);
|
|
|
|
}
|
|
|
|
|
2010-12-28 16:04:44 +03:00
|
|
|
int torture_run_tests(void) {
|
2011-01-02 19:25:51 +03:00
|
|
|
int rc;
|
2015-09-07 11:39:51 +03:00
|
|
|
struct CMUnitTest tests[] = {
|
|
|
|
cmocka_unit_test_setup_teardown(torture_callbacks_size, setup, teardown),
|
|
|
|
cmocka_unit_test_setup_teardown(torture_callbacks_exists, setup, teardown),
|
|
|
|
cmocka_unit_test(torture_log_callback),
|
2010-12-28 16:04:44 +03:00
|
|
|
};
|
|
|
|
|
2011-01-02 19:25:51 +03:00
|
|
|
ssh_init();
|
2014-09-02 11:07:17 +04:00
|
|
|
torture_filter_tests(tests);
|
2015-09-07 11:39:51 +03:00
|
|
|
rc = cmocka_run_group_tests(tests, NULL, NULL);
|
2011-01-02 19:25:51 +03:00
|
|
|
ssh_finalize();
|
|
|
|
return rc;
|
2010-12-28 16:04:44 +03:00
|
|
|
}
|