1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-12-24 19:37:48 +03:00

tests: Reproducer for graceful failure on ignored Match arguments

https://gitlab.com/libssh/libssh-mirror/-/issues/291#note_2376323499
Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Jakub Jelen
2025-03-04 13:55:04 +01:00
parent f7bdd779d6
commit 3a52bf1679

View File

@@ -1017,6 +1017,36 @@ static void torture_config_match(void **state,
}
torture_reset_config(session);
_parse_config(session, file, string, SSH_ERROR);
/* Unknown argument to Match keyword */
config = "Match tagged tag_name\n"
"\tHostName never-matched.com\n"
"Match all\n"
"\tHostName config-host.com\n";
if (file != NULL) {
torture_write_file(file, config);
} else {
string = config;
}
torture_reset_config(session);
ssh_options_set(session, SSH_OPTIONS_HOST, "example.com");
_parse_config(session, file, string, SSH_OK);
assert_string_equal(session->opts.host, "config-host.com");
/* Missing argument to Match keyword */
config = "Match\n"
"\tHostName never-matched.com\n"
"Match all\n"
"\tHostName config-host.com\n";
if (file != NULL) {
torture_write_file(file, config);
} else {
string = config;
}
torture_reset_config(session);
ssh_options_set(session, SSH_OPTIONS_HOST, "example.com");
_parse_config(session, file, string, SSH_OK);
assert_string_equal(session->opts.host, "config-host.com");
}
/**