mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
Add a test for X509_load_cert_file()
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22885)
This commit is contained in:
parent
20c680de9c
commit
d6961af1ac
@ -63,7 +63,7 @@ IF[{- !$disabled{tests} -}]
|
||||
provfetchtest prov_config_test rand_test ca_internals_test \
|
||||
bio_tfo_test membio_test bio_dgram_test list_test fips_version_test \
|
||||
x509_test hpke_test pairwise_fail_test nodefltctxtest \
|
||||
evp_xof_test
|
||||
evp_xof_test x509_load_cert_file_test
|
||||
|
||||
IF[{- !$disabled{'rpk'} -}]
|
||||
PROGRAMS{noinst}=rpktest
|
||||
@ -595,6 +595,10 @@ IF[{- !$disabled{tests} -}]
|
||||
INCLUDE[x509_dup_cert_test]=../include ../apps/include
|
||||
DEPEND[x509_dup_cert_test]=../libcrypto libtestutil.a
|
||||
|
||||
SOURCE[x509_load_cert_file_test]=x509_load_cert_file_test.c
|
||||
INCLUDE[x509_load_cert_file_test]=../include ../apps/include
|
||||
DEPEND[x509_load_cert_file_test]=../libcrypto libtestutil.a
|
||||
|
||||
SOURCE[x509_check_cert_pkey_test]=x509_check_cert_pkey_test.c
|
||||
INCLUDE[x509_check_cert_pkey_test]=../include ../apps/include
|
||||
DEPEND[x509_check_cert_pkey_test]=../libcrypto libtestutil.a
|
||||
|
15
test/recipes/60-test_x509_load_cert_file.t
Normal file
15
test/recipes/60-test_x509_load_cert_file.t
Normal file
@ -0,0 +1,15 @@
|
||||
#! /usr/bin/env perl
|
||||
#
|
||||
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
||||
# this file except in compliance with the License. You can obtain a copy
|
||||
# in the file LICENSE in the source distribution or at
|
||||
# https://www.openssl.org/source/license.html
|
||||
|
||||
|
||||
use OpenSSL::Test qw/:DEFAULT srctop_file/;
|
||||
|
||||
setup("test_load_cert_file");
|
||||
|
||||
plan tests => 1;
|
||||
|
||||
ok(run(test(["x509_load_cert_file_test", srctop_file("test", "certs", "leaf-chain.pem")])));
|
50
test/x509_load_cert_file_test.c
Normal file
50
test/x509_load_cert_file_test.c
Normal file
@ -0,0 +1,50 @@
|
||||
/*
|
||||
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
||||
* this file except in compliance with the License. You can obtain a copy
|
||||
* in the file LICENSE in the source distribution or at
|
||||
* https://www.openssl.org/source/license.html
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/x509_vfy.h>
|
||||
|
||||
#include "testutil.h"
|
||||
|
||||
static const char *chain;
|
||||
|
||||
static int test_load_cert_file(void)
|
||||
{
|
||||
int ret = 0;
|
||||
X509_STORE *store = NULL;
|
||||
X509_LOOKUP *lookup = NULL;
|
||||
STACK_OF(X509) *certs = NULL;
|
||||
|
||||
if (TEST_ptr(store = X509_STORE_new())
|
||||
&& TEST_ptr(lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file()))
|
||||
&& TEST_true(X509_load_cert_file(lookup, chain, X509_FILETYPE_PEM))
|
||||
&& TEST_ptr(certs = X509_STORE_get1_all_certs(store))
|
||||
&& TEST_int_eq(sk_X509_num(certs), 4))
|
||||
ret = 1;
|
||||
|
||||
OSSL_STACK_OF_X509_free(certs);
|
||||
X509_STORE_free(store);
|
||||
return ret;
|
||||
}
|
||||
|
||||
OPT_TEST_DECLARE_USAGE("cert.pem...\n")
|
||||
|
||||
int setup_tests(void)
|
||||
{
|
||||
if (!test_skip_common_options()) {
|
||||
TEST_error("Error parsing test options\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
chain = test_get_argument(0);
|
||||
if (chain == NULL)
|
||||
return 0;
|
||||
|
||||
ADD_TEST(test_load_cert_file);
|
||||
return 1;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user