mirror of
https://github.com/copier-org/copier.git
synced 2025-05-05 23:42:55 +00:00
181 lines
4.8 KiB
Python
181 lines
4.8 KiB
Python
import subprocess
|
|
import sys
|
|
from pathlib import Path
|
|
from typing import Callable, Generator
|
|
|
|
import pytest
|
|
import yaml
|
|
from plumbum import local
|
|
from plumbum.cmd import git
|
|
|
|
from copier.cli import CopierApp
|
|
|
|
from .helpers import COPIER_CMD, build_file_tree
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def template_path(tmp_path_factory) -> str:
|
|
root = tmp_path_factory.mktemp("template")
|
|
build_file_tree(
|
|
{
|
|
root
|
|
/ "{{ _copier_conf.answers_file }}.jinja": """\
|
|
# Changes here will be overwritten by Copier
|
|
{{ _copier_answers|to_nice_yaml }}
|
|
""",
|
|
root / "a.txt": "EXAMPLE_CONTENT",
|
|
}
|
|
)
|
|
return str(root)
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def template_path_with_dot_config(
|
|
tmp_path_factory,
|
|
) -> Generator[Callable[[str], str], str, None]:
|
|
def _template_path_with_dot_config(config_folder: str) -> str:
|
|
root = tmp_path_factory.mktemp("template")
|
|
build_file_tree(
|
|
{
|
|
root
|
|
/ config_folder
|
|
/ "{{ _copier_conf.answers_file }}.jinja": """\
|
|
# Changes here will be overwritten by Copier
|
|
{{ _copier_answers|to_nice_yaml }}
|
|
""",
|
|
root / "a.txt": "EXAMPLE_CONTENT",
|
|
}
|
|
)
|
|
return str(root)
|
|
|
|
yield _template_path_with_dot_config
|
|
|
|
|
|
def test_good_cli_run(tmp_path, template_path):
|
|
run_result = CopierApp.run(
|
|
["--quiet", "-a", "altered-answers.yml", str(template_path), str(tmp_path)],
|
|
exit=False,
|
|
)
|
|
a_txt = tmp_path / "a.txt"
|
|
assert run_result[1] == 0
|
|
assert a_txt.exists()
|
|
assert a_txt.is_file()
|
|
assert a_txt.read_text() == "EXAMPLE_CONTENT"
|
|
answers = yaml.safe_load((tmp_path / "altered-answers.yml").read_text())
|
|
assert answers["_src_path"] == str(template_path)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"config_folder",
|
|
map(
|
|
Path,
|
|
["", ".config/", ".config/subconfig/", ".config/subconfig/deep_nested_config/"],
|
|
),
|
|
)
|
|
def test_good_cli_run_dot_config(
|
|
tmp_path, template_path_with_dot_config, config_folder
|
|
):
|
|
"""Function to test different locations of the answersfile.
|
|
|
|
Added based on the discussion: https://github.com/copier-org/copier/discussions/859
|
|
"""
|
|
|
|
src = template_path_with_dot_config(config_folder)
|
|
|
|
with local.cwd(src):
|
|
git_commands()
|
|
|
|
run_result = CopierApp.run(
|
|
[
|
|
"--quiet",
|
|
"-a",
|
|
config_folder / "altered-answers.yml",
|
|
src,
|
|
str(tmp_path),
|
|
],
|
|
exit=False,
|
|
)
|
|
a_txt = tmp_path / "a.txt"
|
|
assert run_result[1] == 0
|
|
assert a_txt.exists()
|
|
assert a_txt.is_file()
|
|
assert a_txt.read_text() == "EXAMPLE_CONTENT"
|
|
answers = yaml.safe_load(
|
|
(tmp_path / config_folder / "altered-answers.yml").read_text()
|
|
)
|
|
assert answers["_src_path"] == src
|
|
|
|
with local.cwd(str(tmp_path)):
|
|
git_commands()
|
|
|
|
run_update = CopierApp.invoke(
|
|
str(tmp_path), answers_file=config_folder / "altered-answers.yml", quiet=True
|
|
)
|
|
assert run_update[1] == 0
|
|
assert answers["_src_path"] == src
|
|
|
|
|
|
def git_commands():
|
|
git("init")
|
|
git("add", "-A")
|
|
git("commit", "-m", "init")
|
|
|
|
|
|
def test_help():
|
|
COPIER_CMD("--help-all")
|
|
|
|
|
|
def test_update_help():
|
|
assert "-o, --conflict" in COPIER_CMD("update", "--help")
|
|
|
|
|
|
def test_python_run():
|
|
cmd = [sys.executable, "-m", "copier", "--help-all"]
|
|
assert subprocess.run(cmd, check=True).returncode == 0
|
|
|
|
|
|
def test_skip_filenotexists(tmp_path, template_path):
|
|
run_result = CopierApp.run(
|
|
[
|
|
"--quiet",
|
|
"-a",
|
|
"altered-answers.yml",
|
|
"--overwrite",
|
|
"--skip=a.txt",
|
|
str(template_path),
|
|
str(tmp_path),
|
|
],
|
|
exit=False,
|
|
)
|
|
a_txt = tmp_path / "a.txt"
|
|
assert run_result[1] == 0
|
|
assert a_txt.exists()
|
|
assert a_txt.is_file()
|
|
assert a_txt.read_text() == "EXAMPLE_CONTENT"
|
|
answers = yaml.safe_load((tmp_path / "altered-answers.yml").read_text())
|
|
assert answers["_src_path"] == str(template_path)
|
|
|
|
|
|
def test_skip_fileexists(tmp_path, template_path):
|
|
a_txt = tmp_path / "a.txt"
|
|
with open(a_txt, "w") as f_a:
|
|
f_a.write("PREVIOUS_CONTENT")
|
|
run_result = CopierApp.run(
|
|
[
|
|
"--quiet",
|
|
"-a",
|
|
"altered-answers.yml",
|
|
"--overwrite",
|
|
"--skip=a.txt",
|
|
str(template_path),
|
|
str(tmp_path),
|
|
],
|
|
exit=False,
|
|
)
|
|
assert run_result[1] == 0
|
|
assert a_txt.exists()
|
|
assert a_txt.is_file()
|
|
assert a_txt.read_text() == "PREVIOUS_CONTENT"
|
|
answers = yaml.safe_load((tmp_path / "altered-answers.yml").read_text())
|
|
assert answers["_src_path"] == str(template_path)
|