1
0
Fork 0
mirror of synced 2024-06-25 16:31:09 -04:00
yadm/test/test_alt_copy.py

47 lines
1.1 KiB
Python
Raw Normal View History

"""Test yadm.alt-copy"""
import os
2023-07-10 10:14:33 -04:00
import pytest
@pytest.mark.parametrize(
2023-07-10 15:43:17 -04:00
"setting, expect_link, pre_existing",
[
(None, True, None),
(True, False, None),
(False, True, None),
2023-07-10 15:43:17 -04:00
(True, False, "link"),
(True, False, "file"),
],
ids=[
2023-07-10 15:43:17 -04:00
"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:
2023-07-10 15:43:17 -04:00
os.system(" ".join(yadm_cmd("config", "yadm.alt-copy", str(setting))))
2023-07-10 15:43:17 -04:00
expected_content = f"test_alt_copy##os.{tst_sys}"
2023-07-10 15:43:17 -04:00
alt_path = paths.work.join("test_alt_copy")
if pre_existing == "symlink":
alt_path.mklinkto(expected_content)
2023-07-10 15:43:17 -04:00
elif pre_existing == "file":
alt_path.write("wrong content")
2023-07-10 15:43:17 -04:00
run = runner(yadm_cmd("alt"))
assert run.success
2023-07-10 15:43:17 -04:00
assert run.err == ""
assert "Linking" in run.out
assert alt_path.read() == expected_content
assert alt_path.islink() == expect_link