mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-12-11 03:42:35 +03:00
test: add tests for sftp extension "home-directory"
Signed-off-by: Debanga Sarma <deb737@proton.me> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
committed by
Debanga Sarma
parent
b500c2f0cf
commit
a9c998c080
@@ -57,6 +57,7 @@ if (WITH_SFTP)
|
|||||||
torture_sftp_rename
|
torture_sftp_rename
|
||||||
torture_sftp_expand_path
|
torture_sftp_expand_path
|
||||||
torture_sftp_aio
|
torture_sftp_aio
|
||||||
|
torture_sftp_home_directory
|
||||||
${SFTP_BENCHMARK_TESTS})
|
${SFTP_BENCHMARK_TESTS})
|
||||||
endif (WITH_SFTP)
|
endif (WITH_SFTP)
|
||||||
|
|
||||||
|
|||||||
133
tests/client/torture_sftp_home_directory.c
Normal file
133
tests/client/torture_sftp_home_directory.c
Normal file
@@ -0,0 +1,133 @@
|
|||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
#define LIBSSH_STATIC
|
||||||
|
|
||||||
|
#include "sftp.c"
|
||||||
|
#include "torture.h"
|
||||||
|
|
||||||
|
#include <errno.h>
|
||||||
|
#include <pwd.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
static int
|
||||||
|
sshd_setup(void **state)
|
||||||
|
{
|
||||||
|
torture_setup_sshd_server(state, false);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
sshd_teardown(void **state)
|
||||||
|
{
|
||||||
|
torture_teardown_sshd_server(state);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
session_setup(void **state)
|
||||||
|
{
|
||||||
|
struct torture_state *s = *state;
|
||||||
|
struct passwd *pwd = NULL;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
pwd = getpwnam("bob");
|
||||||
|
assert_non_null(pwd);
|
||||||
|
|
||||||
|
rc = setuid(pwd->pw_uid);
|
||||||
|
assert_return_code(rc, errno);
|
||||||
|
|
||||||
|
s->ssh.session = torture_ssh_session(s,
|
||||||
|
TORTURE_SSH_SERVER,
|
||||||
|
NULL,
|
||||||
|
TORTURE_SSH_USER_ALICE,
|
||||||
|
NULL);
|
||||||
|
assert_non_null(s->ssh.session);
|
||||||
|
|
||||||
|
s->ssh.tsftp = torture_sftp_session(s->ssh.session);
|
||||||
|
assert_non_null(s->ssh.tsftp);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
session_teardown(void **state)
|
||||||
|
{
|
||||||
|
struct torture_state *s = *state;
|
||||||
|
|
||||||
|
torture_rmdirs(s->ssh.tsftp->testdir);
|
||||||
|
torture_sftp_close(s->ssh.tsftp);
|
||||||
|
ssh_disconnect(s->ssh.session);
|
||||||
|
ssh_free(s->ssh.session);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
torture_sftp_home_directory(void **state)
|
||||||
|
{
|
||||||
|
struct torture_state *s = *state;
|
||||||
|
struct torture_sftp *t = s->ssh.tsftp;
|
||||||
|
struct passwd *pwd = NULL;
|
||||||
|
char *home_path = NULL;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
rc = sftp_extension_supported(t->sftp, "home-directory", "1");
|
||||||
|
if (!rc) {
|
||||||
|
skip();
|
||||||
|
}
|
||||||
|
|
||||||
|
pwd = getpwnam(TORTURE_SSH_USER_ALICE);
|
||||||
|
assert_non_null(pwd);
|
||||||
|
|
||||||
|
/* testing for NULL sftp session */
|
||||||
|
home_path = sftp_home_directory(NULL, NULL);
|
||||||
|
assert_null(home_path);
|
||||||
|
|
||||||
|
/* testing for ~ */
|
||||||
|
/*
|
||||||
|
home_path = sftp_home_directory(t->sftp, NULL);
|
||||||
|
assert_non_null(home_path);
|
||||||
|
assert_string_equal(home_path, pwd->pw_dir);
|
||||||
|
SSH_STRING_FREE_CHAR(home_path);
|
||||||
|
|
||||||
|
home_path = sftp_home_directory(t->sftp, "");
|
||||||
|
assert_non_null(home_path);
|
||||||
|
assert_string_equal(home_path, pwd->pw_dir);
|
||||||
|
SSH_STRING_FREE_CHAR(home_path);
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
OpenSSH code handling this extension does not handle empty string for
|
||||||
|
username. getpwnam() also does not handle empty string.
|
||||||
|
PR in OpenSSH for fix:
|
||||||
|
https://github.com/openssh/openssh-portable/pull/477/
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* testing for ~user */
|
||||||
|
home_path = sftp_home_directory(t->sftp, pwd->pw_name);
|
||||||
|
fprintf(stderr,
|
||||||
|
"sftp error: %d, ssh error: %s\n",
|
||||||
|
sftp_get_error(t->sftp),
|
||||||
|
ssh_get_error(t->sftp->session));
|
||||||
|
assert_non_null(home_path);
|
||||||
|
assert_string_equal(home_path, pwd->pw_dir);
|
||||||
|
SSH_STRING_FREE_CHAR(home_path);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
torture_run_tests(void)
|
||||||
|
{
|
||||||
|
int rc;
|
||||||
|
struct CMUnitTest tests[] = {
|
||||||
|
cmocka_unit_test_setup_teardown(torture_sftp_home_directory,
|
||||||
|
session_setup,
|
||||||
|
session_teardown)};
|
||||||
|
|
||||||
|
ssh_init();
|
||||||
|
|
||||||
|
torture_filter_tests(tests);
|
||||||
|
rc = cmocka_run_group_tests(tests, sshd_setup, sshd_teardown);
|
||||||
|
ssh_finalize();
|
||||||
|
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user