binmode FH in test (RT #125995)
[io-compress-brotli.git] / t / 01-uncompress.t
CommitLineData
f9995f31
MG
1#!/usr/bin/perl
2use v5.14;
3use warnings;
4
56bfd9c0 5use Test::More tests => 84;
c17e7d63 6use File::Slurper qw/read_binary/;
2786a68d
QR
7
8use IO::Uncompress::Brotli;
f9995f31 9
28ab7055 10for my $test (<brotli/tests/testdata/*.compressed*>) {
f9995f31 11 my ($expected) = $test =~ s/\.compressed.*//r;
c17e7d63 12 $expected = read_binary $expected;
f9995f31 13
c17e7d63 14 my $decoded = unbro ((scalar read_binary $test), 1_000_000);
56bfd9c0 15 is $decoded, $expected, "$test";
f9995f31
MG
16
17 open FH, '<', $test;
c8ec5685 18 binmode FH;
f9995f31
MG
19 my $unbro = IO::Uncompress::Brotli->create;
20 my ($buf, $out);
21 until (eof FH) {
22 read FH, $buf, 100;
23 $out .= $unbro->decompress($buf);
24 }
25 is $out, $expected, "$test (streaming)";
26}
This page took 0.010201 seconds and 4 git commands to generate.