-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathtest.py
113 lines (89 loc) · 2.79 KB
/
test.py
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import itertools
import os
from typing import List, Mapping, Sequence
from rust import cargo_cmd_name, rust_env
from util import isLinux, run_cmd, get_variants, Variant
from const import DESKTOP_FUZZ_PACKAGE_NAME, DESKTOP_PACKAGE_NAME
def run_clippy(
variants: List[Variant],
features: Mapping[str, Sequence[str]] | None = None,
target: str | None = None,
fail_on_warn: bool = False,
):
args = [cargo_cmd_name(), "clippy", "--locked", "--workspace", "--exclude", "zbus", "--exclude", "zbus_names"]
if target:
args.extend(["--target", target])
if Variant.FULL not in variants:
args.extend(["--exclude", DESKTOP_PACKAGE_NAME, "--exclude", DESKTOP_FUZZ_PACKAGE_NAME])
if features:
args.extend(
[
"--features",
",".join(set(itertools.chain.from_iterable(features.values()))),
]
)
if fail_on_warn:
args.extend(["--", "-D", "warnings"])
run_cmd(
args,
env={
**os.environ,
**rust_env(release=False),
},
)
def run_cargo_tests(
variants: List[Variant],
features: Mapping[str, Sequence[str]] | None = None,
target: str | None = None,
):
args = [cargo_cmd_name()]
args.extend(["build", "--tests", "--locked", "--workspace", "--exclude", DESKTOP_FUZZ_PACKAGE_NAME])
if target:
args.extend(["--target", target])
if Variant.FULL not in variants:
args.extend(["--exclude", DESKTOP_PACKAGE_NAME])
if features:
args.extend(
[
"--features",
",".join(set(itertools.chain.from_iterable(features.values()))),
]
)
run_cmd(
args,
env={
**os.environ,
**rust_env(release=False),
},
)
args = [cargo_cmd_name()]
# Run all lib, bin, and integration tests. Required to exclude running doc tests.
args.extend(
["test", "--locked", "--workspace", "--lib", "--bins", "--test", "*", "--exclude", DESKTOP_FUZZ_PACKAGE_NAME]
)
if target:
args.extend(["--target", target])
# disable desktop tests for now
if isLinux():
args.extend(["--exclude", DESKTOP_PACKAGE_NAME])
if features:
args.extend(
[
"--features",
",".join(set(itertools.chain.from_iterable(features.values()))),
]
)
run_cmd(
args,
env={
**os.environ,
**rust_env(release=False),
},
)
def lint_install_sh():
run_cmd(["shellcheck", "bundle/linux/install.sh"])
def all_tests(clippy_fail_on_warn: bool):
variants = get_variants()
lint_install_sh()
run_cargo_tests(variants=variants)
run_clippy(variants=variants, fail_on_warn=clippy_fail_on_warn)