delaunay 0.7.5

D-dimensional Delaunay triangulations and convex hulls in Rust, with exact predicates, multi-level validation, and bistellar flips
Documentation
"""
Shared pytest fixtures and utilities for test modules.

Provides common testing utilities that can be reused across multiple test files.
"""

import os
import sys
from contextlib import contextmanager
from pathlib import Path
from unittest.mock import Mock

import pytest

# Ensure `scripts/` is on sys.path for test imports
# This must be done before importing any local modules
_scripts = Path(__file__).resolve().parents[1]
if str(_scripts) not in sys.path:
    sys.path.insert(0, str(_scripts))


@pytest.fixture
def temp_chdir():
    """
    Pytest fixture for temporarily changing working directory.

    Returns a context manager that can be used to change directories
    and automatically restore the original directory.

    Usage:
        def test_something(temp_chdir):
            with temp_chdir(some_path):
                # Code that runs in some_path
                pass
            # Back to original directory
    """

    @contextmanager
    def _temp_chdir_context(path: os.PathLike | str):
        """Context manager for temporarily changing working directory."""
        original_cwd = Path.cwd()
        target = Path(path)
        if not target.exists():
            raise FileNotFoundError(target)
        os.chdir(target)
        try:
            yield
        finally:
            os.chdir(original_cwd)

    return _temp_chdir_context


@pytest.fixture
def mock_git_command_result():
    """
    Pytest fixture for creating mock CompletedProcess objects for git commands.

    Returns a function that creates a mock object with the specified stdout output.
    This standardizes git command mocking across all test files.

    Usage:
        def test_something(mock_git_command_result):
            mock_result = mock_git_command_result("v0.4.2")
            # mock_result.stdout.strip() will return "v0.4.2"
    """

    def _create_mock_result(output: str) -> Mock:
        """Create a mock CompletedProcess object for git commands."""
        mock_result = Mock()
        mock_result.stdout = output  # mimic CompletedProcess.stdout (str)
        mock_result.returncode = 0
        mock_result.args = ["git"]
        return mock_result

    return _create_mock_result