mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-09 09:54:25 +09:00
tests: Verify we can read public key from OpenSSH container
Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
committed by
Andreas Schneider
parent
1226de875b
commit
39975fdd6d
@@ -70,6 +70,36 @@ static int teardown_dsa_key(void **state)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void torture_pki_dsa_import_pubkey_file(void **state)
|
||||||
|
{
|
||||||
|
ssh_key pubkey = NULL;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
(void)state;
|
||||||
|
|
||||||
|
/* The key doesn't have the hostname as comment after the key */
|
||||||
|
rc = ssh_pki_import_pubkey_file(LIBSSH_DSA_TESTKEY ".pub", &pubkey);
|
||||||
|
assert_return_code(rc, errno);
|
||||||
|
assert_non_null(pubkey);
|
||||||
|
|
||||||
|
ssh_key_free(pubkey);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void torture_pki_dsa_import_pubkey_from_openssh_privkey(void **state)
|
||||||
|
{
|
||||||
|
ssh_key pubkey = NULL;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
(void)state;
|
||||||
|
|
||||||
|
/* The key doesn't have the hostname as comment after the key */
|
||||||
|
rc = ssh_pki_import_pubkey_file(LIBSSH_DSA_TESTKEY_PASSPHRASE, &pubkey);
|
||||||
|
assert_return_code(rc, errno);
|
||||||
|
assert_non_null(pubkey);
|
||||||
|
|
||||||
|
ssh_key_free(pubkey);
|
||||||
|
}
|
||||||
|
|
||||||
static void torture_pki_dsa_import_privkey_base64(void **state)
|
static void torture_pki_dsa_import_privkey_base64(void **state)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
@@ -542,6 +572,12 @@ int torture_run_tests(void)
|
|||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
struct CMUnitTest tests[] = {
|
struct CMUnitTest tests[] = {
|
||||||
|
cmocka_unit_test_setup_teardown(torture_pki_dsa_import_pubkey_file,
|
||||||
|
setup_dsa_key,
|
||||||
|
teardown_dsa_key),
|
||||||
|
cmocka_unit_test_setup_teardown(torture_pki_dsa_import_pubkey_from_openssh_privkey,
|
||||||
|
setup_openssh_dsa_key,
|
||||||
|
teardown_dsa_key),
|
||||||
cmocka_unit_test_setup_teardown(torture_pki_dsa_import_privkey_base64,
|
cmocka_unit_test_setup_teardown(torture_pki_dsa_import_privkey_base64,
|
||||||
setup_dsa_key,
|
setup_dsa_key,
|
||||||
teardown_dsa_key),
|
teardown_dsa_key),
|
||||||
|
|||||||
@@ -109,6 +109,36 @@ static int teardown(void **state)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void torture_pki_ecdsa_import_pubkey_file(void **state)
|
||||||
|
{
|
||||||
|
ssh_key pubkey = NULL;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
(void)state;
|
||||||
|
|
||||||
|
/* The key doesn't have the hostname as comment after the key */
|
||||||
|
rc = ssh_pki_import_pubkey_file(LIBSSH_ECDSA_TESTKEY ".pub", &pubkey);
|
||||||
|
assert_return_code(rc, errno);
|
||||||
|
assert_non_null(pubkey);
|
||||||
|
|
||||||
|
ssh_key_free(pubkey);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void torture_pki_ecdsa_import_pubkey_from_openssh_privkey(void **state)
|
||||||
|
{
|
||||||
|
ssh_key pubkey = NULL;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
(void)state;
|
||||||
|
|
||||||
|
/* The key doesn't have the hostname as comment after the key */
|
||||||
|
rc = ssh_pki_import_pubkey_file(LIBSSH_ECDSA_TESTKEY_PASSPHRASE, &pubkey);
|
||||||
|
assert_return_code(rc, errno);
|
||||||
|
assert_non_null(pubkey);
|
||||||
|
|
||||||
|
ssh_key_free(pubkey);
|
||||||
|
}
|
||||||
|
|
||||||
static void torture_pki_ecdsa_import_privkey_base64(void **state)
|
static void torture_pki_ecdsa_import_privkey_base64(void **state)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
@@ -496,6 +526,24 @@ static void torture_pki_ecdsa_name521(void **state)
|
|||||||
int torture_run_tests(void) {
|
int torture_run_tests(void) {
|
||||||
int rc;
|
int rc;
|
||||||
struct CMUnitTest tests[] = {
|
struct CMUnitTest tests[] = {
|
||||||
|
cmocka_unit_test_setup_teardown(torture_pki_ecdsa_import_pubkey_file,
|
||||||
|
setup_ecdsa_key_256,
|
||||||
|
teardown),
|
||||||
|
cmocka_unit_test_setup_teardown(torture_pki_ecdsa_import_pubkey_file,
|
||||||
|
setup_ecdsa_key_384,
|
||||||
|
teardown),
|
||||||
|
cmocka_unit_test_setup_teardown(torture_pki_ecdsa_import_pubkey_file,
|
||||||
|
setup_ecdsa_key_521,
|
||||||
|
teardown),
|
||||||
|
cmocka_unit_test_setup_teardown(torture_pki_ecdsa_import_pubkey_from_openssh_privkey,
|
||||||
|
setup_openssh_ecdsa_key_256,
|
||||||
|
teardown),
|
||||||
|
cmocka_unit_test_setup_teardown(torture_pki_ecdsa_import_pubkey_from_openssh_privkey,
|
||||||
|
setup_openssh_ecdsa_key_384,
|
||||||
|
teardown),
|
||||||
|
cmocka_unit_test_setup_teardown(torture_pki_ecdsa_import_pubkey_file,
|
||||||
|
setup_openssh_ecdsa_key_521,
|
||||||
|
teardown),
|
||||||
cmocka_unit_test_setup_teardown(torture_pki_ecdsa_import_privkey_base64,
|
cmocka_unit_test_setup_teardown(torture_pki_ecdsa_import_privkey_base64,
|
||||||
setup_ecdsa_key_256,
|
setup_ecdsa_key_256,
|
||||||
teardown),
|
teardown),
|
||||||
|
|||||||
@@ -50,6 +50,36 @@ static int teardown(void **state) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void torture_pki_ed25519_import_pubkey_file(void **state)
|
||||||
|
{
|
||||||
|
ssh_key pubkey = NULL;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
(void)state;
|
||||||
|
|
||||||
|
/* The key doesn't have the hostname as comment after the key */
|
||||||
|
rc = ssh_pki_import_pubkey_file(LIBSSH_ED25519_TESTKEY ".pub", &pubkey);
|
||||||
|
assert_return_code(rc, errno);
|
||||||
|
assert_non_null(pubkey);
|
||||||
|
|
||||||
|
ssh_key_free(pubkey);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void torture_pki_ed25519_import_pubkey_from_openssh_privkey(void **state)
|
||||||
|
{
|
||||||
|
ssh_key pubkey = NULL;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
(void)state;
|
||||||
|
|
||||||
|
/* The key doesn't have the hostname as comment after the key */
|
||||||
|
rc = ssh_pki_import_pubkey_file(LIBSSH_ED25519_TESTKEY_PASSPHRASE, &pubkey);
|
||||||
|
assert_return_code(rc, errno);
|
||||||
|
assert_non_null(pubkey);
|
||||||
|
|
||||||
|
ssh_key_free(pubkey);
|
||||||
|
}
|
||||||
|
|
||||||
static void torture_pki_ed25519_import_privkey_base64(void **state)
|
static void torture_pki_ed25519_import_privkey_base64(void **state)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
@@ -531,6 +561,12 @@ static void torture_pki_ed25519_pubkey_dup(void **state)
|
|||||||
int torture_run_tests(void) {
|
int torture_run_tests(void) {
|
||||||
int rc;
|
int rc;
|
||||||
const struct CMUnitTest tests[] = {
|
const struct CMUnitTest tests[] = {
|
||||||
|
cmocka_unit_test_setup_teardown(torture_pki_ed25519_import_pubkey_file,
|
||||||
|
setup_ed25519_key,
|
||||||
|
teardown),
|
||||||
|
cmocka_unit_test_setup_teardown(torture_pki_ed25519_import_pubkey_from_openssh_privkey,
|
||||||
|
setup_ed25519_key,
|
||||||
|
teardown),
|
||||||
cmocka_unit_test_setup_teardown(torture_pki_ed25519_import_privkey_base64,
|
cmocka_unit_test_setup_teardown(torture_pki_ed25519_import_privkey_base64,
|
||||||
setup_ed25519_key,
|
setup_ed25519_key,
|
||||||
teardown),
|
teardown),
|
||||||
|
|||||||
@@ -87,6 +87,21 @@ static void torture_pki_rsa_import_pubkey_file(void **state)
|
|||||||
ssh_key_free(pubkey);
|
ssh_key_free(pubkey);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void torture_pki_rsa_import_pubkey_from_openssh_privkey(void **state)
|
||||||
|
{
|
||||||
|
ssh_key pubkey = NULL;
|
||||||
|
int rc;
|
||||||
|
|
||||||
|
(void)state;
|
||||||
|
|
||||||
|
/* The key doesn't have the hostname as comment after the key */
|
||||||
|
rc = ssh_pki_import_pubkey_file(LIBSSH_RSA_TESTKEY_PASSPHRASE, &pubkey);
|
||||||
|
assert_return_code(rc, errno);
|
||||||
|
assert_non_null(pubkey);
|
||||||
|
|
||||||
|
ssh_key_free(pubkey);
|
||||||
|
}
|
||||||
|
|
||||||
static void torture_pki_rsa_import_privkey_base64_NULL_key(void **state)
|
static void torture_pki_rsa_import_privkey_base64_NULL_key(void **state)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
@@ -641,6 +656,9 @@ int torture_run_tests(void) {
|
|||||||
cmocka_unit_test_setup_teardown(torture_pki_rsa_import_pubkey_file,
|
cmocka_unit_test_setup_teardown(torture_pki_rsa_import_pubkey_file,
|
||||||
setup_rsa_key,
|
setup_rsa_key,
|
||||||
teardown),
|
teardown),
|
||||||
|
cmocka_unit_test_setup_teardown(torture_pki_rsa_import_pubkey_from_openssh_privkey,
|
||||||
|
setup_rsa_openssh_key,
|
||||||
|
teardown),
|
||||||
cmocka_unit_test_setup_teardown(torture_pki_rsa_import_privkey_base64_NULL_key,
|
cmocka_unit_test_setup_teardown(torture_pki_rsa_import_privkey_base64_NULL_key,
|
||||||
setup_rsa_key,
|
setup_rsa_key,
|
||||||
teardown),
|
teardown),
|
||||||
|
|||||||
Reference in New Issue
Block a user