Convert tincd path args to absolute paths
[tinc] / test / integration / testlib / check.py
1 """Simple assertions which print the expected and received values on failure."""
2
3 import os.path
4 import typing as T
5 from pathlib import Path
6
7 from .log import log
8
9 Val = T.TypeVar("Val")
10 Num = T.TypeVar("Num", int, float)
11
12
13 def false(value: T.Any) -> None:
14     """Check that value is falsy."""
15     if value:
16         raise ValueError(f'expected "{value}" to be falsy')
17
18
19 def true(value: T.Any) -> None:
20     """Check that value is truthy."""
21     if not value:
22         raise ValueError(f'expected "{value}" to be truthy', value)
23
24
25 def port(value: int) -> None:
26     """Check that value resembles a port."""
27     if not isinstance(value, int) or value < 1 or value > 65535:
28         raise ValueError(f'expected "{value}" to be be a port')
29
30
31 def equals(expected: Val, actual: Val) -> None:
32     """Check that the two values are equal."""
33     if expected != actual:
34         raise ValueError(f'expected "{expected}", got "{actual}"')
35
36
37 def has_prefix(text: T.AnyStr, prefix: T.AnyStr) -> None:
38     """Check that text has prefix."""
39     if not text.startswith(prefix):
40         raise ValueError(f"expected {text!r} to start with {prefix!r}")
41
42
43 def greater(value: Num, than: Num) -> None:
44     """Check that value is greater than the other value."""
45     if value <= than:
46         raise ValueError(f"value {value} must be greater than {than}")
47
48
49 def in_range(value: Num, gte: Num, lte: Num) -> None:
50     """Check that value lies in the range [min, max]."""
51     if not gte >= value >= lte:
52         raise ValueError(f"value {value} must be between {gte} and {lte}")
53
54
55 def is_in(needle: Val, *haystacks: T.Container[Val]) -> None:
56     """Check that at least one haystack includes needle."""
57     for haystack in haystacks:
58         if needle in haystack:
59             return
60     raise ValueError(f'expected any of "{haystacks}" to include "{needle}"')
61
62
63 def not_in(needle: Val, *haystacks: T.Container[Val]) -> None:
64     """Check that all haystacks do not include needle."""
65     for haystack in haystacks:
66         if needle in haystack:
67             raise ValueError(f'expected all "{haystacks}" NOT to include "{needle}"')
68
69
70 def nodes(node, want_nodes: int) -> None:
71     """Check that node can reach exactly N nodes (including itself)."""
72     log.debug("want %d reachable nodes from tinc %s", want_nodes, node)
73     stdout, _ = node.cmd("dump", "reachable", "nodes")
74     equals(want_nodes, len(stdout.splitlines()))
75
76
77 def files_eq(path0: str, path1: str) -> None:
78     """Compare file contents, ignoring whitespace at both ends."""
79     log.debug("comparing files %s and %s", path0, path1)
80
81     def read(path: str) -> str:
82         log.debug("reading file %s", path)
83         with open(path, "r", encoding="utf-8") as f:
84             return f.read().strip()
85
86     content0 = read(path0)
87     content1 = read(path1)
88
89     if content0 != content1:
90         raise ValueError(f"expected files {path0} and {path1} to match")
91
92
93 def file_exists(path: T.Union[str, Path]) -> None:
94     """Check that file or directory exists."""
95     if not os.path.exists(path):
96         raise ValueError("expected path '{path}' to exist")