summaryrefslogtreecommitdiffstats
path: root/test/bio_memleak_test.c
diff options
context:
space:
mode:
authorTomas Mraz <tmraz@fedoraproject.org>2019-04-04 09:49:36 +0200
committerMatt Caswell <matt@openssl.org>2019-04-16 10:50:30 +0100
commit06add280d90de9625e9c18985f376ef8d0419a46 (patch)
tree73730c64c79a6b4d9307a130adf4f403c46d7c11 /test/bio_memleak_test.c
parent3d42833d389134b7b05b655c264e4dba5a2179e9 (diff)
Add test for the BIO_s_mem rdwr->rdonly->rdwr use-case
Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8649)
Diffstat (limited to 'test/bio_memleak_test.c')
-rw-r--r--test/bio_memleak_test.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/bio_memleak_test.c b/test/bio_memleak_test.c
index bdc6d68c7d..fab5ce73cf 100644
--- a/test/bio_memleak_test.c
+++ b/test/bio_memleak_test.c
@@ -145,6 +145,43 @@ finish:
return ok;
}
+static int test_bio_rdwr_rdonly(void)
+{
+ int ok = 0;
+ BIO *bio = NULL;
+ char data[16];
+
+ bio = BIO_new(BIO_s_mem());
+ if (!TEST_ptr(bio))
+ goto finish;
+ if (!TEST_int_eq(BIO_puts(bio, "Hello World\n"), 12))
+ goto finish;
+
+ BIO_set_flags(bio, BIO_FLAGS_MEM_RDONLY);
+ if (!TEST_int_eq(BIO_read(bio, data, 16), 12))
+ goto finish;
+ if (!TEST_mem_eq(data, 12, "Hello World\n", 12))
+ goto finish;
+ if (!TEST_int_gt(BIO_reset(bio), 0))
+ goto finish;
+
+ BIO_clear_flags(bio, BIO_FLAGS_MEM_RDONLY);
+ if (!TEST_int_eq(BIO_puts(bio, "Hi!\n"), 4))
+ goto finish;
+ if (!TEST_int_eq(BIO_read(bio, data, 16), 16))
+ goto finish;
+
+ if (!TEST_mem_eq(data, 16, "Hello World\nHi!\n", 16))
+ goto finish;
+
+ ok = 1;
+
+finish:
+ BIO_free(bio);
+ return ok;
+}
+
+
int global_init(void)
{
CRYPTO_set_mem_debug(1);
@@ -158,5 +195,6 @@ int setup_tests(void)
ADD_TEST(test_bio_get_mem);
ADD_TEST(test_bio_new_mem_buf);
ADD_TEST(test_bio_rdonly_mem_buf);
+ ADD_TEST(test_bio_rdwr_rdonly);
return 1;
}