2015-03-17 01:56:10 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
from subprocess import call, Popen, PIPE
|
|
|
|
import filecmp
|
|
|
|
|
|
|
|
|
|
|
|
def diff_q(first_file, second_file):
|
|
|
|
"""Simulate call to POSIX diff with -q argument"""
|
|
|
|
if not filecmp.cmp(first_file, second_file, shallow=False):
|
|
|
|
print("Files %s and %s differ" % (first_file, second_file))
|
|
|
|
return 1
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
BRO = os.path.abspath("../bro.py")
|
|
|
|
|
|
|
|
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"
|
|
|
|
call('"%s" -f -i "%s" -o "%s"' % (BRO, filename, compressed), shell=True)
|
|
|
|
call('"%s" -f -d -i "%s" -o "%s"' %
|
|
|
|
(BRO, compressed, uncompressed), shell=True)
|
|
|
|
if diff_q(filename, uncompressed) != 0:
|
|
|
|
sys.exit(1)
|
|
|
|
# Test the streaming version
|
2015-03-22 08:15:54 +08:00
|
|
|
with open(filename, "rb") as infile:
|
|
|
|
p1 = Popen(BRO, stdin=infile, stdout=PIPE, shell=True)
|
|
|
|
p2 = Popen("%s -d" % BRO, stdin=p1.stdout, stdout=PIPE, shell=True)
|
|
|
|
p1.stdout.close()
|
|
|
|
output = p2.communicate()[0]
|
|
|
|
with open(uncompressed, "wb") as outfile:
|
|
|
|
outfile.write(output)
|
2015-03-17 01:56:10 +08:00
|
|
|
if diff_q(filename, uncompressed) != 0:
|
|
|
|
sys.exit(1)
|