Skip to content

Commit

Permalink
Merge pull request #425 from nix-community/more-ruff-lints
Browse files Browse the repository at this point in the history
More ruff lints
  • Loading branch information
Mic92 committed Nov 29, 2023
2 parents 37148e0 + 4dbf3db commit fdbd3fc
Show file tree
Hide file tree
Showing 9 changed files with 85 additions and 69 deletions.
28 changes: 26 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,32 @@
[tool.ruff]
target-version = "py311"
line-length = 88
select = ["ALL"]
ignore = [
# pydocstyle
"D",
# Missing type annotation for `self` in method
"ANN101",
# Trailing comma missing
"COM812",
# Unnecessary `dict` call (rewrite as a literal)
"C408",
# Boolean-typed positional argument in function definition
"FBT001",
# Logging statement uses f-string
"G004",
# disabled on ruff's recommendation as causes problems with the formatter
"ISC001",
# Use of `assert` detected
"S101",
# `subprocess` call: check for execution of untrusted input
"S603",

select = ["E", "F", "I"]
ignore = [ "E501" ]
# FIXME? Maybe we should enable these?
"PLR0913", # Too many arguments in function definition (7 > 5)
"PLR2004", # Magic value used in comparison, consider replacing 4 with a constant variable
"FBT002", # Boolean default positional argument in function definition
]

[tool.mypy]
python_version = "3.10"
Expand Down
23 changes: 0 additions & 23 deletions setup.cfg

This file was deleted.

Empty file added tests/__init__.py
Empty file.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest_plugins = [
"direnv_project",
"root",
"tests.direnv_project",
"tests.root",
]
25 changes: 13 additions & 12 deletions tests/direnv_project.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
import shutil
import textwrap
from collections.abc import Iterator
from dataclasses import dataclass
from pathlib import Path
from tempfile import TemporaryDirectory
from typing import Iterator

import pytest
from procs import run

from .procs import run


@dataclass
class DirenvProject:
dir: Path
directory: Path
nix_direnv: Path

@property
def envrc(self) -> Path:
return self.dir / ".envrc"
return self.directory / ".envrc"

def setup_envrc(self, content: str, strict_env: bool) -> None:
text = textwrap.dedent(
Expand All @@ -27,23 +28,23 @@ def setup_envrc(self, content: str, strict_env: bool) -> None:
"""
)
self.envrc.write_text(text)
run(["direnv", "allow"], cwd=self.dir)
run(["direnv", "allow"], cwd=self.directory)


@pytest.fixture
@pytest.fixture()
def direnv_project(test_root: Path, project_root: Path) -> Iterator[DirenvProject]:
"""
Setups a direnv test project
"""
with TemporaryDirectory() as _dir:
dir = Path(_dir) / "proj"
shutil.copytree(test_root / "testenv", dir)
shutil.copyfile(project_root / "flake.nix", dir / "flake.nix")
shutil.copyfile(project_root / "flake.lock", dir / "flake.lock")
shutil.copyfile(project_root / "treefmt.nix", dir / "treefmt.nix")
directory = Path(_dir) / "proj"
shutil.copytree(test_root / "testenv", directory)
shutil.copyfile(project_root / "flake.nix", directory / "flake.nix")
shutil.copyfile(project_root / "flake.lock", directory / "flake.lock")
shutil.copyfile(project_root / "treefmt.nix", directory / "treefmt.nix")
nix_direnv = project_root / "direnvrc"

c = DirenvProject(Path(dir), nix_direnv)
c = DirenvProject(Path(directory), nix_direnv)
try:
yield c
finally:
Expand Down
18 changes: 11 additions & 7 deletions tests/procs.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
import logging
import shlex
import subprocess
from pathlib import Path
from typing import IO, Any, List, Optional, Union
from typing import IO, Any

_FILE = Union[None, int, IO[Any]]
_DIR = Union[None, Path, str]
_FILE = None | int | IO[Any]
_DIR = None | Path | str

log = logging.getLogger(__name__)


def run(
cmd: List[str],
cmd: list[str],
text: bool = True,
check: bool = True,
cwd: _DIR = None,
stderr: _FILE = None,
stdout: _FILE = None,
env: Optional[dict[str, str]] = None,
env: dict[str, str] | None = None,
) -> subprocess.CompletedProcess:
if cwd is not None:
print(f"cd {cwd}")
print("$ " + " ".join(cmd))
log.debug(f"cd {cwd}")
log.debug(f"$ {shlex.join(cmd)}")
return subprocess.run(
cmd, text=text, check=check, cwd=cwd, stderr=stderr, stdout=stdout, env=env
)
4 changes: 2 additions & 2 deletions tests/root.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
PROJECT_ROOT = TEST_ROOT.parent


@pytest.fixture
@pytest.fixture()
def test_root() -> Path:
"""
Root directory of the tests
"""
return TEST_ROOT


@pytest.fixture
@pytest.fixture()
def project_root() -> Path:
"""
Root directory of the tests
Expand Down
30 changes: 18 additions & 12 deletions tests/test_gc.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
import logging
import subprocess
import sys
import unittest

import pytest
from direnv_project import DirenvProject
from procs import run

from .direnv_project import DirenvProject
from .procs import run

log = logging.getLogger(__name__)


def common_test(direnv_project: DirenvProject) -> None:
run(["nix-collect-garbage"])

testenv = str(direnv_project.dir)
testenv = str(direnv_project.directory)

out1 = run(
["direnv", "exec", testenv, "hello"],
stderr=subprocess.PIPE,
check=False,
cwd=direnv_project.dir,
cwd=direnv_project.directory,
)
sys.stderr.write(out1.stderr)
assert out1.returncode == 0
Expand All @@ -29,7 +33,7 @@ def common_test(direnv_project: DirenvProject) -> None:
["direnv", "exec", testenv, "hello"],
stderr=subprocess.PIPE,
check=False,
cwd=direnv_project.dir,
cwd=direnv_project.directory,
)
sys.stderr.write(out2.stderr)
assert out2.returncode == 0
Expand All @@ -38,23 +42,25 @@ def common_test(direnv_project: DirenvProject) -> None:


