diff options
author | Sven Gothel <[email protected]> | 2022-07-31 21:47:00 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-07-31 21:47:00 +0200 |
commit | 1a5e5b552ef6922d2f3a814862c2b13bbeb1b93b (patch) | |
tree | 8e4a9f163cbad77f2d9784cdb16b4a27e1895db9 /test | |
parent | 600b44da6e0214630b1deadf38d4a99b81efa46e (diff) |
ByteInStream_File: Remove obsolete `use_binary` arg, byte streams are always binary; Java: Add dirfd and fd ctor variants
Diffstat (limited to 'test')
-rw-r--r-- | test/test_bytestream01.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/test_bytestream01.cpp b/test/test_bytestream01.cpp index 5d2ff11..dac6a28 100644 --- a/test/test_bytestream01.cpp +++ b/test/test_bytestream01.cpp @@ -317,7 +317,7 @@ class TestByteStream01 { void test01_copy_file_ok_11kiB_buff4k() { jau::fprintf_td(stderr, "\n"); jau::fprintf_td(stderr, "%s\n", __func__); const size_t file_idx = IDX_11kiB; - jau::io::ByteInStream_File data_stream(fname_payload_lst[file_idx], true /* use_binary */); + jau::io::ByteInStream_File data_stream(fname_payload_lst[file_idx]); bool res = transfer(data_stream, fname_payload_copy_lst[file_idx], 4096); REQUIRE( true == res ); @@ -333,7 +333,7 @@ class TestByteStream01 { void test02_copy_file_ok_65MiB_buff4k() { jau::fprintf_td(stderr, "\n"); jau::fprintf_td(stderr, "%s\n", __func__); const size_t file_idx = IDX_65MiB; - jau::io::ByteInStream_File data_stream(fname_payload_lst[file_idx], true /* use_binary */); + jau::io::ByteInStream_File data_stream(fname_payload_lst[file_idx]); bool res = transfer(data_stream, fname_payload_copy_lst[file_idx], 4096); REQUIRE( true == res ); @@ -349,7 +349,7 @@ class TestByteStream01 { void test04_copy_file_ok_65MiB_buff32k() { jau::fprintf_td(stderr, "\n"); jau::fprintf_td(stderr, "%s\n", __func__); const size_t file_idx = IDX_65MiB; - jau::io::ByteInStream_File data_stream(fname_payload_lst[file_idx], true /* use_binary */); + jau::io::ByteInStream_File data_stream(fname_payload_lst[file_idx]); bool res = transfer(data_stream, fname_payload_copy_lst[file_idx], 32768); REQUIRE( true == res ); @@ -435,7 +435,7 @@ class TestByteStream01 { // throttled, no content size, interruptReader() via set_eof() will avoid timeout static void feed_source_00(jau::io::ByteInStream_Feed * data_feed, const size_t feed_size=1024) { uint64_t xfer_total = 0; - jau::io::ByteInStream_File data_stream(data_feed->id(), true /* use_binary */); + jau::io::ByteInStream_File data_stream(data_feed->id()); uint8_t buffer[feed_size]; while( !data_stream.end_of_data() ) { size_t count = data_stream.read(buffer, sizeof(buffer)); @@ -453,7 +453,7 @@ class TestByteStream01 { // throttled, with content size static void feed_source_01(jau::io::ByteInStream_Feed * data_feed, const size_t feed_size=1024) { uint64_t xfer_total = 0; - jau::io::ByteInStream_File data_stream(data_feed->id(), true /* use_binary */); + jau::io::ByteInStream_File data_stream(data_feed->id()); const uint64_t file_size = data_stream.content_size(); data_feed->set_content_size( file_size ); uint8_t buffer[feed_size]; @@ -472,7 +472,7 @@ class TestByteStream01 { // full speed, with content size static void feed_source_10(jau::io::ByteInStream_Feed * data_feed, const size_t feed_size=1024) { uint64_t xfer_total = 0; - jau::io::ByteInStream_File data_stream(data_feed->id(), true /* use_binary */); + jau::io::ByteInStream_File data_stream(data_feed->id()); const uint64_t file_size = data_stream.content_size(); data_feed->set_content_size( data_stream.content_size() ); uint8_t buffer[feed_size]; @@ -489,7 +489,7 @@ class TestByteStream01 { // full speed, no content size, interrupting @ 1024 bytes within our header static void feed_source_20(jau::io::ByteInStream_Feed * data_feed, const size_t feed_size=1024) { uint64_t xfer_total = 0; - jau::io::ByteInStream_File data_stream(data_feed->id(), true /* use_binary */); + jau::io::ByteInStream_File data_stream(data_feed->id()); uint8_t buffer[feed_size]; while( !data_stream.end_of_data() ) { size_t count = data_stream.read(buffer, sizeof(buffer)); @@ -509,7 +509,7 @@ class TestByteStream01 { // full speed, with content size, interrupting 1/4 way static void feed_source_21(jau::io::ByteInStream_Feed * data_feed, const size_t feed_size=1024) { uint64_t xfer_total = 0; - jau::io::ByteInStream_File data_stream(data_feed->id(), true /* use_binary */); + jau::io::ByteInStream_File data_stream(data_feed->id()); const uint64_t file_size = data_stream.content_size(); data_feed->set_content_size( data_stream.content_size() ); uint8_t buffer[feed_size]; |