mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-07-03 02:17:19 +08:00
WNS rejects pywebpush default ttl=0 with 400 Bad Request unless X-WNS-Cache-Policy matches TTL; iOS/APNs endpoints are unaffected. Co-authored-by: Cursor <cursoragent@cursor.com>
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
from app.helper.webpush import (
|
|
is_webpush_subscription_gone,
|
|
is_wns_endpoint,
|
|
webpush_options_for_endpoint,
|
|
)
|
|
from pywebpush import WebPushException
|
|
|
|
|
|
class _FakeResponse:
|
|
def __init__(self, status_code: int):
|
|
self.status_code = status_code
|
|
|
|
|
|
def test_is_webpush_subscription_gone_for_expired_status_codes() -> None:
|
|
for status_code in (404, 410):
|
|
err = WebPushException("gone")
|
|
err.response = _FakeResponse(status_code)
|
|
assert is_webpush_subscription_gone(err)
|
|
|
|
|
|
def test_is_webpush_subscription_gone_for_other_errors() -> None:
|
|
err = WebPushException("bad request")
|
|
err.response = _FakeResponse(400)
|
|
assert not is_webpush_subscription_gone(err)
|
|
|
|
|
|
def test_is_wns_endpoint_detects_windows_push_url() -> None:
|
|
assert is_wns_endpoint("https://wns2-sg2p.notify.windows.com/w/?token=abc")
|
|
assert not is_wns_endpoint("https://web.push.apple.com/abc")
|
|
assert not is_wns_endpoint(None)
|
|
assert not is_wns_endpoint("")
|
|
|
|
|
|
def test_webpush_options_for_wns_endpoint() -> None:
|
|
options = webpush_options_for_endpoint("https://wns2-pn1p.notify.windows.com/x")
|
|
assert options == {
|
|
"ttl": 86400,
|
|
"headers": {"X-WNS-Cache-Policy": "cache"},
|
|
}
|
|
|
|
|
|
def test_webpush_options_for_non_wns_endpoint() -> None:
|
|
assert webpush_options_for_endpoint("https://fcm.googleapis.com/fcm/send/abc") == {}
|