Skip to content

Commit 4d295e8

Browse files
cavcrosbyaudgirka
andauthored
Do inventory parsing non-multithreaded (#4447)
Co-authored-by: Ajinkya Udgirkar <[email protected]>
1 parent c6d9660 commit 4d295e8

File tree

3 files changed

+36
-9
lines changed

3 files changed

+36
-9
lines changed

src/ansiblelint/runner.py

+12-8
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ def _run(self) -> list[MatchError]:
246246
def worker(lintable: Lintable) -> list[MatchError]:
247247
return self._get_ansible_syntax_check_matches(
248248
lintable=lintable,
249+
inventory_opts=inventory_opts,
249250
app=self.app,
250251
)
251252

@@ -257,6 +258,15 @@ def worker(lintable: Lintable) -> list[MatchError]:
257258
continue
258259
files.append(lintable)
259260

261+
inventory_opts = [
262+
inventory_opt
263+
for inventory_opts in [
264+
("-i", inventory_file)
265+
for inventory_file in self._get_inventory_files(self.app)
266+
]
267+
for inventory_opt in inventory_opts
268+
]
269+
260270
# avoid resource leak warning, https://github.com/python/cpython/issues/90549
261271
# pylint: disable=unused-variable
262272
global_resource = multiprocessing.Semaphore() # noqa: F841
@@ -304,6 +314,7 @@ def worker(lintable: Lintable) -> list[MatchError]:
304314
def _get_ansible_syntax_check_matches(
305315
self,
306316
lintable: Lintable,
317+
inventory_opts: list[str],
307318
app: App,
308319
) -> list[MatchError]:
309320
"""Run ansible syntax check and return a list of MatchError(s)."""
@@ -346,14 +357,7 @@ def _get_ansible_syntax_check_matches(
346357
playbook_path = str(lintable.path.expanduser())
347358
cmd = [
348359
"ansible-playbook",
349-
*[
350-
inventory_opt
351-
for inventory_opts in [
352-
("-i", inventory_file)
353-
for inventory_file in self._get_inventory_files(app)
354-
]
355-
for inventory_opt in inventory_opts
356-
],
360+
*inventory_opts,
357361
"--syntax-check",
358362
playbook_path,
359363
]

test/test_app.py

+23
Original file line numberDiff line numberDiff line change
@@ -97,3 +97,26 @@ def test_with_inventory_via_ansible_cfg(tmp_path: Path) -> None:
9797

9898
result = run_ansible_lint(lintable.filename, cwd=tmp_path)
9999
assert result.returncode == RC.SUCCESS
100+
101+
102+
def test_with_inventory_concurrent_syntax_checks(tmp_path: Path) -> None:
103+
"""Validate using inventory file with concurrent syntax checks aren't faulty."""
104+
(tmp_path / "ansible.cfg").write_text("[defaults]\ninventory = foo\n")
105+
(tmp_path / "foo").write_text("[group_name]\nhost1\nhost2\n")
106+
lintable1 = Lintable(tmp_path / "playbook1.yml")
107+
lintable2 = Lintable(tmp_path / "playbook2.yml")
108+
lintable1.content = "---\n- name: Test\n hosts:\n - group_name\n serial: \"{{ batch | default(groups['group_name'] | length) }}\"\n"
109+
lintable2.content = "---\n- name: Test\n hosts:\n - group_name\n serial: \"{{ batch | default(groups['group_name'] | length) }}\"\n"
110+
lintable1.kind = "playbook"
111+
lintable2.kind = "playbook"
112+
lintable1.write(force=True)
113+
lintable2.write(force=True)
114+
115+
counter = 0
116+
while counter < 3:
117+
result = run_ansible_lint(lintable1.filename, lintable2.filename, cwd=tmp_path)
118+
assert result.returncode == RC.SUCCESS
119+
# AttributeError err is expected to look like what's reported here,
120+
# https://github.com/ansible/ansible-lint/issues/4446.
121+
assert "AttributeError" not in result.stderr
122+
counter += 1

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ setenv =
7575
PRE_COMMIT_COLOR = always
7676
# Number of expected test passes, safety measure for accidental skip of
7777
# tests. Update value if you add/remove tests. (tox-extra)
78-
PYTEST_REQPASS = 905
78+
PYTEST_REQPASS = 906
7979
FORCE_COLOR = 1
8080
pre: PIP_PRE = 1
8181
allowlist_externals =

0 commit comments

Comments
 (0)