1
0
Fork 0
mirror of synced 2024-06-02 23:31:10 -04:00
yadm/test/test_unit_report_invalid_alts.py

31 lines
831 B
Python
Raw Normal View History

"""Unit tests: report_invalid_alts"""
import pytest
2023-07-10 15:43:17 -04:00
@pytest.mark.parametrize("valid", [True, False], ids=["valid", "no_valid"])
@pytest.mark.parametrize("previous", [True, False], ids=["prev", "no_prev"])
def test_report_invalid_alts(runner, yadm, valid, previous):
"""Use report_invalid_alts"""
2023-07-10 15:43:17 -04:00
lwi = ""
alts = "INVALID_ALT=()"
if previous:
2023-07-10 15:43:17 -04:00
lwi = "LEGACY_WARNING_ISSUED=1"
if not valid:
alts = 'INVALID_ALT=("file##invalid")'
script = f"""
YADM_TEST=1 source {yadm}
{lwi}
{alts}
report_invalid_alts
"""
2023-07-10 15:43:17 -04:00
run = runner(command=["bash"], inp=script)
assert run.success
2023-07-10 15:43:17 -04:00
assert run.out == ""
if not valid and not previous:
2023-07-10 15:43:17 -04:00
assert "WARNING" in run.err
assert "file##invalid" in run.err
else:
2023-07-10 15:43:17 -04:00
assert run.err == ""