-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Copy testing utilities into separate package (#235)
- Loading branch information
Showing
9 changed files
with
230 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ | |
/docs/Manifest.toml | ||
/fuzz/test/ | ||
/fuzz/Manifest.toml | ||
/lib/TestsForCodecPackages/Manifest.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name = "TestsForCodecPackages" | ||
uuid = "c2e61002-3542-480d-8b3c-5f05cc4f8554" | ||
authors = ["nhz2 <[email protected]>"] | ||
version = "0.1.0" | ||
|
||
[deps] | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa" | ||
|
||
[compat] | ||
Random = "1" | ||
Test = "1" | ||
TranscodingStreams = "0.11" | ||
julia = "1.6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
module TestsForCodecPackages | ||
|
||
using Test: Test | ||
using Random: seed!, randstring | ||
|
||
using TranscodingStreams: TranscodingStreams, initialize, finalize, transcode, | ||
TranscodingStream, NoopStream, TOKEN_END | ||
|
||
TEST_RANDOM_SEED = 12345 | ||
|
||
export | ||
test_roundtrip_read, | ||
test_roundtrip_write, | ||
test_roundtrip_transcode, | ||
test_roundtrip_lines, | ||
test_roundtrip_seekstart, | ||
test_roundtrip_fileio, | ||
test_chunked_read, | ||
test_chunked_write | ||
|
||
function test_roundtrip_read(encoder, decoder) | ||
seed!(TEST_RANDOM_SEED) | ||
for n in vcat(0:30, sort!(rand(500:100_000, 30))), alpha in (0x00:0xff, 0x00:0x0f) | ||
data = rand(alpha, n) | ||
file = IOBuffer(data) | ||
stream = decoder(encoder(file)) | ||
Test.@test hash(read(stream)) == hash(data) | ||
close(stream) | ||
end | ||
end | ||
|
||
function test_roundtrip_write(encoder, decoder) | ||
seed!(TEST_RANDOM_SEED) | ||
for n in vcat(0:30, sort!(rand(500:100_000, 30))), alpha in (0x00:0xff, 0x00:0x0f) | ||
data = rand(alpha, n) | ||
sink = IOBuffer() | ||
decode_sink = decoder(sink) | ||
stream = encoder(decode_sink) | ||
write(stream, data) | ||
write(stream, TranscodingStreams.TOKEN_END) | ||
flush(stream) | ||
write(decode_sink, TranscodingStreams.TOKEN_END) | ||
flush(decode_sink) | ||
Test.@test take!(sink) == data | ||
close(stream) | ||
end | ||
end | ||
|
||
function test_roundtrip_transcode(encode, decode) | ||
seed!(TEST_RANDOM_SEED) | ||
encoder = encode() | ||
initialize(encoder) | ||
decoder = decode() | ||
initialize(decoder) | ||
for n in vcat(0:30, sort!(rand(500:100_000, 30))), alpha in (0x00:0xff, 0x00:0x0f) | ||
data = rand(alpha, n) | ||
Test.@test hash(transcode(decode, transcode(encode, data))) == hash(data) | ||
Test.@test hash(transcode(decoder, transcode(encoder, data))) == hash(data) | ||
end | ||
finalize(encoder) | ||
finalize(decoder) | ||
end | ||
|
||
function test_roundtrip_lines(encoder, decoder) | ||
seed!(TEST_RANDOM_SEED) | ||
lines = String[] | ||
buf = IOBuffer() | ||
stream = encoder(buf) | ||
for i in 1:100_000 | ||
line = randstring(rand(0:1000)) | ||
println(stream, line) | ||
push!(lines, line) | ||
end | ||
write(stream, TOKEN_END) | ||
flush(stream) | ||
seekstart(buf) | ||
Test.@test hash(lines) == hash(readlines(decoder(buf))) | ||
end | ||
|
||
function test_roundtrip_seekstart(encoder, decoder) | ||
seed!(TEST_RANDOM_SEED) | ||
for n in vcat(0:30, sort!(rand(500:100_000, 30))), alpha in (0x00:0xff, 0x00:0x0f) | ||
data = rand(alpha, n) | ||
file = IOBuffer(data) | ||
stream = decoder(encoder(file)) | ||
for m in vcat(0:min(n,20), rand(0:n, 10)) | ||
Test.@test read(stream, m) == @view(data[1:m]) | ||
seekstart(stream) | ||
end | ||
seekstart(stream) | ||
Test.@test read(stream) == data | ||
seekstart(stream) | ||
Test.@test read(stream) == data | ||
close(stream) | ||
end | ||
end | ||
|
||
function test_roundtrip_fileio(Encoder, Decoder) | ||
data = b""" | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla sit amet tempus felis. Etiam molestie urna placerat iaculis pellentesque. Maecenas porttitor et dolor vitae posuere. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eget nibh quam. Nullam aliquet interdum fringilla. Duis facilisis, lectus in consectetur varius, lorem sem tempor diam, nec auctor tellus nibh sit amet sapien. In ex nunc, elementum eget facilisis ut, luctus eu orci. Sed sapien urna, accumsan et elit non, auctor pretium massa. Phasellus consectetur nisi suscipit blandit aliquam. Nulla facilisi. Mauris pellentesque sem sit amet mi vestibulum eleifend. Nulla faucibus orci ac lorem efficitur, et blandit orci interdum. Aenean posuere ultrices ex sed rhoncus. Donec malesuada mollis sem, sed varius nunc sodales sed. Curabitur lobortis non justo non tristique. | ||
""" | ||
mktemp() do filename, file | ||
stream = TranscodingStream(Encoder(), file) | ||
write(stream, data) | ||
close(stream) | ||
stream = TranscodingStream(Decoder(), open(filename)) | ||
Test.@test hash(read(stream)) == hash(data) | ||
close(stream) | ||
end | ||
end | ||
|
||
function test_chunked_read(Encoder, Decoder) | ||
seed!(TEST_RANDOM_SEED) | ||
alpha = b"色即是空" | ||
encoder = Encoder() | ||
initialize(encoder) | ||
for sharedbuf in false:true | ||
for _ in 1:500 | ||
chunks = [rand(alpha, rand(0:100)) for _ in 1:rand(1:100)] | ||
data = mapfoldl(x->transcode(encoder, x), vcat, chunks, init=UInt8[]) | ||
buffer = NoopStream(IOBuffer(data)) | ||
ok = true | ||
for chunk in chunks | ||
stream = TranscodingStream(Decoder(), buffer; stop_on_end=true, sharedbuf) | ||
ok &= read(stream) == chunk | ||
ok &= position(stream) == length(chunk) | ||
ok &= eof(stream) | ||
ok &= isreadable(stream) | ||
close(stream) | ||
end | ||
# read without stop_on_end should read the full data. | ||
stream = TranscodingStream(Decoder(), IOBuffer(data)) | ||
ok &= read(stream) == reduce(vcat, chunks) | ||
close(stream) | ||
Test.@test ok | ||
end | ||
end | ||
finalize(encoder) | ||
end | ||
|
||
function test_chunked_write(Encoder, Decoder) | ||
seed!(TEST_RANDOM_SEED) | ||
alpha = b"空即是色" | ||
encoder = Encoder() | ||
initialize(encoder) | ||
for _ in 1:500 | ||
chunks = [rand(alpha, rand(0:100)) for _ in 1:2] | ||
data = map(x->transcode(encoder, x), chunks) | ||
buffer = IOBuffer() | ||
stream = TranscodingStream(Decoder(), buffer, stop_on_end=true) | ||
write(stream, vcat(data...)) | ||
close(stream) | ||
ok = true | ||
ok &= hash(take!(buffer)) == hash(vcat(chunks...)) | ||
Test.@test ok | ||
end | ||
finalize(encoder) | ||
end | ||
|
||
end # module TestsForCodecPackages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8f9953e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register subdir=lib/TestsForCodecPackages
8f9953e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/111954
Tip: Release Notes
Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.
To add them here just re-invoke and the PR will be updated.
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: