Merge in RR/pyinfra from 2.0.0-documentation to 2.0.0
Squashed commit of the following:
commit 7a794bdcc987631cdc4d89b5620359464e2e018e
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Mon Jul 4 13:05:26 2022 +0200
removed obsolete imports
commit 3fc6a7ef5d0172dbce1c4292d245eced2f378b5a
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Mon Jul 4 11:47:12 2022 +0200
enable docker-compose fixture
commit 36d8d3bc851b06d94cf12a73048a00a67ef79c42
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Mon Jul 4 11:46:53 2022 +0200
renaming
commit 3bf00d11cd041dff325b66f13fcd00d3ce96b8b5
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Thu Jun 30 12:47:57 2022 +0200
refactoring: added cached pipeline factory
commit 90e735852af2f86e35be845fabf28494de952edb
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Wed Jun 29 13:47:08 2022 +0200
renaming
commit 93b3d4b202b41183ed8cabe193a4bfa03f520787
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Wed Jun 29 13:25:03 2022 +0200
further refactored server setup code: moving and decomplecting
commit 8b2ed83c7ade5bd811cb045d56fbfb0353fa385e
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Wed Jun 29 12:53:09 2022 +0200
refactored server setup code: factored out and decoupled operation registry and prometheus summary registry
commit da2dce762bdd6889165fbb320dc9ee8a0bd089b2
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Tue Jun 28 19:40:04 2022 +0200
adjusted test target
commit 70df7911b9b92f4b72afd7d4b33ca2bbf136295e
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Tue Jun 28 19:32:38 2022 +0200
minor refactoring
commit 0937b63dc000346559bde353381304b273244109
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Mon Jun 27 13:59:59 2022 +0200
support for empty operation suffix
commit 5e56917970962a2e69bbd66a324bdb4618c040bd
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Mon Jun 27 12:52:36 2022 +0200
minor refactoring
commit 40665a7815ae5927b3877bda14fb77deef37d667
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Mon Jun 27 10:57:04 2022 +0200
optimization: prefix filtering via storage API for get_all_object_names
commit af0892a899d09023eb0e61eecb63e03dc2fd3b60
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Mon Jun 27 10:55:47 2022 +0200
topological sorting of definitions by caller hierarchy
166 lines
4.2 KiB
Python
166 lines
4.2 KiB
Python
from functools import partial
|
|
from itertools import starmap, repeat
|
|
|
|
import numpy as np
|
|
import pytest
|
|
from PIL import Image
|
|
from funcy import lmap, compose, flatten, lflatten, omit, second, first, lzip, merge
|
|
|
|
from pyinfra.server.dispatcher.dispatcher import Nothing
|
|
from pyinfra.server.normalization import normalize_item
|
|
from pyinfra.server.packing import pack, unpack
|
|
from pyinfra.utils.func import star, lift, lstarlift
|
|
from test.utils.image import image_to_bytes
|
|
from test.utils.pdf import pdf_stream
|
|
|
|
|
|
@pytest.fixture
|
|
def input_data_items(unencoded_input_data, input_data_encoder):
|
|
return input_data_encoder(unencoded_input_data)
|
|
|
|
|
|
@pytest.fixture
|
|
def unencoded_input_data(item_type, unencoded_strings, unencoded_images, unencoded_pdfs):
|
|
if item_type == "string":
|
|
return unencoded_strings
|
|
elif item_type == "image":
|
|
return unencoded_images
|
|
elif item_type == "pdf":
|
|
return unencoded_pdfs
|
|
else:
|
|
raise ValueError(f"Unknown item type {item_type}")
|
|
|
|
|
|
@pytest.fixture
|
|
def input_data_encoder(item_type):
|
|
if item_type == "string":
|
|
return strings_to_bytes
|
|
elif item_type == "image":
|
|
return images_to_bytes
|
|
elif item_type == "pdf":
|
|
return pdfs_to_bytes
|
|
else:
|
|
raise ValueError(f"Unknown item type {item_type}")
|
|
|
|
|
|
@pytest.fixture
|
|
def unencoded_pdfs(n_items, unencoded_pdf):
|
|
return [unencoded_pdf] * n_items
|
|
|
|
|
|
def pdfs_to_bytes(unencoded_pdfs):
|
|
return [pdf_stream(pdf) for pdf in unencoded_pdfs]
|
|
|
|
|
|
@pytest.fixture
|
|
def target_data_items(input_data_items, core_operation, metadata):
|
|
|
|
if core_operation is Nothing:
|
|
return Nothing
|
|
|
|
op = compose(normalize_item, core_operation)
|
|
expected = lflatten(starmap(op, zip(input_data_items, metadata)))
|
|
return expected
|
|
|
|
|
|
@pytest.fixture
|
|
def unencoded_strings(n_items):
|
|
return [f"content{i}" for i in range(n_items)]
|
|
|
|
|
|
def strings_to_bytes(strings):
|
|
return [bytes(s, encoding="utf8") for s in strings]
|
|
|
|
|
|
@pytest.fixture
|
|
def targets(data_message_pairs, input_data_items, operation, metadata, server_side_test, queue_message_metadata):
|
|
"""TODO: this has become super wonky"""
|
|
metadata = [{**m1, **m2} for m1, m2 in zip(lmap(second, data_message_pairs), metadata)]
|
|
|
|
if operation is Nothing:
|
|
return Nothing
|
|
|
|
op = compose(lift(star(pack)), normalize_item, operation)
|
|
|
|
try:
|
|
response_data, response_metadata = zip(*map(unpack, flatten(starmap(op, zip(input_data_items, metadata)))))
|
|
|
|
queue_message_keys = ["id"] * (not server_side_test) + [*first(queue_message_metadata).keys()]
|
|
response_metadata = lmap(partial(omit, keys=queue_message_keys), response_metadata)
|
|
expected = lzip(response_data, response_metadata)
|
|
|
|
except ValueError:
|
|
expected = []
|
|
|
|
return expected
|
|
|
|
|
|
@pytest.fixture
|
|
def endpoint(url, operation_name):
|
|
return f"{url}/{operation_name}"
|
|
|
|
|
|
@pytest.fixture(params=["rest", "basic"])
|
|
def client_pipeline_type(request):
|
|
return request.param
|
|
|
|
|
|
@pytest.fixture(params=[1, 0, 5])
|
|
def n_items(request):
|
|
return request.param
|
|
|
|
|
|
@pytest.fixture(params=[0, 100])
|
|
def n_pages(request):
|
|
return request.param
|
|
|
|
|
|
@pytest.fixture(params=[1, 5])
|
|
def buffer_size(request):
|
|
return request.param
|
|
|
|
|
|
def array_to_image(array) -> Image.Image:
|
|
return Image.fromarray(np.uint8(array * 255), mode="RGB")
|
|
|
|
|
|
def input_batch(n_items):
|
|
return np.random.random_sample(size=(n_items, 3, 30, 30))
|
|
|
|
|
|
@pytest.fixture
|
|
def unencoded_images(n_items):
|
|
return lmap(array_to_image, input_batch(n_items))
|
|
|
|
|
|
def images_to_bytes(images):
|
|
return lmap(image_to_bytes, images)
|
|
|
|
|
|
@pytest.fixture
|
|
def metadata(n_items, many_to_n):
|
|
"""storage metadata
|
|
TODO: rename
|
|
"""
|
|
return list(repeat({"key": "value"}, times=n_items))
|
|
|
|
|
|
@pytest.fixture
|
|
def queue_message_metadata(n_items, operation_name):
|
|
def metadata(i):
|
|
return merge(
|
|
{
|
|
"dossierId": "folder",
|
|
"fileId": f"file{i}",
|
|
"pages": [0, 2, 3],
|
|
},
|
|
({"operation": operation_name} if operation_name else {}),
|
|
)
|
|
|
|
return lmap(metadata, range(n_items))
|
|
|
|
|
|
@pytest.fixture
|
|
def packages(input_data_items, metadata):
|
|
return lstarlift(pack)(zip(input_data_items, metadata))
|