summaryrefslogtreecommitdiffstats
path: root/web/server/h2o/libh2o/deps/brotli/python/tests/compatibility_test.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 02:57:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 02:57:58 +0000
commitbe1c7e50e1e8809ea56f2c9d472eccd8ffd73a97 (patch)
tree9754ff1ca740f6346cf8483ec915d4054bc5da2d /web/server/h2o/libh2o/deps/brotli/python/tests/compatibility_test.py
parentInitial commit. (diff)
downloadnetdata-upstream.tar.xz
netdata-upstream.zip
Adding upstream version 1.44.3.upstream/1.44.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/server/h2o/libh2o/deps/brotli/python/tests/compatibility_test.py')
-rwxr-xr-xweb/server/h2o/libh2o/deps/brotli/python/tests/compatibility_test.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/web/server/h2o/libh2o/deps/brotli/python/tests/compatibility_test.py b/web/server/h2o/libh2o/deps/brotli/python/tests/compatibility_test.py
new file mode 100755
index 00000000..668c9ece
--- /dev/null
+++ b/web/server/h2o/libh2o/deps/brotli/python/tests/compatibility_test.py
@@ -0,0 +1,27 @@
+#!/usr/bin/env python
+from __future__ import print_function
+import glob
+import sys
+import os
+from subprocess import check_call
+
+from test_utils import PYTHON, BRO, TEST_ENV, diff_q
+
+
+os.chdir(os.path.abspath("../../tests"))
+for filename in glob.glob("testdata/*.compressed*"):
+ filename = os.path.abspath(filename)
+ print('Testing decompression of file "%s"' % os.path.basename(filename))
+ expected = filename.split(".compressed")[0]
+ uncompressed = expected + ".uncompressed"
+ check_call([PYTHON, BRO, "-f", "-d", "-i", filename, "-o", uncompressed],
+ env=TEST_ENV)
+ if diff_q(uncompressed, expected) != 0:
+ sys.exit(1)
+ # Test the streaming version
+ with open(filename, "rb") as infile, open(uncompressed, "wb") as outfile:
+ check_call([PYTHON, BRO, '-d'], stdin=infile, stdout=outfile,
+ env=TEST_ENV)
+ if diff_q(uncompressed, expected) != 0:
+ sys.exit(1)
+ os.unlink(uncompressed)