mirror of
https://github.com/TheLocehiliosan/yadm
synced 2024-10-27 20:34:27 +00:00
5ae553b078
Obtained from /etc/os-release: ID_LIKE. Alternate attributes f & distro_family.
27 lines
863 B
Python
27 lines
863 B
Python
"""Unit tests: query_distro_family"""
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
'condition', ['os-release', 'os-release-quotes', 'missing'])
|
|
def test_query_distro_family(runner, yadm, tmp_path, condition):
|
|
"""Match ID_LIKE when present"""
|
|
test_family = 'testfamily'
|
|
os_release = tmp_path.joinpath('os-release')
|
|
if 'os-release' in condition:
|
|
quotes = '"' if 'quotes' in condition else ''
|
|
os_release.write_text(
|
|
f"testing\nID_LIKE={quotes}{test_family}{quotes}\nfamily")
|
|
script = f"""
|
|
YADM_TEST=1 source {yadm}
|
|
OS_RELEASE="{os_release}"
|
|
query_distro_family
|
|
"""
|
|
run = runner(command=['bash'], inp=script)
|
|
assert run.success
|
|
assert run.err == ''
|
|
if 'os-release' in condition:
|
|
assert run.out.rstrip() == test_family
|
|
else:
|
|
assert run.out.rstrip() == ''
|