mirror of
https://github.com/Hopiu/djLint.git
synced 2026-04-02 21:50:23 +00:00
75 lines
2.4 KiB
Python
75 lines
2.4 KiB
Python
"""Djlint tests specific to gitignore configuration.
|
|
|
|
run::
|
|
|
|
pytest tests/test_config_gitignore.py --cov=src/djlint --cov-branch \
|
|
--cov-report xml:coverage.xml --cov-report term-missing
|
|
|
|
for a single test, run::
|
|
|
|
pytest tests/test_config_gitignore.py::test_pyproject --cov=src/djlint \
|
|
--cov-branch --cov-report xml:coverage.xml --cov-report term-missing
|
|
|
|
"""
|
|
# pylint: disable=C0116
|
|
import os
|
|
from pathlib import Path
|
|
|
|
from click.testing import CliRunner
|
|
|
|
from src.djlint import main as djlint
|
|
|
|
|
|
def test_cli(runner: CliRunner) -> None:
|
|
result = runner.invoke(djlint, ["tests/config_gitignore/html_two.html", "--check"])
|
|
assert result.exit_code == 1
|
|
|
|
# create .git folder to make root
|
|
Path("tests/config_gitignore/.git").mkdir(parents=True, exist_ok=True)
|
|
# add a gitignore file
|
|
with open("tests/config_gitignore/.gitignore", "w") as git:
|
|
git.write("html_two.html")
|
|
|
|
result = runner.invoke(
|
|
djlint, ["tests/config_gitignore/html_two.html", "--check", "--use-gitignore"]
|
|
)
|
|
|
|
assert result.exit_code == 0
|
|
|
|
result = runner.invoke(djlint, ["tests/config_gitignore/html_two.html", "--check"])
|
|
assert result.exit_code == 1
|
|
|
|
os.remove("tests/config_gitignore/.gitignore")
|
|
|
|
|
|
def test_pyproject(runner: CliRunner) -> None:
|
|
result = runner.invoke(djlint, ["tests/config_gitignore/html_two.html", "--check"])
|
|
assert result.exit_code == 1
|
|
|
|
# make a root
|
|
Path("tests/config_gitignore/.git").mkdir(parents=True, exist_ok=True)
|
|
# add a gitignore file
|
|
with open("tests/config_gitignore/.gitignore", "w") as git:
|
|
git.write("html_two.html")
|
|
|
|
with open("tests/config_gitignore/pyproject.toml", "w") as git:
|
|
git.write("[tool]\n[tool.djlint]\nuse_gitignore=true")
|
|
|
|
result = runner.invoke(djlint, ["tests/config_gitignore/html_two.html", "--check"])
|
|
|
|
assert result.exit_code == 0
|
|
|
|
with open("tests/config_gitignore/pyproject.toml", "w") as git:
|
|
git.write("[tool]\n[tool.djlint]\nuse_gitignore=false")
|
|
|
|
result = runner.invoke(djlint, ["tests/config_gitignore/html_two.html", "--check"])
|
|
assert result.exit_code == 1
|
|
|
|
# verify cli overrides pyproject
|
|
result = runner.invoke(
|
|
djlint, ["tests/config_gitignore/html_two.html", "--check", "--use-gitignore"]
|
|
)
|
|
assert result.exit_code == 0
|
|
|
|
os.remove("tests/config_gitignore/.gitignore")
|
|
os.remove("tests/config_gitignore/pyproject.toml")
|