File: test_benchmark.py

package info (click to toggle)
py7zr 0.22.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,300 kB
  • sloc: python: 8,740; makefile: 197; ansic: 35
file content (165 lines) | stat: -rw-r--r-- 7,024 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import os
import platform
import shutil

import pytest

import py7zr
import py7zr.helpers

testdata_path = os.path.join(os.path.dirname(__file__), "data")
targets = [
    ("zstd", [{"id": py7zr.FILTER_ZSTD, "level": 3}]),
    ("bzip2", [{"id": py7zr.FILTER_BZIP2}]),
    ("lzma+bcj", [{"id": py7zr.FILTER_X86}, {"id": py7zr.FILTER_LZMA, "preset": 7}]),
    ("lzma2+bcj", [{"id": py7zr.FILTER_X86}, {"id": py7zr.FILTER_LZMA2, "preset": 7}]),
    (
        "bzip2+aes",
        [{"id": py7zr.FILTER_BZIP2}, {"id": py7zr.FILTER_CRYPTO_AES256_SHA256}],
    ),
    (
        "lzma2+aes",
        [
            {"id": py7zr.FILTER_LZMA2, "preset": 7},
            {"id": py7zr.FILTER_CRYPTO_AES256_SHA256},
        ],
    ),
]


@pytest.mark.benchmark(group="compress")
@pytest.mark.parametrize("name, filters", targets)
def test_benchmark_filters_compress(tmp_path, benchmark, name, filters):
    def compressor(filters, password):
        with py7zr.SevenZipFile(tmp_path.joinpath("target.7z"), "w", filters=filters, password=password) as szf:
            szf.writeall(tmp_path.joinpath("src"), "src")

    def setup():
        if tmp_path.joinpath("target.7z").exists():
            tmp_path.joinpath("target.7z").unlink()

    with py7zr.SevenZipFile(os.path.join(testdata_path, "mblock_1.7z"), "r") as szf:
        szf.extractall(path=tmp_path.joinpath("src"))
    with py7zr.SevenZipFile(os.path.join(testdata_path, "mblock_1.7z"), "r") as szf:
        archive_info = szf.archiveinfo()
        source_size = archive_info.uncompressed
    if name.endswith("aes"):
        password = "secret"
    else:
        password = None
    benchmark.extra_info["data_size"] = source_size
    benchmark.pedantic(compressor, setup=setup, args=[filters, password], iterations=1, rounds=3)
    benchmark.extra_info["ratio"] = str(tmp_path.joinpath("target.7z").stat().st_size / source_size)


@pytest.mark.benchmark(group="decompress")
@pytest.mark.parametrize("name, filters", targets)
def test_benchmark_filters_decompress(tmp_path, benchmark, name, filters):
    def decompressor(secret):
        with py7zr.SevenZipFile(tmp_path.joinpath("target.7z"), "r", password=secret) as szf:
            szf.extractall(tmp_path.joinpath("tgt"))

    def setup():
        shutil.rmtree(tmp_path.joinpath("tgt"), ignore_errors=True)

    with py7zr.SevenZipFile(os.path.join(testdata_path, "mblock_1.7z"), "r") as szf:
        szf.extractall(path=tmp_path.joinpath("src"))
    with py7zr.SevenZipFile(os.path.join(testdata_path, "mblock_1.7z"), "r") as szf:
        archive_info = szf.archiveinfo()
        source_size = archive_info.uncompressed

    if name.endswith("aes"):
        password = "secret"
    else:
        password = None
    with py7zr.SevenZipFile(tmp_path.joinpath("target.7z"), "w", filters=filters, password=password) as szf:
        szf.writeall(tmp_path.joinpath("src"), "src")
    benchmark.extra_info["data_size"] = source_size
    benchmark.extra_info["ratio"] = str(tmp_path.joinpath("target.7z").stat().st_size / source_size)
    benchmark.pedantic(decompressor, setup=setup, args=[password], iterations=1, rounds=3)


textfilters = [
    ("ppmd(text)", [{"id": py7zr.FILTER_PPMD, "order": 8, "mem": "4m"}]),
    ("deflate(text)", [{"id": py7zr.FILTER_DEFLATE}]),
    ("zstd(text)", [{"id": py7zr.FILTER_ZSTD, "level": 3}]),
    ("brotli(text)", [{"id": py7zr.FILTER_BROTLI, "level": 11}]),
]


