04df6e42e0
* 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.
39 lines
991 B
Python
39 lines
991 B
Python
"""Unit tests: remove_stale_links"""
|
|
|
|
import os
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize("linked", [True, False])
|
|
@pytest.mark.parametrize("kind", ["file", "symlink"])
|
|
def test_remove_stale_links(runner, yadm, tmpdir, kind, linked):
|
|
"""Test remove_stale_links()"""
|
|
|
|
source_file = tmpdir.join("source_file")
|
|
source_file.write("source file", ensure=True)
|
|
link = tmpdir.join("link")
|
|
|
|
if kind == "file":
|
|
link.write("link file", ensure=True)
|
|
else:
|
|
os.system(f"ln -s {source_file} {link}")
|
|
|
|
alt_linked = ""
|
|
if linked:
|
|
alt_linked = source_file
|
|
|
|
script = f"""
|
|
YADM_TEST=1 source {yadm}
|
|
possible_alt_targets=({link})
|
|
alt_linked=({alt_linked})
|
|
function rm() {{ echo rm "$@"; }}
|
|
remove_stale_links
|
|
"""
|
|
|
|
run = runner(command=["bash"], inp=script)
|
|
assert run.err == ""
|
|
if kind == "symlink" and not linked:
|
|
assert f"rm -f {link}" in run.out
|
|
else:
|
|
assert run.out == ""
|