aboutsummaryrefslogtreecommitdiff
path: root/tests/unittests/torture_proxycommand.c
blob: 8bc601c35d3a0a09193825883fff350dac39ab80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#define LIBSSH_STATIC

#include "torture.h"
#include <libssh/libssh.h>
#include "libssh/priv.h"
ssh_session session;

static void setup(void) {
    session = ssh_new();
}

static void teardown(void) {
    ssh_free(session);
}

START_TEST (torture_options_set_proxycommand)
{
    int rc;

    rc = ssh_options_set(session, SSH_OPTIONS_HOST, "localhost");
    ck_assert(rc == 0);

    rc = ssh_options_set(session, SSH_OPTIONS_PROXYCOMMAND, "nc localhost 22");
    ck_assert(rc == 0);
    rc = ssh_connect(session);
    ck_assert_msg(rc== SSH_OK,ssh_get_error(session));
}
END_TEST

START_TEST (torture_options_set_proxycommand_notexist)
{
    int rc;

    rc = ssh_options_set(session, SSH_OPTIONS_HOST, "localhost");
    ck_assert(rc == 0);

    rc = ssh_options_set(session, SSH_OPTIONS_PROXYCOMMAND, "this_command_does_not_exist");
    ck_assert(rc == SSH_OK);
    rc = ssh_connect(session);
    ck_assert_msg(rc== SSH_ERROR);
}
END_TEST

static Suite *torture_make_suite(void) {
  Suite *s = suite_create("libssh_proxycommand");

  torture_create_case_fixture(s, "torture_options_set_proxycommand",
          torture_options_set_proxycommand, setup, teardown);
  torture_create_case_fixture(s, "torture_options_set_proxycommand_notexist",
          torture_options_set_proxycommand_notexist, setup, teardown);


  return s;
}

int main(int argc, char **argv) {
  Suite *s = NULL;
  SRunner *sr = NULL;
  struct argument_s arguments;
  int nf;

  ZERO_STRUCT(arguments);

  torture_cmdline_parse(argc, argv, &arguments);

  s = torture_make_suite();

  sr = srunner_create(s);
  if (arguments.nofork) {
    srunner_set_fork_status(sr, CK_NOFORK);
  }
  srunner_run_all(sr, CK_VERBOSE);
  nf = srunner_ntests_failed(sr);
  srunner_free(sr);

  return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}