mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
WIP: Convert ui,v3ext,verify_extra_test
verify_extra_test still failing :( Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3194)
This commit is contained in:
parent
80b06b0cc0
commit
4afc60605a
@ -171,7 +171,7 @@ IF[{- !$disabled{tests} -}]
|
||||
INCLUDE[crltest]=../include
|
||||
DEPEND[crltest]=../libcrypto
|
||||
|
||||
SOURCE[v3ext]=v3ext.c
|
||||
SOURCE[v3ext]=v3ext.c testutil.c test_main_custom.c
|
||||
INCLUDE[v3ext]=../include
|
||||
DEPEND[v3ext]=../libcrypto
|
||||
|
||||
@ -183,7 +183,7 @@ IF[{- !$disabled{tests} -}]
|
||||
INCLUDE[constant_time_test]=.. ../include
|
||||
DEPEND[constant_time_test]=../libcrypto
|
||||
|
||||
SOURCE[verify_extra_test]=verify_extra_test.c
|
||||
SOURCE[verify_extra_test]=verify_extra_test.c testutil.c test_main_custom.c
|
||||
INCLUDE[verify_extra_test]=../include
|
||||
DEPEND[verify_extra_test]=../libcrypto
|
||||
|
||||
|
@ -59,9 +59,9 @@ static int test_old()
|
||||
char pass[16];
|
||||
int ok = 0;
|
||||
|
||||
if ((ui_method =
|
||||
UI_UTIL_wrap_read_pem_callback(test_pem_password_cb, 0)) == NULL
|
||||
|| (ui = UI_new_method(ui_method)) == NULL)
|
||||
if (!TEST_ptr(ui_method =
|
||||
UI_UTIL_wrap_read_pem_callback( test_pem_password_cb, 0))
|
||||
|| !TEST_ptr(ui = UI_new_method(ui_method)))
|
||||
goto err;
|
||||
|
||||
/* The wrapper passes the UI userdata as the callback userdata param */
|
||||
@ -73,7 +73,7 @@ static int test_old()
|
||||
|
||||
switch (UI_process(ui)) {
|
||||
case -2:
|
||||
BIO_printf(bio_err, "test_old: UI process interrupted or cancelled\n");
|
||||
TEST_info("test_old: UI process interrupted or cancelled");
|
||||
/* fall through */
|
||||
case -1:
|
||||
goto err;
|
||||
@ -81,14 +81,10 @@ static int test_old()
|
||||
break;
|
||||
}
|
||||
|
||||
if (strcmp(pass, defpass) == 0)
|
||||
if (TEST_str_eq(pass, defpass))
|
||||
ok = 1;
|
||||
else
|
||||
BIO_printf(bio_err, "test_old: password failure\n");
|
||||
|
||||
err:
|
||||
if (!ok)
|
||||
ERR_print_errors_fp(stderr);
|
||||
UI_free(ui);
|
||||
UI_destroy_method(ui_method);
|
||||
|
||||
@ -106,15 +102,9 @@ static int test_new_ui()
|
||||
int ok = 0;
|
||||
|
||||
setup_ui_method();
|
||||
if (password_callback(pass, sizeof(pass), 0, &cb_data) > 0
|
||||
&& strcmp(pass, cb_data.password) == 0)
|
||||
if (TEST_int_gt(password_callback(pass, sizeof(pass), 0, &cb_data), 0)
|
||||
&& TEST_str_eq(pass, cb_data.password))
|
||||
ok = 1;
|
||||
else
|
||||
BIO_printf(bio_err, "test_new: password failure\n");
|
||||
|
||||
if (!ok)
|
||||
ERR_print_errors_fp(stderr);
|
||||
|
||||
destroy_ui_method();
|
||||
return ok;
|
||||
}
|
||||
|
42
test/v3ext.c
42
test/v3ext.c
@ -13,30 +13,42 @@
|
||||
#include <openssl/pem.h>
|
||||
#include <openssl/err.h>
|
||||
|
||||
int main(int ac, char **av)
|
||||
#include "test_main_custom.h"
|
||||
#include "testutil.h"
|
||||
|
||||
static const char *infile;
|
||||
|
||||
static int test_pathlen(void)
|
||||
{
|
||||
X509 *x = NULL;
|
||||
BIO *b = NULL;
|
||||
long pathlen;
|
||||
int ret = 1;
|
||||
int ret = 0;
|
||||
|
||||
if (ac != 2) {
|
||||
fprintf(stderr, "Usage error\n");
|
||||
if (!TEST_ptr(b = BIO_new_file(infile, "r"))
|
||||
|| !TEST_ptr(x = PEM_read_bio_X509(b, NULL, NULL, NULL))
|
||||
|| !TEST_int_eq(pathlen = X509_get_pathlen(x), 6))
|
||||
goto end;
|
||||
}
|
||||
b = BIO_new_file(av[1], "r");
|
||||
if (b == NULL)
|
||||
goto end;
|
||||
x = PEM_read_bio_X509(b, NULL, NULL, NULL);
|
||||
if (x == NULL)
|
||||
goto end;
|
||||
pathlen = X509_get_pathlen(x);
|
||||
if (pathlen == 6)
|
||||
ret = 0;
|
||||
|
||||
ret = 1;
|
||||
|
||||
end:
|
||||
ERR_print_errors_fp(stderr);
|
||||
BIO_free(b);
|
||||
X509_free(x);
|
||||
return ret;
|
||||
}
|
||||
|
||||
int test_main(int argc, char *argv[])
|
||||
{
|
||||
int ret;
|
||||
|
||||
if (argc != 2) {
|
||||
TEST_error("Usage error");
|
||||
return 0;
|
||||
}
|
||||
infile = argv[1];
|
||||
|
||||
ADD_TEST(test_pathlen);
|
||||
ret = run_tests(argv[0]);
|
||||
return ret;
|
||||
}
|
||||
|
@ -13,6 +13,8 @@
|
||||
#include <openssl/x509.h>
|
||||
#include <openssl/pem.h>
|
||||
#include <openssl/err.h>
|
||||
#include "testutil.h"
|
||||
#include "test_main_custom.h"
|
||||
|
||||
static STACK_OF(X509) *load_certs_from_file(const char *filename)
|
||||
{
|
||||
@ -132,31 +134,17 @@ static int test_alt_chains_cert_forgery(const char *roots_f,
|
||||
BIO_free(bio);
|
||||
sk_X509_pop_free(untrusted, X509_free);
|
||||
X509_STORE_free(store);
|
||||
if (ret != 1)
|
||||
ERR_print_errors_fp(stderr);
|
||||
return ret;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
int test_main(int argc, char **argv)
|
||||
{
|
||||
CRYPTO_set_mem_debug(1);
|
||||
CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
|
||||
|
||||
if (argc != 4) {
|
||||
fprintf(stderr, "usage: verify_extra_test roots.pem untrusted.pem bad.pem\n");
|
||||
return 1;
|
||||
TEST_error("usage: verify_extra_test roots.pem untrusted.pem bad.pem\n");
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
if (!test_alt_chains_cert_forgery(argv[1], argv[2], argv[3])) {
|
||||
fprintf(stderr, "Test alt chains cert forgery failed\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
#ifndef OPENSSL_NO_CRYPTO_MDEBUG
|
||||
if (CRYPTO_mem_leaks_fp(stderr) <= 0)
|
||||
return 1;
|
||||
#endif
|
||||
|
||||
printf("PASS\n");
|
||||
return 0;
|
||||
if (!TEST_true(test_alt_chains_cert_forgery(argv[1], argv[2], argv[3])))
|
||||
return EXIT_FAILURE;
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user