Warning
This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.
Source code for galaxy.tool_util.verify.asserts.size
from typing import Optional
from ._util import _assert_number
[docs]def assert_has_size(
output_bytes,
value: Optional[int] = None,
delta: int = 0,
min: Optional[int] = None,
max: Optional[int] = None,
negate: bool = False,
):
"""
Asserts the specified output has a size of the specified value,
allowing for absolute (delta) and relative (delta_frac) difference.
"""
output_size = len(output_bytes)
_assert_number(
output_size,
value,
delta,
min,
max,
negate,
"{expected} file size of {n}+-{delta}",
"{expected} file size to be in [{min}:{max}]",
)