def common_test_clean(direnv_project: DirenvProject) -> None:
testenv = str(direnv_project.dir)
testenv = str(direnv_project.directory)

out3 = run(
["direnv", "exec", testenv, "hello"],
stderr=subprocess.PIPE,
check=False,
cwd=direnv_project.dir,
cwd=direnv_project.directory,
)
sys.stderr.write(out3.stderr)

files = [
path for path in (direnv_project.dir / ".direnv").iterdir() if path.is_file()
path
for path in (direnv_project.directory / ".direnv").iterdir()
if path.is_file()
]
rcs = [f for f in files if f.match("*.rc")]
profiles = [f for f in files if not f.match("*.rc")]
if len(rcs) != 1 or len(profiles) != 1:
print(files)
log.debug(files)
assert len(rcs) == 1
assert len(profiles) == 1

Expand All @@ -75,11 +81,11 @@ def test_use_nix(direnv_project: DirenvProject, strict_env: bool) -> None:
def test_use_flake(direnv_project: DirenvProject, strict_env: bool) -> None:
direnv_project.setup_envrc("use flake", strict_env=strict_env)
common_test(direnv_project)
inputs = list((direnv_project.dir / ".direnv/flake-inputs").iterdir())
inputs = list((direnv_project.directory / ".direnv/flake-inputs").iterdir())
# should only contain our flake-utils flake
if len(inputs) != 4:
run(["nix", "flake", "archive", "--json"], cwd=direnv_project.dir)
print(inputs)
run(["nix", "flake", "archive", "--json"], cwd=direnv_project.directory)
log.debug(inputs)
assert len(inputs) == 4
for symlink in inputs:
assert symlink.is_dir()
Expand Down
22 changes: 13 additions & 9 deletions tests/test_use_nix.py
Original file line number Diff line number Diff line change
@@ -1,31 +1,35 @@
import logging
import os
import shlex
import subprocess
import sys
import unittest
from typing import Optional

import pytest
from direnv_project import DirenvProject
from procs import run

from .direnv_project import DirenvProject
from .procs import run

log = logging.getLogger(__name__)


def direnv_exec(
direnv_project: DirenvProject, cmd: str, env: Optional[dict[str, str]] = None
direnv_project: DirenvProject, cmd: str, env: dict[str, str] | None = None
) -> None:
args = ["direnv", "exec", str(direnv_project.dir), "sh", "-c", cmd]
print("$ " + " ".join(args))
args = ["direnv", "exec", str(direnv_project.directory), "sh", "-c", cmd]
log.debug(f"$ {shlex.join(args)}")
out = run(
args,
stderr=subprocess.PIPE,
stdout=subprocess.PIPE,
check=False,
cwd=direnv_project.dir,
cwd=direnv_project.directory,
env=env,
)
sys.stdout.write(out.stdout)
sys.stderr.write(out.stderr)
assert out.returncode == 0
assert "OK\n" == out.stdout
assert out.stdout == "OK\n"
assert "renewed cache" in out.stderr


Expand Down Expand Up @@ -57,7 +61,7 @@ def test_no_files(direnv_project: DirenvProject, strict_env: bool) -> None:
stderr=subprocess.PIPE,
stdout=subprocess.PIPE,
check=False,
cwd=direnv_project.dir,
cwd=direnv_project.directory,
)
assert out.returncode == 0
assert 'Loaded watch: "."' not in out.stdout
Expand Down

0 comments on commit fdbd3fc

Please sign in to comment.