1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-31 00:03:07 +03:00

tests: Verify ProxyCommand works with ssh

Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Jakub Jelen
2018-12-03 16:45:25 +01:00
committed by Andreas Schneider
parent 055bf830db
commit 9b1852f728

View File

@ -93,6 +93,28 @@ static void torture_options_set_proxycommand_notexist(void **state) {
assert_ssh_return_code_equal(session, rc, SSH_ERROR);
}
static void torture_options_set_proxycommand_ssh(void **state)
{
struct torture_state *s = *state;
ssh_session session = s->ssh.session;
const char *address = torture_server_address(AF_INET);
char command[255] = {0};
int rc;
socket_t fd;
rc = snprintf(command, sizeof(command), "ssh -W [%%h]:%%p alice@%s", address);
assert_true((size_t)rc < sizeof(command));
rc = ssh_options_set(session, SSH_OPTIONS_PROXYCOMMAND, command);
assert_int_equal(rc, 0);
rc = ssh_connect(session);
assert_ssh_return_code(session, rc);
fd = ssh_get_fd(session);
assert_true(fd != SSH_INVALID_SOCKET);
rc = fcntl(fd, F_GETFL);
assert_int_equal(rc & O_RDWR, O_RDWR);
}
int torture_run_tests(void) {
int rc;
struct CMUnitTest tests[] = {
@ -102,6 +124,9 @@ int torture_run_tests(void) {
cmocka_unit_test_setup_teardown(torture_options_set_proxycommand_notexist,
session_setup,
session_teardown),
cmocka_unit_test_setup_teardown(torture_options_set_proxycommand_ssh,
session_setup,
session_teardown),
};