summaryrefslogtreecommitdiffstats
path: root/test/endecode_test.c
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-07-21 17:45:32 +0200
committerTodd Short <todd.short@me.com>2023-08-04 10:09:44 -0400
commit4c50610bdadbcf7aa6bbd968df67b8874234677b (patch)
tree44c9ba42d0ed7489848c99eb8dd9fa7e58b0f931 /test/endecode_test.c
parent2acb0d363c0032b5b97c4f6596609f40bd7d842f (diff)
endecode_test.c: Add tests for decoding with 0 selection
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Todd Short <todd.short@me.com> (Merged from https://github.com/openssl/openssl/pull/21519)
Diffstat (limited to 'test/endecode_test.c')
-rw-r--r--test/endecode_test.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/test/endecode_test.c b/test/endecode_test.c
index 14648287eb..b334d427eb 100644
--- a/test/endecode_test.c
+++ b/test/endecode_test.c
@@ -162,6 +162,7 @@ static int test_encode_decode(const char *file, const int line,
void *encoded = NULL;
long encoded_len = 0;
EVP_PKEY *pkey2 = NULL;
+ EVP_PKEY *pkey3 = NULL;
void *encoded2 = NULL;
long encoded2_len = 0;
int ok = 0;
@@ -189,15 +190,25 @@ static int test_encode_decode(const char *file, const int line,
output_type, output_structure,
(flags & FLAG_DECODE_WITH_TYPE ? type : NULL),
selection, pass))
+ || ((output_structure == NULL
+ || strcmp(output_structure, "type-specific") != 0)
+ && !TEST_true(decode_cb(file, line, (void **)&pkey3, encoded, encoded_len,
+ output_type, output_structure,
+ (flags & FLAG_DECODE_WITH_TYPE ? type : NULL),
+ 0, pass)))
|| !TEST_true(encode_cb(file, line, &encoded2, &encoded2_len, pkey2, selection,
output_type, output_structure, pass, pcipher)))
goto end;
if (selection == OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) {
- if (!TEST_int_eq(EVP_PKEY_parameters_eq(pkey, pkey2), 1))
+ if (!TEST_int_eq(EVP_PKEY_parameters_eq(pkey, pkey2), 1)
+ || (pkey3 != NULL
+ && !TEST_int_eq(EVP_PKEY_parameters_eq(pkey, pkey3), 1)))
goto end;
} else {
- if (!TEST_int_eq(EVP_PKEY_eq(pkey, pkey2), 1))
+ if (!TEST_int_eq(EVP_PKEY_eq(pkey, pkey2), 1)
+ || (pkey3 != NULL
+ && !TEST_int_eq(EVP_PKEY_eq(pkey, pkey3), 1)))
goto end;
}
@@ -222,6 +233,7 @@ static int test_encode_decode(const char *file, const int line,
OPENSSL_free(encoded);
OPENSSL_free(encoded2);
EVP_PKEY_free(pkey2);
+ EVP_PKEY_free(pkey3);
return ok;
}