mirror of
https://github.com/TheLocehiliosan/yadm.git
synced 2025-05-17 22:02:08 +00:00

unless yadm.auto-exclude is set to false (#234, #465). Alt files exclude pattern will be written to $GIT_DIR/info/exclude.yadm-alt and encrypt files exclude patthern to ...yadm-encrypt. Then these two files will be merged together and added to $GIT_DIR/info/exclude whenever one of them has changed.
60 lines
2 KiB
Python
60 lines
2 KiB
Python
"""Unit tests: exclude_encrypted"""
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize("exclude", ["missing", "outdated", "up-to-date"])
|
|
@pytest.mark.parametrize("encrypt_exists", [True, False], ids=["encrypt", "no-encrypt"])
|
|
@pytest.mark.parametrize("auto_exclude", [True, False], ids=["enabled", "disabled"])
|
|
def test_exclude_encrypted(runner, tmpdir, yadm, encrypt_exists, auto_exclude, exclude):
|
|
"""Test exclude_encrypted()"""
|
|
|
|
header = """\
|
|
# yadm-auto-excludes
|
|
# This section is managed by yadm.
|
|
# Any edits below will be lost.
|
|
# yadm encrypt
|
|
"""
|
|
|
|
config_function = 'function config() { echo "false";}'
|
|
if auto_exclude:
|
|
config_function = "function config() { return; }"
|
|
|
|
encrypt_file = tmpdir.join("encrypt_file")
|
|
repo_dir = tmpdir.join("repodir")
|
|
exclude_file = repo_dir.join("info/exclude")
|
|
|
|
if encrypt_exists:
|
|
encrypt_file.write("test-encrypt-data\n", ensure=True)
|
|
if exclude == "outdated":
|
|
exclude_file.write(f"original-exclude\n{header}outdated\n", ensure=True)
|
|
elif exclude == "up-to-date":
|
|
exclude_file.write(f"original-exclude\n{header}/test-encrypt-data\n", ensure=True)
|
|
|
|
script = f"""
|
|
YADM_TEST=1 source {yadm}
|
|
{config_function}
|
|
DEBUG=1
|
|
YADM_ENCRYPT="{encrypt_file}"
|
|
YADM_REPO="{repo_dir}"
|
|
exclude_encrypted
|
|
"""
|
|
run = runner(command=["bash"], inp=script)
|
|
assert run.success
|
|
assert run.err == ""
|
|
|
|
if auto_exclude:
|
|
if encrypt_exists:
|
|
assert exclude_file.exists()
|
|
if exclude == "missing":
|
|
assert exclude_file.read() == f"{header}/test-encrypt-data\n"
|
|
else:
|
|
assert exclude_file.read() == ("original-exclude\n" f"{header}/test-encrypt-data\n")
|
|
if exclude != "up-to-date":
|
|
assert f"Updating {exclude_file}" in run.out
|
|
else:
|
|
assert run.out == ""
|
|
else:
|
|
assert run.out == ""
|
|
else:
|
|
assert run.out == ""
|