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
|
import textwrap
import pytest
from debputy.lsp.lsp_debian_control_reference_data import CURRENT_STANDARDS_VERSION
from debputy.lsp.lsp_debian_tests_control import _lint_debian_tests_control
from debputy.packages import DctrlParser
from debputy.plugin.api.feature_set import PluginProvidedFeatureSet
from lint_tests.lint_tutil import (
group_diagnostics_by_severity,
requires_levenshtein,
LintWrapper,
)
try:
from lsprotocol.types import Diagnostic, DiagnosticSeverity
except ImportError:
pass
@pytest.fixture
def line_linter(
debputy_plugin_feature_set: PluginProvidedFeatureSet,
lint_dctrl_parser: DctrlParser,
) -> LintWrapper:
return LintWrapper(
"/nowhere/debian/tests/control",
_lint_debian_tests_control,
debputy_plugin_feature_set,
lint_dctrl_parser,
)
@requires_levenshtein
def test_dtctrl_lint_live_example_silx(line_linter: LintWrapper) -> None:
lines = textwrap.dedent(
"""\
Tests: no-opencl
Depends:
@,
python3-all,
python3-pytest,
python3-pytest-mock,
python3-pytest-xvfb,
xauth,
xvfb,
Restrictions: allow-stderr
Tests: opencl
Depends:
@,
clinfo,
python3-all,
python3-pytest,
python3-pytest-mock,
python3-pytest-xvfb,
xauth,
xvfb,
Architecture: !i386
Restrictions: allow-stderr
Test-Command: xvfb-run -s "-screen 0 1024x768x24 -ac +extension GLX +render -noreset" sh debian/tests/gui
Depends:
mesa-utils,
silx,
xauth,
xvfb,
Restrictions: allow-stderr
"""
).splitlines(keepends=True)
diagnostics = line_linter(lines)
print(diagnostics)
assert not diagnostics
|