CI & Build / Python lint (push) Successful in 3s
CI & Build / Plugin hooks (push) Successful in 10s
CI & Build / integration (push) Successful in 54s
CI & Build / TypeScript typecheck (push) Successful in 55s
CI & Build / Python tests (push) Successful in 1m41s
CI & Build / Build & push image (push) Successful in 33s
A rule's home is its reach: a rulebook topic makes it global, a project makes it that project's. There was no way to change one, so a project rule decided to be global could only be recreated and the original trashed — losing the id every record cites, its edit history, its area tags and its relations. - services.rulebooks.move_rule(rule_id, user_id, topic_id= | project_id=): exactly one destination (the model's CHECK), owned by the caller, not the rule's current home. A topic already holding a live rule with the same title is refused with a message naming that rule, instead of uq_rule_per_topic failing the commit. Someone else's rule reads as not found. - Deliberately NOT done, and said in the docstring: no version (a version is what a rule said, milestone 323 decision 4), no duplicate gate (nothing new enters the corpus), no re-embed (retrieval reads the home at query time). - Both doors: MCP move_rule, REST POST /api/rules/<id>/move (rule 33). - UI: RuleHomePicker, one component in the rule editor (a global rule) and a project's rules tab (a project rule), so the two cannot drift on what a destination is. - using-scribe names move_rule under "Where a new rule goes". Plugin 2026.09.15.1626. Milestone 414 step 3. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01821k5B3Ysecp9fNYs92Kuy
125 lines
5.2 KiB
Python
125 lines
5.2 KiB
Python
"""Route-level tests for the rulebooks blueprint.
|
|
|
|
Mirrors the structural-tests pattern in tests/test_events_routes.py:
|
|
covers blueprint registration, callable handlers, and service-signature
|
|
contracts. Full HTTP integration requires a live DB and auth machinery
|
|
that the unit-test environment doesn't provide.
|
|
"""
|
|
import inspect
|
|
|
|
|
|
def test_rulebooks_blueprint_registered():
|
|
from scribe.routes.rulebooks import rulebooks_bp
|
|
assert rulebooks_bp.name == "rulebooks"
|
|
assert rulebooks_bp.url_prefix == "/api"
|
|
|
|
|
|
def test_rulebooks_blueprint_registered_in_app():
|
|
from scribe.app import create_app
|
|
app = create_app()
|
|
assert "rulebooks" in app.blueprints
|
|
|
|
|
|
def test_rulebook_handlers_callable():
|
|
from scribe.routes import rulebooks as rb_routes
|
|
for name in (
|
|
"list_rulebooks", "create_rulebook", "get_rulebook",
|
|
"update_rulebook", "delete_rulebook",
|
|
):
|
|
assert callable(getattr(rb_routes, name))
|
|
|
|
|
|
def test_topic_handlers_callable():
|
|
from scribe.routes import rulebooks as rb_routes
|
|
for name in (
|
|
"list_topics", "create_topic", "update_topic", "delete_topic",
|
|
):
|
|
assert callable(getattr(rb_routes, name))
|
|
|
|
|
|
def test_service_signatures_require_user_id():
|
|
"""Routes must call services with user_id — verify the contract."""
|
|
from scribe.services import rulebooks as svc
|
|
for fn_name in (
|
|
"create_rulebook", "list_rulebooks", "get_rulebook",
|
|
"update_rulebook", "delete_rulebook", "find_rulebook_by_title",
|
|
"create_topic", "list_topics", "get_topic", "update_topic", "delete_topic",
|
|
"create_rule", "create_project_rule", "rule_detail",
|
|
"set_rule_systems", "add_rule_relation", "remove_rule_relation",
|
|
"list_rules",
|
|
"get_rule", "update_rule", "delete_rule",
|
|
"get_applicable_rules",
|
|
):
|
|
sig = inspect.signature(getattr(svc, fn_name))
|
|
assert "user_id" in sig.parameters, f"{fn_name} missing user_id param"
|
|
|
|
|
|
def test_rule_model_carries_project_id_and_topic_id_nullable():
|
|
"""Migration 0059 made topic_id nullable and added project_id."""
|
|
from scribe.models.rulebook import Rule
|
|
assert "project_id" in Rule.__table__.columns
|
|
assert Rule.__table__.columns["topic_id"].nullable is True
|
|
assert Rule.__table__.columns["project_id"].nullable is True
|
|
|
|
|
|
def test_create_project_rule_route_exists():
|
|
"""POST /api/projects/<id>/rules — the frontend fast-path endpoint."""
|
|
from scribe.routes import rulebooks as rb_routes
|
|
assert callable(getattr(rb_routes, "create_project_rule"))
|
|
|
|
|
|
def test_subscriptions_and_suppressions_are_gone():
|
|
"""Milestone 414: a rule's home is its scope. Nothing subscribes a project
|
|
to a rulebook or mutes a rule for one — not a route, a service function or
|
|
a table. A partial removal would leave a door that 500s on a missing table.
|
|
"""
|
|
from scribe.models import rulebook as rb_models
|
|
from scribe.routes import rulebooks as rb_routes
|
|
from scribe.services import rulebooks as svc
|
|
for name in ("subscribe_project", "unsubscribe_project",
|
|
"suppress_project_rule", "unsuppress_project_rule",
|
|
"suppress_project_topic", "unsuppress_project_topic"):
|
|
assert not hasattr(rb_routes, name), f"route handler still present: {name}"
|
|
for name in ("subscribe_project", "unsubscribe_project",
|
|
"suppress_rule_for_project", "unsuppress_rule_for_project",
|
|
"suppress_topic_for_project", "unsuppress_topic_for_project"):
|
|
assert not hasattr(svc, name), f"service function still present: {name}"
|
|
for name in ("project_rulebook_subscriptions", "project_rule_suppressions",
|
|
"project_topic_suppressions"):
|
|
assert not hasattr(rb_models, name), f"table still declared: {name}"
|
|
|
|
|
|
def test_rule_handlers_callable():
|
|
from scribe.routes import rulebooks as rb_routes
|
|
for name in (
|
|
"list_rules", "create_rule", "get_rule", "update_rule", "delete_rule",
|
|
"get_project_rules", "move_rule",
|
|
# The typed edges — both doors carry them (rule 33).
|
|
"relate_rules", "unrelate_rules",
|
|
):
|
|
assert callable(getattr(rb_routes, name))
|
|
|
|
|
|
def test_the_rule_list_zero_fills_usage_on_every_row():
|
|
"""Milestone 333 step 5, asserted the only way this harness allows.
|
|
|
|
There is no live-HTTP fixture here (see this module's docstring), so this
|
|
reads the handler's source. What it can still prove is the property that
|
|
gets forgotten: the route must attach the key to EVERY row, zero-filled,
|
|
rather than only to rows that happen to have events. Every rule on every
|
|
existing install predates `rule_usage_events`, so a route that only
|
|
attached the key when it found something would leave the badge component
|
|
reading `undefined` on almost every row — and the difference between "no
|
|
events" and "no field" is exactly the distinction #2663 is about.
|
|
"""
|
|
import inspect
|
|
|
|
from scribe.routes import rulebooks as rb_routes
|
|
|
|
src = inspect.getsource(rb_routes.list_rules)
|
|
assert "usage_for_rules" in src, "the rule list does not read usage at all"
|
|
assert "empty_rule_usage()" in src, (
|
|
"the rule list does not zero-fill — a rule with no events would come "
|
|
"back without the key rather than with an empty one"
|
|
)
|