e38bd8a52a
Co-authored-by: Cursor <cursoragent@cursor.com>
43 lines
1.6 KiB
Python
43 lines
1.6 KiB
Python
"""FCM push must not break event ingest."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from app.services.mobile_notify import MobileNotConfiguredError, _send_fcm_data
|
|
|
|
|
|
def test_send_fcm_data_swallows_token_errors_by_default():
|
|
with patch(
|
|
"app.services.mobile_notify._fcm_access_token",
|
|
side_effect=MobileNotConfiguredError("FCM: install requests"),
|
|
):
|
|
with patch("app.services.mobile_notify.get_effective_fcm_config") as mock_cfg:
|
|
mock_cfg.return_value.enabled = True
|
|
mock_cfg.return_value.project_id = "proj"
|
|
mock_cfg.return_value.service_account_path = "/etc/fcm.json"
|
|
mock_cfg.return_value.configured = True
|
|
mock_cfg.return_value.active = True
|
|
_send_fcm_data(["token"], {"kind": "test"}, title="t", body="b")
|
|
|
|
|
|
def test_send_fcm_data_raises_token_errors_when_required():
|
|
with patch(
|
|
"app.services.mobile_notify._fcm_access_token",
|
|
side_effect=MobileNotConfiguredError("FCM: install requests"),
|
|
):
|
|
with patch("app.services.mobile_notify.get_effective_fcm_config") as mock_cfg:
|
|
mock_cfg.return_value.enabled = True
|
|
mock_cfg.return_value.project_id = "proj"
|
|
mock_cfg.return_value.service_account_path = "/etc/fcm.json"
|
|
mock_cfg.return_value.configured = True
|
|
mock_cfg.return_value.active = True
|
|
with pytest.raises(MobileNotConfiguredError):
|
|
_send_fcm_data(
|
|
["token"],
|
|
{"kind": "test"},
|
|
title="t",
|
|
body="b",
|
|
require_success=True,
|
|
)
|