1159697c0e
accept_url/cancel_url n'existent pas dans le schéma de POST /v1/subscription (ils y sont silencieusement ignorés) : Frisbii attend ces paramètres en query string sur le lien hosted_page_links.payment_info retourné. Ajout d'un warning loggé sur signature de webhook invalide, jusque-là silencieuse. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
91 lines
2.8 KiB
Python
91 lines
2.8 KiB
Python
import pytest
|
|
|
|
from src.subscriptions import client
|
|
|
|
|
|
def test_auth_and_base_url_used(fake_httpx):
|
|
fake_httpx["queue"].append(fake_httpx["Response"](200, {"handle": "colibre-1"}))
|
|
client.get_customer("colibre-1")
|
|
call = fake_httpx["calls"][0]
|
|
assert call["url"] == "https://api.test/v1/customer/colibre-1"
|
|
assert call["auth"] == ("priv_test", "")
|
|
|
|
|
|
def test_get_customer(fake_httpx):
|
|
fake_httpx["queue"].append(fake_httpx["Response"](200, {"handle": "colibre-1"}))
|
|
result = client.get_customer("colibre-1")
|
|
assert result == {"handle": "colibre-1"}
|
|
|
|
|
|
def test_update_customer(fake_httpx):
|
|
fake_httpx["queue"].append(fake_httpx["Response"](200, {"handle": "colibre-1"}))
|
|
client.update_customer("colibre-1", {"email": "a@b.fr"})
|
|
call = fake_httpx["calls"][0]
|
|
assert call["method"] == "PUT"
|
|
assert call["json"] == {"email": "a@b.fr"}
|
|
|
|
|
|
def test_create_subscription_session_with_customer_handle(fake_httpx):
|
|
fake_httpx["queue"].append(
|
|
fake_httpx["Response"](
|
|
200,
|
|
{
|
|
"hosted_page_links": {
|
|
"payment_info": "https://checkout.reepay.com/#/sub-1"
|
|
}
|
|
},
|
|
)
|
|
)
|
|
url = client.create_subscription_session(
|
|
"plan_simple",
|
|
"abo-1-1",
|
|
"https://app/ok",
|
|
"https://app/ko",
|
|
customer_handle="colibre-1",
|
|
)
|
|
assert url == (
|
|
"https://checkout.reepay.com/"
|
|
"?accept_url=https%3A%2F%2Fapp%2Fok&cancel_url=https%3A%2F%2Fapp%2Fko"
|
|
"#/sub-1"
|
|
)
|
|
body = fake_httpx["calls"][0]["json"]
|
|
assert body["plan"] == "plan_simple"
|
|
assert body["handle"] == "abo-1-1"
|
|
assert body["customer"] == "colibre-1"
|
|
assert body["signup_method"] == "link"
|
|
assert "generate_handle" not in body
|
|
assert "prepare_subscription" not in body
|
|
# accept_url/cancel_url ne sont pas des champs de CreateSubscription :
|
|
# Frisbii les ignore silencieusement s'ils sont dans le body.
|
|
assert "accept_url" not in body
|
|
assert "cancel_url" not in body
|
|
|
|
|
|
def test_create_subscription_session_no_trial(fake_httpx):
|
|
fake_httpx["queue"].append(
|
|
fake_httpx["Response"](
|
|
200,
|
|
{
|
|
"hosted_page_links": {
|
|
"payment_info": "https://checkout.reepay.com/#/sub-2"
|
|
}
|
|
},
|
|
)
|
|
)
|
|
client.create_subscription_session(
|
|
"plan_simple",
|
|
"abo-1-2",
|
|
"https://app/ok",
|
|
"https://app/ko",
|
|
no_trial=True,
|
|
customer_handle="colibre-1",
|
|
)
|
|
assert fake_httpx["calls"][0]["json"]["no_trial"] is True
|
|
|
|
|
|
def test_http_error_raises_frisbii_error(fake_httpx):
|
|
fake_httpx["queue"].append(fake_httpx["Response"](500, {"error": "boom"}))
|
|
with pytest.raises(client.FrisbiiError) as exc:
|
|
client.get_plan("plan_simple")
|
|
assert exc.value.status_code == 500
|