Skip to content

Commit c8e3a4c

Browse files
committed
[test][sslapitest] Add test for pluggable KEM group
Reviewed-by: Matt Caswell <[email protected]> (Merged from #13018)
1 parent 32fea07 commit c8e3a4c

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

test/sslapitest.c

+7-6
Original file line numberDiff line numberDiff line change
@@ -7935,14 +7935,15 @@ static int test_sigalgs_available(int idx)
79357935
#endif /* OPENSSL_NO_EC */
79367936

79377937
#ifndef OPENSSL_NO_TLS1_3
7938-
static int test_pluggable_group(void)
7938+
static int test_pluggable_group(int idx)
79397939
{
79407940
SSL_CTX *cctx = NULL, *sctx = NULL;
79417941
SSL *clientssl = NULL, *serverssl = NULL;
79427942
int testresult = 0;
79437943
OSSL_PROVIDER *tlsprov = OSSL_PROVIDER_load(libctx, "tls-provider");
79447944
/* Check that we are not impacted by a provider without any groups */
79457945
OSSL_PROVIDER *legacyprov = OSSL_PROVIDER_load(libctx, "legacy");
7946+
const char *group_name = idx == 0 ? "xorgroup" : "xorkemgroup";
79467947

79477948
if (!TEST_ptr(tlsprov) || !TEST_ptr(legacyprov))
79487949
goto end;
@@ -7956,8 +7957,8 @@ static int test_pluggable_group(void)
79567957
NULL, NULL)))
79577958
goto end;
79587959

7959-
if (!TEST_true(SSL_set1_groups_list(serverssl, "xorgroup"))
7960-
|| !TEST_true(SSL_set1_groups_list(clientssl, "xorgroup")))
7960+
if (!TEST_true(SSL_set1_groups_list(serverssl, group_name))
7961+
|| !TEST_true(SSL_set1_groups_list(clientssl, group_name)))
79617962
goto end;
79627963

79637964
if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE)))
@@ -8136,10 +8137,10 @@ int setup_tests(void)
81368137
goto err;
81378138

81388139
#if !defined(OPENSSL_NO_KTLS) && !defined(OPENSSL_NO_SOCK)
8139-
#if !defined(OPENSSL_NO_TLS1_2) || !defined(OPENSSL_NO_TLS1_3)
8140+
# if !defined(OPENSSL_NO_TLS1_2) || !defined(OPENSSL_NO_TLS1_3)
81408141
ADD_ALL_TESTS(test_ktls, 32);
81418142
ADD_ALL_TESTS(test_ktls_sendfile_anytls, 6);
8142-
#endif
8143+
# endif
81438144
#endif
81448145
ADD_TEST(test_large_message_tls);
81458146
ADD_TEST(test_large_message_tls_read_ahead);
@@ -8247,7 +8248,7 @@ int setup_tests(void)
82478248
ADD_ALL_TESTS(test_sigalgs_available, 6);
82488249
#endif
82498250
#ifndef OPENSSL_NO_TLS1_3
8250-
ADD_TEST(test_pluggable_group);
8251+
ADD_ALL_TESTS(test_pluggable_group, 2);
82518252
#endif
82528253
#ifndef OPENSSL_NO_TLS1_2
82538254
ADD_TEST(test_ssl_dup);

0 commit comments

Comments
 (0)