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
|
import pytest
import os
import sys
test_data=[
(b''),
(os.urandom(8 * 1024)),
(b'0' * 8 * 1024),
(bytearray(b'')),
(bytearray(os.urandom(8 * 1024))),
]
if sys.version_info > (2, 7):
test_data += [
(memoryview(b'')),
(memoryview(os.urandom(8 * 1024)))
]
@pytest.fixture(
params=test_data,
ids=[
'data' + str(i) for i in range(len(test_data))
]
)
def data(request):
return request.param
@pytest.fixture(
params=[
(
{
'store_size': True
}
),
(
{
'store_size': False
}
),
]
)
def store_size(request):
return request.param
@pytest.fixture(
params=[
(
{
'return_bytearray': True
}
),
(
{
'return_bytearray': False
}
),
]
)
def return_bytearray(request):
return request.param
@pytest.fixture
def c_return_bytearray(return_bytearray):
return return_bytearray
@pytest.fixture
def d_return_bytearray(return_bytearray):
return return_bytearray
@pytest.fixture(
params=[
('fast', None)
] + [
('fast', {'acceleration': s}) for s in range(10)
] + [
('high_compression', None)
] + [
('high_compression', {'compression': s}) for s in range(17)
] + [
(None, None)
]
)
def mode(request):
return request.param
|