Skip to content

Commit 3b9f4be

Browse files
valeriosettigilles-peskine-arm
authored andcommitted
test_suite_pkwrite: extend coverage of wrong output buffer sizes in pk_write_check_common()
Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
1 parent 5f1c8a7 commit 3b9f4be

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

tests/suites/test_suite_pkwrite.function

+9-7
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ static void pk_write_check_common(char *key_file, int is_public_key, int is_der)
7373
unsigned char *buf = NULL;
7474
unsigned char *check_buf = NULL;
7575
unsigned char *start_buf;
76-
size_t buf_len, check_buf_len, wrong_buf_len = 1;
76+
size_t buf_len, check_buf_len;
7777
int expected_result;
7878
#if defined(MBEDTLS_USE_PSA_CRYPTO)
7979
mbedtls_svc_key_id_t opaque_id = MBEDTLS_SVC_KEY_ID_INIT;
@@ -118,10 +118,10 @@ static void pk_write_check_common(char *key_file, int is_public_key, int is_der)
118118
}
119119
/* Intentionally pass a wrong size for the provided output buffer and check
120120
* that the writing functions fails as expected. */
121-
TEST_EQUAL(pk_write_any_key(&key, &start_buf, &wrong_buf_len, is_public_key,
122-
is_der), expected_result);
123-
TEST_EQUAL(pk_write_any_key(&key, &start_buf, &buf_len, is_public_key,
124-
is_der), 0);
121+
for (size_t i = 1; i < buf_len; i++) {
122+
TEST_EQUAL(pk_write_any_key(&key, &start_buf, &i, is_public_key,
123+
is_der), expected_result);
124+
}
125125
TEST_EQUAL(pk_write_any_key(&key, &start_buf, &buf_len, is_public_key,
126126
is_der), 0);
127127

@@ -142,8 +142,10 @@ static void pk_write_check_common(char *key_file, int is_public_key, int is_der)
142142
buf_len = check_buf_len;
143143
/* Intentionally pass a wrong size for the provided output buffer and check
144144
* that the writing functions fails as expected. */
145-
TEST_EQUAL(pk_write_any_key(&key, &start_buf, &wrong_buf_len, is_public_key,
146-
is_der), expected_result);
145+
for (size_t i = 1; i < buf_len; i++) {
146+
TEST_EQUAL(pk_write_any_key(&key, &start_buf, &i, is_public_key,
147+
is_der), expected_result);
148+
}
147149
TEST_EQUAL(pk_write_any_key(&key, &start_buf, &buf_len, is_public_key,
148150
is_der), 0);
149151

0 commit comments

Comments
 (0)