All checks were successful
Deploy Trade-In / changes (push) Successful in 5s
Deploy Trade-In / build-frontend (push) Has been skipped
Deploy Trade-In / test (push) Successful in 24s
Deploy Trade-In / deploy (push) Successful in 40s
Deploy Trade-In / build-backend (push) Successful in 40s
Co-authored-by: bot-backend <bot-backend@gendsgn.local> Co-committed-by: bot-backend <bot-backend@gendsgn.local>
52 lines
1.8 KiB
Python
52 lines
1.8 KiB
Python
"""#699 — ДКП-выброс sanitize: _is_plausible_deal guard-bands (floor + ppm²)."""
|
||
|
||
import os
|
||
|
||
os.environ.setdefault("DATABASE_URL", "postgresql+psycopg://test:test@localhost/test_db")
|
||
|
||
from app.services.estimator import (
|
||
DEAL_MAX_FLOOR,
|
||
DEAL_MAX_PPM2,
|
||
DEAL_MIN_PPM2,
|
||
_is_plausible_deal,
|
||
)
|
||
|
||
|
||
def test_drops_implausible_floor_100() -> None:
|
||
# репорт-кейс: floor:100 — заведомо битый этаж.
|
||
assert _is_plausible_deal(150_000, 100, None) is False
|
||
|
||
|
||
def test_drops_submarket_ppm2_3970() -> None:
|
||
# репорт-кейс: 4.98М за 125 м² = ~39.7К/м² — нерыночный.
|
||
assert _is_plausible_deal(39_700, 5, 9) is False
|
||
|
||
|
||
def test_drops_floor_above_total_floors() -> None:
|
||
# 30-й этаж в 5-этажке физически невозможен.
|
||
assert _is_plausible_deal(150_000, 30, 5) is False
|
||
|
||
|
||
def test_drops_ppm2_above_band() -> None:
|
||
assert _is_plausible_deal(DEAL_MAX_PPM2 + 1, 5, 9) is False
|
||
|
||
|
||
def test_keeps_normal_deal() -> None:
|
||
assert _is_plausible_deal(150_000, 5, 9) is True
|
||
|
||
|
||
def test_keeps_high_floor_in_tall_building() -> None:
|
||
# 30-й этаж в 30-этажке — реально для ЕКБ, не выброс.
|
||
assert _is_plausible_deal(160_000, 30, 30) is True
|
||
|
||
|
||
def test_keeps_at_band_edges() -> None:
|
||
assert _is_plausible_deal(DEAL_MIN_PPM2, 1, None) is True
|
||
assert _is_plausible_deal(DEAL_MAX_PPM2, DEAL_MAX_FLOOR, None) is True
|
||
|
||
|
||
def test_null_fields_not_judged() -> None:
|
||
# ppm²/floor=None — нечем судить, оставляем (None-safe).
|
||
assert _is_plausible_deal(None, None, None) is True
|
||
assert _is_plausible_deal(None, 100, None) is False # floor всё равно судим
|
||
assert _is_plausible_deal(39_700, None, None) is False # ppm² всё равно судим
|