@pytest.mark.benchmark(group="compress")
@pytest.mark.parametrize("name, filters", textfilters)
def test_benchmark_text_compress(tmp_path, benchmark, name, filters):
    def compressor(filters):
        with py7zr.SevenZipFile(tmp_path.joinpath("target.7z"), "w", filters=filters) as szf:
            szf.writeall(tmp_path.joinpath("src"), "src")

    def setup():
        if tmp_path.joinpath("target.7z").exists():
            tmp_path.joinpath("target.7z").unlink()

    with py7zr.SevenZipFile(os.path.join(testdata_path, "bzip2_2.7z"), "r") as szf:
        szf.extractall(path=tmp_path.joinpath("src"))
    with py7zr.SevenZipFile(os.path.join(testdata_path, "bzip2_2.7z"), "r") as szf:
        archive_info = szf.archiveinfo()
        source_size = archive_info.uncompressed
    benchmark.extra_info["data_size"] = source_size
    benchmark.pedantic(compressor, setup=setup, args=[filters], iterations=1, rounds=3)
    benchmark.extra_info["ratio"] = str(tmp_path.joinpath("target.7z").stat().st_size / source_size)


@pytest.mark.benchmark(group="decompress")
@pytest.mark.parametrize("name, filters", textfilters)
def test_benchmark_text_decompress(tmp_path, benchmark, name, filters):
    def decompressor():
        with py7zr.SevenZipFile(tmp_path.joinpath("target.7z"), "r") as szf:
            szf.extractall(tmp_path.joinpath("tgt"))

    def setup():
        shutil.rmtree(tmp_path.joinpath("tgt"), ignore_errors=True)

    with py7zr.SevenZipFile(os.path.join(testdata_path, "bzip2_2.7z"), "r") as szf:
        szf.extractall(path=tmp_path.joinpath("src"))
    with py7zr.SevenZipFile(os.path.join(testdata_path, "bzip2_2.7z"), "r") as szf:
        archive_info = szf.archiveinfo()
        source_size = archive_info.uncompressed
    password = None
    with py7zr.SevenZipFile(tmp_path.joinpath("target.7z"), "w", filters=filters, password=password) as szf:
        szf.writeall(tmp_path.joinpath("src"), "src")
    benchmark.extra_info["data_size"] = source_size
    benchmark.extra_info["ratio"] = str(tmp_path.joinpath("target.7z").stat().st_size / source_size)
    benchmark.pedantic(decompressor, setup=setup, args=[], iterations=1, rounds=3)


@pytest.mark.benchmark(group="calculate_key")
@pytest.mark.skip(reason="Don't test in ordinary development")
def test_benchmark_calculate_key1(benchmark):
    password = "secret".encode("utf-16LE")
    cycles = 19
    salt = b""
    expected = b"e\x11\xf1Pz<*\x98*\xe6\xde\xf4\xf6X\x18\xedl\xf2Be\x1a\xca\x19\xd1\\\xeb\xc6\xa6z\xe2\x89\x1d"
    key = benchmark(py7zr.helpers._calculate_key1, password, cycles, salt, "sha256")
    assert key == expected


@pytest.mark.benchmark(group="calculate_key")
@pytest.mark.skip(reason="Don't test in ordinary development")
@pytest.mark.skipif(platform.python_implementation() == "PyPy", reason="Will crash on PyPy")
def test_benchmark_calculate_key2(benchmark):
    password = "secret".encode("utf-16LE")
    cycles = 19
    salt = b""
    expected = b"e\x11\xf1Pz<*\x98*\xe6\xde\xf4\xf6X\x18\xedl\xf2Be\x1a\xca\x19\xd1\\\xeb\xc6\xa6z\xe2\x89\x1d"
    key = benchmark(py7zr.helpers._calculate_key2, password, cycles, salt, "sha256")
    assert key == expected


@pytest.mark.benchmark(group="calculate_key")
@pytest.mark.skip(reason="Don't test in ordinary development")
def test_benchmark_calculate_key3(benchmark):
    password = "secret".encode("utf-16LE")
    cycles = 19
    salt = b""
    expected = b"e\x11\xf1Pz<*\x98*\xe6\xde\xf4\xf6X\x18\xedl\xf2Be\x1a\xca\x19\xd1\\\xeb\xc6\xa6z\xe2\x89\x1d"
    key = benchmark(py7zr.helpers._calculate_key3, password, cycles, salt, "sha256")
    assert key == expected