mirror of
https://github.com/copier-org/copier.git
synced 2025-05-31 23:25:15 +00:00
* refactor(tests): add type hints and clean up * fix: import `Protocol` from `typing-extensions` when using Python 3.7 * fix: import `Literal` from `typing-extensions` when using Python 3.7 * refactor(tests): create template and subproject directory using `tmp_path_factory` fixture * refactor(tests): use OS-agnostic file path separator * refactor(tests): use `/` separator for `skip_if_exists` paths * style: fix formatting error * refactor(tests): expect POSIX path for local repo URL
135 lines
4.7 KiB
Python
135 lines
4.7 KiB
Python
import platform
|
|
from pathlib import Path
|
|
from typing import Mapping
|
|
|
|
import pytest
|
|
|
|
from copier.main import run_auto
|
|
from copier.template import DEFAULT_EXCLUDE
|
|
from copier.types import StrOrPath
|
|
|
|
from .helpers import PROJECT_TEMPLATE, build_file_tree
|
|
|
|
|
|
def test_exclude_recursive(tmp_path: Path) -> None:
|
|
"""Copy is done properly when excluding recursively."""
|
|
src = f"{PROJECT_TEMPLATE}_exclude"
|
|
run_auto(src, tmp_path)
|
|
assert not (tmp_path / "bad").exists()
|
|
assert not (tmp_path / "bad").is_dir()
|
|
|
|
|
|
def test_exclude_recursive_negate(tmp_path: Path) -> None:
|
|
"""Copy is done properly when copy_me.txt is the sole file copied."""
|
|
src = f"{PROJECT_TEMPLATE}_exclude_negate"
|
|
run_auto(src, tmp_path)
|
|
assert (tmp_path / "copy_me.txt").exists()
|
|
assert (tmp_path / "copy_me.txt").is_file()
|
|
assert not (tmp_path / "do_not_copy_me.txt").exists()
|
|
|
|
|
|
def test_config_exclude(tmp_path_factory: pytest.TempPathFactory) -> None:
|
|
src, dst = map(tmp_path_factory.mktemp, ("src", "dst"))
|
|
build_file_tree({src / "copier.yml": "_exclude: ['*.txt']", src / "aaaa.txt": ""})
|
|
run_auto(str(src), dst, quiet=True)
|
|
assert not (dst / "aaaa.txt").exists()
|
|
assert (dst / "copier.yml").exists()
|
|
|
|
|
|
def test_config_exclude_extended(tmp_path_factory: pytest.TempPathFactory) -> None:
|
|
src, dst = map(tmp_path_factory.mktemp, ("src", "dst"))
|
|
build_file_tree({src / "copier.yml": "_exclude: ['*.txt']", src / "aaaa.txt": ""})
|
|
run_auto(str(src), dst, quiet=True, exclude=["*.yml"])
|
|
assert not (dst / "aaaa.txt").exists()
|
|
assert not (dst / "copier.yml").exists()
|
|
|
|
|
|
def test_config_include(tmp_path_factory: pytest.TempPathFactory) -> None:
|
|
src, dst = map(tmp_path_factory.mktemp, ("src", "dst"))
|
|
build_file_tree(
|
|
{src / "copier.yml": "_exclude: ['!.svn']", src / ".svn" / "hello": ""}
|
|
)
|
|
run_auto(str(src), dst, quiet=True)
|
|
assert (dst / ".svn" / "hello").exists()
|
|
assert (dst / "copier.yml").exists()
|
|
|
|
|
|
@pytest.mark.xfail(
|
|
condition=platform.system() in {"Darwin", "Windows"},
|
|
reason="OS without proper UTF-8 filesystem.",
|
|
strict=True,
|
|
)
|
|
def test_path_filter(tmp_path_factory: pytest.TempPathFactory) -> None:
|
|
src, dst = map(tmp_path_factory.mktemp, ("src", "dst"))
|
|
file_excluded: Mapping[StrOrPath, bool] = {
|
|
"x.exclude": True,
|
|
"do_not.exclude!": False,
|
|
# dir patterns and their negations
|
|
Path("exclude_dir", "x"): True,
|
|
Path("exclude_dir", "please_copy_me"): False, # no mercy
|
|
Path("not_exclude_dir", "x!"): False,
|
|
# unicode patterns
|
|
"mañana.txt": True,
|
|
"mañana.txt": False,
|
|
"manana.txt": False,
|
|
}
|
|
build_file_tree(
|
|
{
|
|
(src / "copier.yaml"): (
|
|
"""\
|
|
_exclude:
|
|
# simple file patterns and their negations
|
|
- "*.exclude"
|
|
- "!do_not.exclude"
|
|
# dir patterns and their negations
|
|
- "exclude_dir/"
|
|
- "!exclude_dir/please_copy_me"
|
|
- "!not_exclude_dir/x"
|
|
# unicode patterns
|
|
- "mañana.txt"
|
|
"""
|
|
),
|
|
**{(src / key): str(value) for key, value in file_excluded.items()},
|
|
}
|
|
)
|
|
run_auto(str(src), dst)
|
|
for key, value in file_excluded.items():
|
|
assert (dst / key).exists() != value
|
|
|
|
|
|
def test_config_exclude_with_subdirectory(
|
|
tmp_path_factory: pytest.TempPathFactory,
|
|
) -> None:
|
|
"""Default excludes are not applied when a (true) subdirectory is specified."""
|
|
# Make sure the file under test is in the list of default excludes
|
|
assert "copier.yml" in DEFAULT_EXCLUDE
|
|
|
|
src, dst = map(tmp_path_factory.mktemp, ("src", "dst"))
|
|
build_file_tree(
|
|
{
|
|
src / "copier.yml": "_subdirectory: 'template'",
|
|
src / "template" / "copier.yml": "",
|
|
}
|
|
)
|
|
run_auto(str(src), dst, quiet=True)
|
|
assert (dst / "copier.yml").exists()
|
|
|
|
src, dst = map(tmp_path_factory.mktemp, ("src", "dst"))
|
|
build_file_tree(
|
|
{src / "copier.yml": "_subdirectory: '.'", src / "template" / "copier.yml": ""}
|
|
)
|
|
run_auto(str(src), dst, quiet=True)
|
|
assert not (dst / "template" / "copier.yml").exists()
|
|
|
|
src, dst = map(tmp_path_factory.mktemp, ("src", "dst"))
|
|
build_file_tree(
|
|
{src / "copier.yml": "_subdirectory: ''", src / "template" / "copier.yml": ""}
|
|
)
|
|
run_auto(str(src), dst, quiet=True)
|
|
assert not (dst / "template" / "copier.yml").exists()
|
|
|
|
src, dst = map(tmp_path_factory.mktemp, ("src", "dst"))
|
|
build_file_tree({src / "copier.yml": "", src / "template" / "copier.yml": ""})
|
|
run_auto(str(src), dst, quiet=True)
|
|
assert not (dst / "template" / "copier.yml").exists()
|