| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-04-23 20:55:52 +08:00
										 |  |  |  * Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |  * Copyright Nokia 2007-2019 | 
					
						
							|  |  |  |  * Copyright Siemens AG 2015-2019 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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 "cmp_testlib.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-20 06:30:24 +08:00
										 |  |  | DEFINE_STACK_OF(OSSL_CMP_ITAV) | 
					
						
							|  |  |  | DEFINE_STACK_OF(ASN1_UTF8STRING) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | static unsigned char rand_data[OSSL_CMP_TRANSACTIONID_LENGTH]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct test_fixture { | 
					
						
							|  |  |  |     const char *test_case_name; | 
					
						
							|  |  |  |     int expected; | 
					
						
							|  |  |  |     OSSL_CMP_CTX *cmp_ctx; | 
					
						
							|  |  |  |     OSSL_CMP_PKIHEADER *hdr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } CMP_HDR_TEST_FIXTURE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void tear_down(CMP_HDR_TEST_FIXTURE *fixture) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OSSL_CMP_PKIHEADER_free(fixture->hdr); | 
					
						
							|  |  |  |     OSSL_CMP_CTX_free(fixture->cmp_ctx); | 
					
						
							|  |  |  |     OPENSSL_free(fixture); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static CMP_HDR_TEST_FIXTURE *set_up(const char *const test_case_name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     CMP_HDR_TEST_FIXTURE *fixture; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(fixture = OPENSSL_zalloc(sizeof(*fixture)))) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     fixture->test_case_name = test_case_name; | 
					
						
							| 
									
										
										
										
											2020-05-13 15:28:24 +08:00
										 |  |  |     if (!TEST_ptr(fixture->cmp_ctx = OSSL_CMP_CTX_new(NULL, NULL))) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     if (!TEST_ptr(fixture->hdr = OSSL_CMP_PKIHEADER_new())) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     return fixture; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     tear_down(fixture); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int execute_HDR_set_get_pvno_test(CMP_HDR_TEST_FIXTURE *fixture) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int pvno = 77; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_int_eq(ossl_cmp_hdr_set_pvno(fixture->hdr, pvno), 1)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (!TEST_int_eq(ossl_cmp_hdr_get_pvno(fixture->hdr), pvno)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_HDR_set_get_pvno(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							|  |  |  |     fixture->expected = 1; | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_set_get_pvno_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  | #define X509_NAME_ADD(n, rd, s) \
 | 
					
						
							|  |  |  |     X509_NAME_add_entry_by_txt((n), (rd), MBSTRING_ASC, (unsigned char *)(s), \ | 
					
						
							|  |  |  |                                -1, -1, 0) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int execute_HDR_get0_senderNonce_test(CMP_HDR_TEST_FIXTURE *fixture) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X509_NAME *sender = X509_NAME_new(); | 
					
						
							|  |  |  |     ASN1_OCTET_STRING *sn; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(sender)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     X509_NAME_ADD(sender, "CN", "A common sender name"); | 
					
						
							|  |  |  |     if (!TEST_int_eq(OSSL_CMP_CTX_set1_subjectName(fixture->cmp_ctx, sender), | 
					
						
							|  |  |  |                      1)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (!TEST_int_eq(ossl_cmp_hdr_init(fixture->cmp_ctx, fixture->hdr), | 
					
						
							|  |  |  |                      1)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     sn = ossl_cmp_hdr_get0_senderNonce(fixture->hdr); | 
					
						
							|  |  |  |     if (!TEST_int_eq(ASN1_OCTET_STRING_cmp(fixture->cmp_ctx->senderNonce, sn), | 
					
						
							|  |  |  |                      0)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     X509_NAME_free(sender); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_HDR_get0_senderNonce(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							|  |  |  |     fixture->expected = 1; | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_get0_senderNonce_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int execute_HDR_set1_sender_test(CMP_HDR_TEST_FIXTURE *fixture) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X509_NAME *x509name = X509_NAME_new(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(x509name)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     X509_NAME_ADD(x509name, "CN", "A common sender name"); | 
					
						
							|  |  |  |     if (!TEST_int_eq(ossl_cmp_hdr_set1_sender(fixture->hdr, x509name), 1)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (!TEST_int_eq(fixture->hdr->sender->type, GEN_DIRNAME)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     if (!TEST_int_eq(X509_NAME_cmp(fixture->hdr->sender->d.directoryName, | 
					
						
							|  |  |  |                                    x509name), 0)) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     X509_NAME_free(x509name); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_HDR_set1_sender(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							|  |  |  |     fixture->expected = 1; | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_set1_sender_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int execute_HDR_set1_recipient_test(CMP_HDR_TEST_FIXTURE *fixture) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X509_NAME *x509name = X509_NAME_new(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(x509name)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     X509_NAME_ADD(x509name, "CN", "A common recipient name"); | 
					
						
							|  |  |  |     if (!TEST_int_eq(ossl_cmp_hdr_set1_recipient(fixture->hdr, x509name), 1)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_int_eq(fixture->hdr->recipient->type, GEN_DIRNAME)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     if (!TEST_int_eq(X509_NAME_cmp(fixture->hdr->recipient->d.directoryName, | 
					
						
							|  |  |  |                                    x509name), 0)) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     X509_NAME_free(x509name); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_HDR_set1_recipient(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							|  |  |  |     fixture->expected = 1; | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_set1_recipient_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int execute_HDR_update_messageTime_test(CMP_HDR_TEST_FIXTURE *fixture) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct tm hdrtm; | 
					
						
							|  |  |  |     time_t hdrtime, before, after, now; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     now = time(NULL); | 
					
						
							|  |  |  |     before = mktime(gmtime(&now)); | 
					
						
							|  |  |  |     if (!TEST_true(ossl_cmp_hdr_update_messageTime(fixture->hdr))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (!TEST_true(ASN1_TIME_to_tm(fixture->hdr->messageTime, &hdrtm))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     hdrtime = mktime(&hdrtm); | 
					
						
							|  |  |  |     if (!TEST_true(before <= hdrtime)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     now = time(NULL); | 
					
						
							|  |  |  |     after = mktime(gmtime(&now)); | 
					
						
							|  |  |  |     return TEST_true(hdrtime <= after); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_HDR_update_messageTime(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							|  |  |  |     fixture->expected = 1; | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_update_messageTime_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int execute_HDR_set1_senderKID_test(CMP_HDR_TEST_FIXTURE *fixture) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     ASN1_OCTET_STRING *senderKID = ASN1_OCTET_STRING_new(); | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(senderKID)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-05 16:56:59 +08:00
										 |  |  |     if (!TEST_int_eq(ASN1_OCTET_STRING_set(senderKID, rand_data, | 
					
						
							|  |  |  |                                            sizeof(rand_data)), 1)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |     if (!TEST_int_eq(ossl_cmp_hdr_set1_senderKID(fixture->hdr, senderKID), 1)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     if (!TEST_int_eq(ASN1_OCTET_STRING_cmp(fixture->hdr->senderKID, | 
					
						
							|  |  |  |                                            senderKID), 0)) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ASN1_OCTET_STRING_free(senderKID); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_HDR_set1_senderKID(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							|  |  |  |     fixture->expected = 1; | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_set1_senderKID_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int execute_HDR_push0_freeText_test(CMP_HDR_TEST_FIXTURE *fixture) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     ASN1_UTF8STRING *text = ASN1_UTF8STRING_new(); | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(text)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ASN1_STRING_set(text, "A free text", -1)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     if (!TEST_int_eq(ossl_cmp_hdr_push0_freeText(fixture->hdr, text), 1)) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_true(text == sk_ASN1_UTF8STRING_value(fixture->hdr->freeText, 0))) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_HDR_push0_freeText(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							|  |  |  |     fixture->expected = 1; | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_push0_freeText_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int execute_HDR_push1_freeText_test(CMP_HDR_TEST_FIXTURE *fixture) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     ASN1_UTF8STRING *text = ASN1_UTF8STRING_new(); | 
					
						
							|  |  |  |     ASN1_UTF8STRING *pushed_text; | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(text)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ASN1_STRING_set(text, "A free text", -1)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     if (!TEST_int_eq(ossl_cmp_hdr_push1_freeText(fixture->hdr, text), 1)) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     pushed_text = sk_ASN1_UTF8STRING_value(fixture->hdr->freeText, 0); | 
					
						
							|  |  |  |     if (!TEST_int_eq(ASN1_STRING_cmp(text, pushed_text), 0)) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ASN1_UTF8STRING_free(text); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_HDR_push1_freeText(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							|  |  |  |     fixture->expected = 1; | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_push1_freeText_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | execute_HDR_generalInfo_push0_item_test(CMP_HDR_TEST_FIXTURE *fixture) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OSSL_CMP_ITAV *itav = OSSL_CMP_ITAV_new(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(itav)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     if (!TEST_int_eq(ossl_cmp_hdr_generalInfo_push0_item(fixture->hdr, itav), | 
					
						
							|  |  |  |                      1)) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_true(itav == sk_OSSL_CMP_ITAV_value(fixture->hdr->generalInfo, | 
					
						
							|  |  |  |                                                   0))) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_HDR_generalInfo_push0_item(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							|  |  |  |     fixture->expected = 1; | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_generalInfo_push0_item_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | execute_HDR_generalInfo_push1_items_test(CMP_HDR_TEST_FIXTURE *fixture) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const char oid[] = "1.2.3.4"; | 
					
						
							|  |  |  |     char buf[20]; | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     OSSL_CMP_ITAV *itav, *pushed_itav; | 
					
						
							|  |  |  |     STACK_OF(OSSL_CMP_ITAV) *itavs = NULL, *ginfo; | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |     ASN1_INTEGER *asn1int = ASN1_INTEGER_new(); | 
					
						
							|  |  |  |     ASN1_TYPE *val = ASN1_TYPE_new(); | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     ASN1_TYPE *pushed_val; | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(asn1int)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_ptr(val)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ASN1_INTEGER_set(asn1int, 88); | 
					
						
							|  |  |  |     ASN1_TYPE_set(val, V_ASN1_INTEGER, asn1int); | 
					
						
							|  |  |  |     itav = OSSL_CMP_ITAV_create(OBJ_txt2obj(oid, 1), val); | 
					
						
							|  |  |  |     OSSL_CMP_ITAV_push0_stack_item(&itavs, itav); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     if (!TEST_int_eq(ossl_cmp_hdr_generalInfo_push1_items(fixture->hdr, itavs), | 
					
						
							|  |  |  |                      1)) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     ginfo = fixture->hdr->generalInfo; | 
					
						
							|  |  |  |     pushed_itav = sk_OSSL_CMP_ITAV_value(ginfo, 0); | 
					
						
							|  |  |  |     OBJ_obj2txt(buf, sizeof(buf), OSSL_CMP_ITAV_get0_type(pushed_itav), 0); | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |     if (!TEST_int_eq(memcmp(oid, buf, sizeof(oid)), 0)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     pushed_val = OSSL_CMP_ITAV_get0_value(sk_OSSL_CMP_ITAV_value(ginfo, 0)); | 
					
						
							|  |  |  |     if (!TEST_int_eq(ASN1_TYPE_cmp(itav->infoValue.other, pushed_val), 0)) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sk_OSSL_CMP_ITAV_pop_free(itavs, OSSL_CMP_ITAV_free); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_HDR_generalInfo_push1_items(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							|  |  |  |     fixture->expected = 1; | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_generalInfo_push1_items_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | execute_HDR_set_and_check_implicitConfirm_test(CMP_HDR_TEST_FIXTURE | 
					
						
							|  |  |  |                                                * fixture) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-03-10 17:29:46 +08:00
										 |  |  |     return TEST_false(ossl_cmp_hdr_has_implicitConfirm(fixture->hdr)) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         && TEST_true(ossl_cmp_hdr_set_implicitConfirm(fixture->hdr)) | 
					
						
							| 
									
										
										
										
											2020-03-10 17:29:46 +08:00
										 |  |  |         && TEST_true(ossl_cmp_hdr_has_implicitConfirm(fixture->hdr)); | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_HDR_set_and_check_implicit_confirm(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_set_and_check_implicitConfirm_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int execute_HDR_init_test(CMP_HDR_TEST_FIXTURE *fixture) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     ASN1_OCTET_STRING *header_nonce, *header_transactionID; | 
					
						
							|  |  |  |     ASN1_OCTET_STRING *ctx_nonce; | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!TEST_int_eq(fixture->expected, | 
					
						
							|  |  |  |                      ossl_cmp_hdr_init(fixture->cmp_ctx, fixture->hdr))) | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     if (fixture->expected == 0) | 
					
						
							|  |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     if (!TEST_int_eq(ossl_cmp_hdr_get_pvno(fixture->hdr), OSSL_CMP_PVNO)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-14 03:07:08 +08:00
										 |  |  |     header_nonce = ossl_cmp_hdr_get0_senderNonce(fixture->hdr); | 
					
						
							|  |  |  |     if (!TEST_int_eq(0, ASN1_OCTET_STRING_cmp(header_nonce, | 
					
						
							|  |  |  |                                               fixture->cmp_ctx->senderNonce))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     header_transactionID = OSSL_CMP_HDR_get0_transactionID(fixture->hdr); | 
					
						
							|  |  |  |     if (!TEST_true(0 == ASN1_OCTET_STRING_cmp(header_transactionID, | 
					
						
							|  |  |  |                                               fixture->cmp_ctx->transactionID))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     header_nonce = OSSL_CMP_HDR_get0_recipNonce(fixture->hdr); | 
					
						
							|  |  |  |     ctx_nonce = fixture->cmp_ctx->recipNonce; | 
					
						
							|  |  |  |     if (ctx_nonce != NULL | 
					
						
							|  |  |  |             && (!TEST_ptr(header_nonce) | 
					
						
							|  |  |  |                     || !TEST_int_eq(0, ASN1_OCTET_STRING_cmp(header_nonce, | 
					
						
							|  |  |  |                                                              ctx_nonce)))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-27 04:41:47 +08:00
										 |  |  | static int test_HDR_init_with_ref(void) | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned char ref[CMP_TEST_REFVALUE_LENGTH]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 02:24:26 +08:00
										 |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |     fixture->expected = 1; | 
					
						
							|  |  |  |     if (!TEST_int_eq(1, RAND_bytes(ref, sizeof(ref))) | 
					
						
							|  |  |  |             || !TEST_true(OSSL_CMP_CTX_set1_referenceValue(fixture->cmp_ctx, | 
					
						
							|  |  |  |                                                            ref, sizeof(ref)))) { | 
					
						
							|  |  |  |         tear_down(fixture); | 
					
						
							|  |  |  |         fixture = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_init_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int test_HDR_init_with_subject(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     X509_NAME *subject = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 02:24:26 +08:00
										 |  |  |     SETUP_TEST_FIXTURE(CMP_HDR_TEST_FIXTURE, set_up); | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |     fixture->expected = 1; | 
					
						
							|  |  |  |     if (!TEST_ptr(subject = X509_NAME_new()) | 
					
						
							| 
									
										
										
										
											2019-11-05 16:56:59 +08:00
										 |  |  |             || !TEST_true(X509_NAME_ADD(subject, "CN", "Common Name")) | 
					
						
							|  |  |  |             || !TEST_true(OSSL_CMP_CTX_set1_subjectName(fixture->cmp_ctx, | 
					
						
							|  |  |  |                                                         subject))) { | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |         tear_down(fixture); | 
					
						
							|  |  |  |         fixture = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     X509_NAME_free(subject); | 
					
						
							|  |  |  |     EXECUTE_TEST(execute_HDR_init_test, tear_down); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void cleanup_tests(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int setup_tests(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     RAND_bytes(rand_data, OSSL_CMP_TRANSACTIONID_LENGTH); | 
					
						
							|  |  |  |     /* Message header tests */ | 
					
						
							|  |  |  |     ADD_TEST(test_HDR_set_get_pvno); | 
					
						
							|  |  |  |     ADD_TEST(test_HDR_get0_senderNonce); | 
					
						
							|  |  |  |     ADD_TEST(test_HDR_set1_sender); | 
					
						
							|  |  |  |     ADD_TEST(test_HDR_set1_recipient); | 
					
						
							|  |  |  |     ADD_TEST(test_HDR_update_messageTime); | 
					
						
							|  |  |  |     ADD_TEST(test_HDR_set1_senderKID); | 
					
						
							|  |  |  |     ADD_TEST(test_HDR_push0_freeText); | 
					
						
							|  |  |  |     /* indirectly tests ossl_cmp_pkifreetext_push_str(): */ | 
					
						
							|  |  |  |     ADD_TEST(test_HDR_push1_freeText); | 
					
						
							|  |  |  |     ADD_TEST(test_HDR_generalInfo_push0_item); | 
					
						
							|  |  |  |     ADD_TEST(test_HDR_generalInfo_push1_items); | 
					
						
							|  |  |  |     ADD_TEST(test_HDR_set_and_check_implicit_confirm); | 
					
						
							|  |  |  |     /* also tests public function OSSL_CMP_HDR_get0_transactionID(): */ | 
					
						
							|  |  |  |     /* also tests public function OSSL_CMP_HDR_get0_recipNonce(): */ | 
					
						
							|  |  |  |     /* also tests internal function ossl_cmp_hdr_get_pvno(): */ | 
					
						
							| 
									
										
										
										
											2020-02-27 04:41:47 +08:00
										 |  |  |     ADD_TEST(test_HDR_init_with_ref); | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  |     ADD_TEST(test_HDR_init_with_subject); | 
					
						
							| 
									
										
										
										
											2019-11-05 16:56:59 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      *  TODO make sure that total number of tests (here currently 24) is shown, | 
					
						
							|  |  |  |      *  also for other cmp_*text.c. Currently the test drivers always show 1. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-09-27 16:22:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } |