Files
eomsangdonandClaude Opus 5 0ef32b5279 chore(tester): 시험을 resources/tester/ 로 옮김 — 창끼리 건너가게
⚠ **뿌리** — `tmp/` 는 창 사이에 안 건너감(실측 확인: 상대 창이 놓은 `tmp/_sync_probe.txt`
가 시간을 두고 두 번 봐도 안 보임). 그래서 **정본(등록부 스키마)만 건너가고 그것을 읽는
시험은 안 건너가** 오늘 두 번, 같은 시험이 **연 창은 통과·받은 창은 실패**가 됐음.

- `tmp/tests/*` 를 `resources/tester/` 로 **복사**(127 파일). 내용은 **한 줄도 안 고침**
- `tmp/tests` 는 **남겨 둠** — 되돌릴 자리(사용자 지시)
- 실행: `./venv/Scripts/python.exe -m pytest resources/tester/ -q`
  옮기기 전과 **같은 수**: 617 통과 / 22 건너뜀 / 실패 0

⇒ 이제 시험·예외·까닭이 **정본과 함께** 움직임. 오늘 세운 「예외는 정본 스키마에」와 짝임.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-09-09 17:12:30 +09:00

79 lines
3.2 KiB
Python

"""B06 세월교 세트(백엔드) 자체검증 — 2026-08-25.
확인 대상:
· `_ford_set()`이 정본·레지스트리 기본값으로 제원을 만든다.
· 날개벽 각도가 바닥판 편측 연장(길이×cos각)을 만든다. 설치 "없음"이면 0.
· `attach_culvert_sets()`가 세월교를 **소유 측점 한 곳에만** 붙이고,
배수관은 종전대로 ±0.02m 측점 일치로만 붙인다.
"""
from __future__ import annotations
import math
import sys
from pathlib import Path
ROOT = Path(__file__).resolve().parents[2]
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))
from B06_Section.B06_Section_Engine_Culvert import ( # noqa: E402
FORD_SLAB_THICKNESS_M,
FORD_WALL_THICKNESS_M,
_ford_set,
attach_culvert_sets,
)
def test_ford_set_defaults() -> None:
"""저장 옵션이 없으면 레지스트리 기본값(파형강관 Ø1000·월류 폭 10m)을 쓴다."""
spec = _ford_set(None)
assert spec["type"] == "ford"
assert spec["pipe_kind"] == "파형강관"
assert spec["diameter_m"] == 1.0
assert spec["pipe_count"] == 1
assert spec["span_m"] == 10.0
assert spec["slab_thickness_m"] == FORD_SLAB_THICKNESS_M
assert spec["wall_thickness_m"] == FORD_WALL_THICKNESS_M
def test_wing_angle_drives_slab_extension() -> None:
"""바닥판 편측 연장 = 날개벽 길이 × cos(각도). 45°·2m면 1.414m."""
spec = _ford_set({"wing_in_length_m": 2, "wing_in_angle_deg": 45})
assert spec["wing_in"]["slab_extend_m"] == round(2 * math.cos(math.radians(45)), 3)
steep = _ford_set({"wing_out_length_m": 2, "wing_out_angle_deg": 30})
assert steep["wing_out"]["slab_extend_m"] == round(2 * math.cos(math.radians(30)), 3)
def test_wing_absent_gives_no_extension() -> None:
"""날개벽 설치 '없음'이면 연장 0 — 바닥판은 구체 폭만 남는다."""
spec = _ford_set({"wing_in": "없음", "wing_in_length_m": 2, "wing_in_angle_deg": 45})
assert spec["wing_in"]["installed"] is False
assert spec["wing_in"]["slab_extend_m"] == 0.0
def test_attach_ford_only_owner_station(tmp_path: Path) -> None:
"""세월교도 배수관과 같이 **소유 측점 한 곳에만** 붙는다(2026-08-25 사용자 확정).
월류 폭 절반까지 옆 측점에 붙이면 그 측점 횡단도에 같은 구체가 한 벌 더 그려지고
3D 솔리드도 어긋난 채 겹친다. 3D 스윕 길이는 소유 측점이 `span_m`으로 직접 낸다.
"""
pipe_points = tmp_path / "B04_PreProcess" / "drainage" / "edits"
pipe_points.mkdir(parents=True)
(pipe_points / "pipe_points.json").write_text(
'{"points": ['
'{"chainage_m": 100.0, "facility": "ford_bridge", "options": {"ford_width_m": 10}},'
'{"chainage_m": 200.0, "facility": "pipe", "options": {}}]}',
encoding="utf-8",
)
sections = [{"chainage_m": value} for value in (94.0, 95.5, 100.0, 104.5, 106.0, 200.0, 201.0)]
attached = attach_culvert_sets(tmp_path, sections)
kinds = [
("ford" if "ford" in section else "culvert" if "culvert" in section else None)
for section in sections
]
assert kinds == [None, None, "ford", None, None, "culvert", None]
assert attached == 2