aboutsummaryrefslogtreecommitdiff
path: root/tests/unittests/torture_knownhosts.c
blob: 3fd93abc043c8aaee69f45b9db7d981b744a1774 (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
79
80
81
82
83
84
85
86
87
/*
 * This file is part of the SSH Library
 *
 * Copyright (c) 2010 by Aris Adamantiadis
 *
 * The SSH Library is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; either version 2.1 of the License, or (at your
 * option) any later version.
 *
 * The SSH Library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with the SSH Library; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 * MA 02111-1307, USA.
 */

#define LIBSSH_STATIC

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

#define KNOWNHOSTFILES "libssh_torture_knownhosts"

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

static void teardown(void) {
    ssh_free(session);
    unlink(KNOWNHOSTFILES);
    ssh_finalize();
}

START_TEST (torture_knownhosts_port)
{
  int rc;
  char buffer[200];
  FILE *file;
  /* Connect to localhost:22, force the port to 1234 and then write
   * the known hosts file. Then check that the entry written is
   * [localhost]:1234
   */
  ssh_options_set(session,SSH_OPTIONS_HOST,"localhost");
  ssh_options_set(session,SSH_OPTIONS_KNOWNHOSTS,KNOWNHOSTFILES);
  rc=ssh_connect(session);
  ck_assert_msg(rc==SSH_OK,ssh_get_error(session));
  session->port=1234;
  rc=ssh_write_knownhost(session);
  ck_assert_msg(rc==SSH_OK,ssh_get_error(session));
  ssh_disconnect(session);
  ssh_free(session);
  file=fopen(KNOWNHOSTFILES,"r");
  ck_assert(file != NULL);
  fgets(buffer,sizeof(buffer),file);
  buffer[sizeof(buffer)-1]='\0';
  ck_assert(strstr(buffer,"[localhost]:1234 ") != NULL);
  fclose(file);

  /* now, connect back to the ssh server and verify the known host line */
  session=ssh_new();
  ssh_options_set(session,SSH_OPTIONS_HOST,"localhost");
  ssh_options_set(session,SSH_OPTIONS_KNOWNHOSTS,KNOWNHOSTFILES);
  rc=ssh_connect(session);
  ck_assert_msg(rc==SSH_OK,ssh_get_error(session));
  session->port=1234;
  rc=ssh_is_server_known(session);
  ck_assert_msg(rc==SSH_SERVER_KNOWN_OK,ssh_get_error(session));
  ssh_disconnect(session);
}
END_TEST

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

  torture_create_case_fixture(s, "torture_knownhosts_port",
          torture_knownhosts_port, setup, teardown);
  return s;
}