mirror of
https://github.com/google/brotli.git
synced 2024-11-22 19:50:06 +00:00
40 lines
1.3 KiB
Python
Executable File
40 lines
1.3 KiB
Python
Executable File
#!/usr/bin/env python
|
|
from __future__ import print_function
|
|
import sys
|
|
import os
|
|
from subprocess import check_call, Popen, PIPE
|
|
|
|
from test_utils import PYTHON, BRO, TEST_ENV, diff_q
|
|
|
|
|
|
INPUTS = """\
|
|
testdata/alice29.txt
|
|
testdata/asyoulik.txt
|
|
testdata/lcet10.txt
|
|
testdata/plrabn12.txt
|
|
../enc/encode.cc
|
|
../enc/dictionary.h
|
|
../dec/decode.c
|
|
%s
|
|
""" % BRO
|
|
|
|
os.chdir(os.path.abspath("../../tests"))
|
|
for filename in INPUTS.splitlines():
|
|
filename = os.path.abspath(filename)
|
|
print('Roundtrip testing of file "%s"' % os.path.basename(filename))
|
|
compressed = os.path.splitext(filename)[0] + ".bro"
|
|
uncompressed = os.path.splitext(filename)[0] + ".unbro"
|
|
check_call([PYTHON, BRO, "-f", "-i", filename, "-o", compressed],
|
|
env=TEST_ENV)
|
|
check_call([PYTHON, BRO, "-f", "-d", "-i", compressed, "-o", uncompressed],
|
|
env=TEST_ENV)
|
|
if diff_q(filename, uncompressed) != 0:
|
|
sys.exit(1)
|
|
# Test the streaming version
|
|
with open(filename, "rb") as infile, open(uncompressed, "wb") as outfile:
|
|
p = Popen([PYTHON, BRO], stdin=infile, stdout=PIPE, env=TEST_ENV)
|
|
check_call([PYTHON, BRO, "-d"], stdin=p.stdout, stdout=outfile,
|
|
env=TEST_ENV)
|
|
if diff_q(filename, uncompressed) != 0:
|
|
sys.exit(1)
|