mirror of
https://github.com/github/spec-kit.git
synced 2026-07-08 15:06:10 +08:00
* test: isolate integration test home Assisted-by: Codex (model: GPT-5, autonomous) * test: reduce registry manifest test repetition Assisted-by: Codex (model: GPT-5, autonomous) * test: clarify disjoint-manifest order rationale and guard safe set Add a >=2 precondition, explain why two install orders are tested (manifests are order-independent; the orders only vary the init path), and build the manifest map with a comprehension. * test: rotate init coverage for manifest isolation Assisted-by: Codex (model: GPT-5, autonomous) * test: assert integration home isolation Assisted-by: Codex (model: GPT-5, autonomous) * test: guard multi-install manifest rotations Assisted-by: Codex (model: GPT-5, autonomous)
22 lines
688 B
Python
22 lines
688 B
Python
"""Regression tests for integration-test environment isolation."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
from pathlib import Path
|
|
|
|
|
|
def test_integration_tests_use_tmp_home(tmp_path: Path) -> None:
|
|
home = tmp_path / "home"
|
|
|
|
assert Path(os.environ["HOME"]) == home
|
|
assert Path(os.environ["USERPROFILE"]) == home
|
|
assert Path(os.environ["XDG_CACHE_HOME"]) == home / ".cache"
|
|
assert Path(os.environ["XDG_CONFIG_HOME"]) == home / ".config"
|
|
assert Path(os.environ["XDG_DATA_HOME"]) == home / ".local" / "share"
|
|
|
|
assert home.is_dir()
|
|
assert (home / ".cache").is_dir()
|
|
assert (home / ".config").is_dir()
|
|
assert (home / ".local" / "share").is_dir()
|