X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=test%2Fintegration%2Ftestlib%2Fcheck.py;h=3b7dec170286fbebd79d35d46281cf176be6df8d;hb=fa87753574693e3d71dd035983cbdfb136fdb0d8;hp=77865b1a3332b7a6ed734ab789e409f2a8495db6;hpb=9a012e485a2ed5ea5a28903d93bc625767bb20b2;p=tinc diff --git a/test/integration/testlib/check.py b/test/integration/testlib/check.py index 77865b1a..3b7dec17 100755 --- a/test/integration/testlib/check.py +++ b/test/integration/testlib/check.py @@ -1,6 +1,8 @@ """Simple assertions which print the expected and received values on failure.""" +import os.path import typing as T +from pathlib import Path from .log import log @@ -8,6 +10,12 @@ Val = T.TypeVar("Val") Num = T.TypeVar("Num", int, float) +def blank(value: T.AnyStr) -> None: + """Check that value is an empty or blank string.""" + if not isinstance(value, str) or value.strip(): + raise ValueError(f'expected "{value!r}" to be a blank string') + + def false(value: T.Any) -> None: """Check that value is falsy.""" if value: @@ -20,6 +28,12 @@ def true(value: T.Any) -> None: raise ValueError(f'expected "{value}" to be truthy', value) +def port(value: int) -> None: + """Check that value resembles a port.""" + if not isinstance(value, int) or value < 1 or value > 65535: + raise ValueError(f'expected "{value}" to be be a port') + + def equals(expected: Val, actual: Val) -> None: """Check that the two values are equal.""" if expected != actual: @@ -32,12 +46,25 @@ def has_prefix(text: T.AnyStr, prefix: T.AnyStr) -> None: raise ValueError(f"expected {text!r} to start with {prefix!r}") +def greater(value: Num, than: Num) -> None: + """Check that value is greater than the other value.""" + if value <= than: + raise ValueError(f"value {value} must be greater than {than}") + + def in_range(value: Num, gte: Num, lte: Num) -> None: """Check that value lies in the range [min, max].""" if not gte >= value >= lte: raise ValueError(f"value {value} must be between {gte} and {lte}") +def lines(text: T.AnyStr, num: int) -> None: + """Check that text splits into `num` lines.""" + rows = text.splitlines() + if len(rows) != num: + raise ValueError(f"expected {num} lines, got {len(rows)}: {rows}") + + def is_in(needle: Val, *haystacks: T.Container[Val]) -> None: """Check that at least one haystack includes needle.""" for haystack in haystacks: @@ -74,3 +101,9 @@ def files_eq(path0: str, path1: str) -> None: if content0 != content1: raise ValueError(f"expected files {path0} and {path1} to match") + + +def file_exists(path: T.Union[str, Path]) -> None: + """Check that file or directory exists.""" + if not os.path.exists(path): + raise ValueError("expected path '{path}' to exist")