1
0
Fork 0
mirror of synced 2024-12-04 14:45:36 -05:00
yadm/test/test_alt_copy.py
Erik Flodin 04df6e42e0
Refactor alt handling
* Simplify score_file() by using case in instead of nested ifs with regexps.
* Merge record_score() and record_template().
* Alt condition processing no longer stops when a template condition is seen
  but continues processing to verify that all conditions are valid (as the
  documentation says it should). Fixes #478.
* Support alt dirs with deeply nested tracked files (fixes #490).
* Use git ls-files to filter out which tracked files to consider for alt
  processing. Should speed up auto-alt (#505).
* Use nocasematch when comparing distro and distro_family. Fixed #455.
2024-11-29 23:37:19 +01:00

47 lines
1.2 KiB
Python

"""Test yadm.alt-copy"""
import os
import pytest
@pytest.mark.parametrize(
"setting, expect_link, pre_existing",
[
(None, True, None),
(True, False, None),
(False, True, None),
(True, False, "link"),
(True, False, "file"),
],
ids=[
"unset",
"true",
"false",
"pre-existing symlink",
"pre-existing file",
],
)
@pytest.mark.usefixtures("ds1_copy")
def test_alt_copy(runner, yadm_cmd, paths, tst_sys, setting, expect_link, pre_existing):
"""Test yadm.alt-copy"""
if setting is not None:
os.system(" ".join(yadm_cmd("config", "yadm.alt-copy", str(setting))))
expected_content = f"test_alt_copy##os.{tst_sys}"
alt_path = paths.work.join("test_alt_copy")
if pre_existing == "symlink":
alt_path.mklinkto(expected_content)
elif pre_existing == "file":
alt_path.write("wrong content")
run = runner(yadm_cmd("alt"))
assert run.success
assert run.err == ""
action = "Copying" if setting is True else "Linking"
assert action in run.out
assert alt_path.read() == expected_content
assert alt_path.islink() == expect_link