| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #!/usr/bin/env python3
- # -*- coding: utf-8 -*-
- import sys
- from pathlib import Path
- def _ensure_scripts_on_path() -> None:
- scripts_dir = Path(__file__).resolve().parents[2]
- if str(scripts_dir) not in sys.path:
- sys.path.insert(0, str(scripts_dir))
- def test_resolve_project_root_prefers_cwd_project(tmp_path):
- _ensure_scripts_on_path()
- from project_locator import resolve_project_root
- project_root = tmp_path / "workspace"
- (project_root / ".webnovel").mkdir(parents=True, exist_ok=True)
- (project_root / ".webnovel" / "state.json").write_text("{}", encoding="utf-8")
- resolved = resolve_project_root(cwd=project_root)
- assert resolved == project_root.resolve()
- def test_resolve_project_root_stops_at_git_root(tmp_path):
- _ensure_scripts_on_path()
- from project_locator import resolve_project_root
- repo_root = tmp_path / "repo"
- (repo_root / ".git").mkdir(parents=True, exist_ok=True)
- nested = repo_root / "sub" / "dir"
- nested.mkdir(parents=True, exist_ok=True)
- outside_project = tmp_path / "outside_project"
- (outside_project / ".webnovel").mkdir(parents=True, exist_ok=True)
- (outside_project / ".webnovel" / "state.json").write_text("{}", encoding="utf-8")
- try:
- resolve_project_root(cwd=nested)
- assert False, "Expected FileNotFoundError when only parent outside git root has project"
- except FileNotFoundError:
- pass
- def test_resolve_project_root_finds_default_subdir_within_git_root(tmp_path):
- _ensure_scripts_on_path()
- from project_locator import resolve_project_root
- repo_root = tmp_path / "repo"
- (repo_root / ".git").mkdir(parents=True, exist_ok=True)
- default_project = repo_root / "webnovel-project"
- (default_project / ".webnovel").mkdir(parents=True, exist_ok=True)
- (default_project / ".webnovel" / "state.json").write_text("{}", encoding="utf-8")
- nested = repo_root / "sub" / "dir"
- nested.mkdir(parents=True, exist_ok=True)
- resolved = resolve_project_root(cwd=nested)
- assert resolved == default_project.resolve()
|