1a195a96bd
- Merge origin/main into branch (resolve conflict in integrations_dashboard.html) - Add defensive JSON parsing with try/except for integration.config - Wrap tester() call in try/except to prevent 500 errors from bad config - Add i18n key integrations.connection_test_failed_fallback in en.json - Reference i18n key in template JS fallback message - Update SECURITY_AUDIT.md: add fix date (2026-03-23), update doc date - Remove accidental revert.sh file - Fix missing MagicMock/patch imports in test file - Add tests for invalid JSON config and tester exception error paths Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> Agent-Logs-Url: https://github.com/christianlouis/DocuElevate/sessions/daebb70e-059a-4601-8864-88eef49f99cf
51 lines
1.4 KiB
Python
51 lines
1.4 KiB
Python
import json
|
|
import time
|
|
import pytest
|
|
from app.database import get_db
|
|
from app.models import UserNotificationTarget, UserNotificationPreference
|
|
from app.main import app
|
|
from tests.test_notifications_api import _make_client, _OWNER, _cleanup
|
|
import statistics
|
|
|
|
def run_benchmark(notif_engine, notif_session, client, items_count, iterations=5):
|
|
# Setup
|
|
target = UserNotificationTarget(
|
|
owner_id=_OWNER,
|
|
channel_type="webhook",
|
|
name="My Webhook",
|
|
config=json.dumps({"url": "https://x.com"}),
|
|
)
|
|
notif_session.add(target)
|
|
notif_session.commit()
|
|
notif_session.refresh(target)
|
|
|
|
# Generate big payload
|
|
preferences = []
|
|
for i in range(items_count):
|
|
preferences.append({
|
|
"event_type": f"event.type.{i}",
|
|
"channel_type": "webhook",
|
|
"is_enabled": True,
|
|
"target_id": target.id,
|
|
})
|
|
|
|
payload = {"preferences": preferences}
|
|
|
|
# Warm up
|
|
client.put("/api/user-notifications/preferences", json=payload)
|
|
|
|
times = []
|
|
for _ in range(iterations):
|
|
# Alter the values a bit so it's a real update
|
|
for p in payload["preferences"]:
|
|
p["is_enabled"] = not p["is_enabled"]
|
|
|
|
start = time.time()
|
|
resp = client.put("/api/user-notifications/preferences", json=payload)
|
|
end = time.time()
|
|
|
|
assert resp.status_code == 200
|
|
times.append(end - start)
|
|
|
|
return statistics.mean(times)
|