2026-04-07 09:54:21 +08:00
|
|
|
from datetime import datetime, timedelta, timezone
|
|
|
|
|
|
2026-03-20 23:33:50 +08:00
|
|
|
from src.database.db_manager import DBManager
|
2026-03-21 12:19:53 +08:00
|
|
|
from src.payments.contract_checkout import (
|
2026-03-22 13:06:57 +08:00
|
|
|
PaymentCheckoutError,
|
2026-03-21 12:19:53 +08:00
|
|
|
PaymentContractCheckoutService,
|
|
|
|
|
PaymentIntentRecord,
|
|
|
|
|
)
|
2026-03-20 23:33:50 +08:00
|
|
|
|
|
|
|
|
|
2026-05-19 18:26:45 +08:00
|
|
|
def _payment_env(monkeypatch, tmp_path):
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_ENABLED", "true")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_URL", "https://example.supabase.co")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_SERVICE_ROLE_KEY", "service-role")
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_RPC_URL", "https://rpc-1.example")
|
|
|
|
|
monkeypatch.setenv(
|
|
|
|
|
"POLYWEATHER_PAYMENT_ACCEPTED_TOKENS_JSON",
|
|
|
|
|
'[{"code":"usdc_e","address":"0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174","decimals":6,"receiver_contract":"0xeD2f13Aa5fF033c58FB436E178451Cd07f693f32","is_default":true}]',
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_DB_PATH", str(tmp_path / "payments.db"))
|
2026-05-20 09:20:07 +08:00
|
|
|
monkeypatch.delenv("POLYWEATHER_PAYMENT_DIRECT_RECEIVER_ADDRESS", raising=False)
|
2026-05-19 18:26:45 +08:00
|
|
|
|
|
|
|
|
|
2026-03-20 23:33:50 +08:00
|
|
|
def test_payment_runtime_state_and_audit_event_roundtrip(tmp_path):
|
|
|
|
|
db_path = tmp_path / "payments.db"
|
|
|
|
|
db = DBManager(str(db_path))
|
|
|
|
|
|
|
|
|
|
db.set_payment_runtime_state("payment_event_loop", {"last_scanned_block": 123})
|
|
|
|
|
db.append_payment_audit_event("event_loop_cycle", {"blocks": 10, "events": 2})
|
|
|
|
|
|
|
|
|
|
state = db.get_payment_runtime_state("payment_event_loop")
|
|
|
|
|
events = db.list_payment_audit_events(limit=10)
|
|
|
|
|
|
|
|
|
|
assert state == {"last_scanned_block": 123}
|
|
|
|
|
assert events
|
|
|
|
|
assert events[0]["event_type"] == "event_loop_cycle"
|
|
|
|
|
assert events[0]["payload"]["events"] == 2
|
|
|
|
|
|
|
|
|
|
|
2026-05-19 18:26:45 +08:00
|
|
|
def test_paid_subscription_starts_after_active_trial(monkeypatch, tmp_path):
|
|
|
|
|
_payment_env(monkeypatch, tmp_path)
|
|
|
|
|
service = PaymentContractCheckoutService()
|
|
|
|
|
now = datetime.now(timezone.utc)
|
|
|
|
|
trial_expires = now + timedelta(days=2)
|
|
|
|
|
inserted = []
|
|
|
|
|
|
|
|
|
|
def fake_rest(method, table, **kwargs):
|
|
|
|
|
if method == "GET" and table == "subscriptions":
|
|
|
|
|
return [
|
|
|
|
|
{
|
|
|
|
|
"id": "trial-1",
|
|
|
|
|
"expires_at": trial_expires.isoformat(),
|
|
|
|
|
"status": "active",
|
|
|
|
|
"plan_code": "signup_trial_3d",
|
|
|
|
|
"source": "signup_trial",
|
|
|
|
|
"starts_at": (now - timedelta(days=1)).isoformat(),
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
if method == "POST" and table == "subscriptions":
|
|
|
|
|
inserted.append(kwargs["payload"])
|
|
|
|
|
return [kwargs["payload"]]
|
|
|
|
|
if method == "POST" and table == "entitlement_events":
|
|
|
|
|
return [kwargs["payload"]]
|
|
|
|
|
raise AssertionError((method, table, kwargs))
|
|
|
|
|
|
|
|
|
|
monkeypatch.setattr(service, "_rest", fake_rest)
|
|
|
|
|
|
|
|
|
|
row = service._grant_subscription(
|
|
|
|
|
user_id="user-1",
|
|
|
|
|
plan_code="pro_monthly",
|
|
|
|
|
duration_days=30,
|
|
|
|
|
tx_hash="0x" + "7" * 64,
|
|
|
|
|
payload={},
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
starts_at = datetime.fromisoformat(str(row["starts_at"]))
|
|
|
|
|
expires_at = datetime.fromisoformat(str(row["expires_at"]))
|
|
|
|
|
assert starts_at == trial_expires
|
|
|
|
|
assert expires_at == trial_expires + timedelta(days=30)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_confirm_side_effect_repair_does_not_treat_trial_as_paid(monkeypatch, tmp_path):
|
|
|
|
|
_payment_env(monkeypatch, tmp_path)
|
|
|
|
|
service = PaymentContractCheckoutService()
|
|
|
|
|
intent = PaymentIntentRecord(
|
|
|
|
|
intent_id="intent-trial-repair",
|
|
|
|
|
order_id_hex="0x" + "1" * 64,
|
|
|
|
|
plan_code="pro_monthly",
|
|
|
|
|
plan_id=101,
|
|
|
|
|
chain_id=137,
|
|
|
|
|
amount_units=5000000,
|
|
|
|
|
amount_usdc="5",
|
|
|
|
|
token_address="0x2791bca1f2de4661ed88a30c99a7a9449aa84174",
|
|
|
|
|
token_decimals=6,
|
|
|
|
|
token_symbol="USDC.e",
|
|
|
|
|
receiver_address="0xed2f13aa5ff033c58fb436e178451cd07f693f32",
|
|
|
|
|
status="confirmed",
|
|
|
|
|
payment_mode="strict",
|
|
|
|
|
allowed_wallet="0x1111111111111111111111111111111111111111",
|
|
|
|
|
expires_at="2099-01-01T00:00:00+00:00",
|
|
|
|
|
tx_hash="0x" + "8" * 64,
|
|
|
|
|
metadata={},
|
|
|
|
|
)
|
|
|
|
|
trial_row = {"plan_code": "signup_trial_3d", "source": "signup_trial"}
|
|
|
|
|
granted = []
|
|
|
|
|
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
|
"src.payments.contract_checkout.SUPABASE_ENTITLEMENT.get_latest_active_subscription",
|
|
|
|
|
lambda user_id, respect_requirement=False: trial_row,
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
|
"src.payments.contract_checkout.SUPABASE_ENTITLEMENT.invalidate_subscription_cache",
|
|
|
|
|
lambda user_id: None,
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setattr(service, "_select_plan", lambda plan_code: {"duration_days": 30})
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
|
service,
|
|
|
|
|
"_grant_subscription",
|
|
|
|
|
lambda **kwargs: granted.append(kwargs)
|
|
|
|
|
or {"plan_code": kwargs["plan_code"], "status": "active"},
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
result = service._ensure_confirmed_subscription("user-1", intent, intent.tx_hash or "")
|
|
|
|
|
|
|
|
|
|
assert result["plan_code"] == "pro_monthly"
|
|
|
|
|
assert granted
|
|
|
|
|
|
|
|
|
|
|
2026-03-20 23:33:50 +08:00
|
|
|
def test_payment_checkout_parses_multiple_rpc_urls(monkeypatch, tmp_path):
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_ENABLED", "true")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_URL", "https://example.supabase.co")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_SERVICE_ROLE_KEY", "service-role")
|
|
|
|
|
monkeypatch.setenv(
|
|
|
|
|
"POLYWEATHER_PAYMENT_RPC_URLS",
|
|
|
|
|
"https://rpc-1.example,https://rpc-2.example",
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setenv(
|
|
|
|
|
"POLYWEATHER_PAYMENT_ACCEPTED_TOKENS_JSON",
|
|
|
|
|
'[{"code":"usdc_e","address":"0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174","decimals":6,"receiver_contract":"0xeD2f13Aa5fF033c58FB436E178451Cd07f693f32","is_default":true}]',
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_DB_PATH", str(tmp_path / "payments.db"))
|
|
|
|
|
|
|
|
|
|
service = PaymentContractCheckoutService()
|
|
|
|
|
status = service.get_rpc_runtime_status()
|
|
|
|
|
|
|
|
|
|
assert service.rpc_urls == ["https://rpc-1.example", "https://rpc-2.example"]
|
|
|
|
|
assert status["configured_rpc_count"] == 2
|
|
|
|
|
assert status["all_rpc_urls"][0] == "https://rpc-1.example"
|
2026-03-21 12:19:53 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_confirm_intent_tx_repairs_confirmed_intent(monkeypatch, tmp_path):
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_ENABLED", "true")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_URL", "https://example.supabase.co")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_SERVICE_ROLE_KEY", "service-role")
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_RPC_URL", "https://rpc-1.example")
|
|
|
|
|
monkeypatch.setenv(
|
|
|
|
|
"POLYWEATHER_PAYMENT_ACCEPTED_TOKENS_JSON",
|
|
|
|
|
'[{"code":"usdc_e","address":"0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174","decimals":6,"receiver_contract":"0xeD2f13Aa5fF033c58FB436E178451Cd07f693f32","is_default":true}]',
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_DB_PATH", str(tmp_path / "payments.db"))
|
|
|
|
|
|
|
|
|
|
service = PaymentContractCheckoutService()
|
|
|
|
|
intent = PaymentIntentRecord(
|
|
|
|
|
intent_id="intent-1",
|
|
|
|
|
order_id_hex="0x" + "1" * 64,
|
|
|
|
|
plan_code="pro_monthly",
|
|
|
|
|
plan_id=101,
|
|
|
|
|
chain_id=137,
|
|
|
|
|
amount_units=5000000,
|
|
|
|
|
amount_usdc="5",
|
|
|
|
|
token_address="0x2791bca1f2de4661ed88a30c99a7a9449aa84174",
|
|
|
|
|
token_decimals=6,
|
|
|
|
|
token_symbol="USDC.e",
|
|
|
|
|
receiver_address="0xed2f13aa5ff033c58fb436e178451cd07f693f32",
|
|
|
|
|
status="confirmed",
|
|
|
|
|
payment_mode="strict",
|
|
|
|
|
allowed_wallet="0x1111111111111111111111111111111111111111",
|
|
|
|
|
expires_at="2099-01-01T00:00:00+00:00",
|
|
|
|
|
tx_hash="0x" + "2" * 64,
|
|
|
|
|
metadata={},
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
monkeypatch.setattr(service, "get_intent", lambda user_id, intent_id: intent)
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
|
service,
|
|
|
|
|
"_ensure_confirm_side_effects",
|
|
|
|
|
lambda user_id, local_intent, tx_hash: {
|
|
|
|
|
"payment": {"tx_hash": tx_hash},
|
|
|
|
|
"subscription": {"plan_code": local_intent.plan_code},
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
result = service.confirm_intent_tx("user-1", "intent-1")
|
|
|
|
|
|
|
|
|
|
assert result["already_confirmed"] is True
|
|
|
|
|
assert result["payment"]["tx_hash"] == intent.tx_hash
|
|
|
|
|
assert result["subscription"]["plan_code"] == "pro_monthly"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_reconcile_latest_intent_confirms_submitted_first(monkeypatch, tmp_path):
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_ENABLED", "true")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_URL", "https://example.supabase.co")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_SERVICE_ROLE_KEY", "service-role")
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_RPC_URL", "https://rpc-1.example")
|
|
|
|
|
monkeypatch.setenv(
|
|
|
|
|
"POLYWEATHER_PAYMENT_ACCEPTED_TOKENS_JSON",
|
|
|
|
|
'[{"code":"usdc_e","address":"0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174","decimals":6,"receiver_contract":"0xeD2f13Aa5fF033c58FB436E178451Cd07f693f32","is_default":true}]',
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_DB_PATH", str(tmp_path / "payments.db"))
|
|
|
|
|
|
|
|
|
|
service = PaymentContractCheckoutService()
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
|
service,
|
|
|
|
|
"_rest",
|
|
|
|
|
lambda method, table, **kwargs: [
|
|
|
|
|
{
|
|
|
|
|
"id": "intent-1",
|
|
|
|
|
"plan_code": "pro_monthly",
|
|
|
|
|
"plan_id": 101,
|
|
|
|
|
"chain_id": 137,
|
|
|
|
|
"token_address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174",
|
|
|
|
|
"receiver_address": "0xeD2f13Aa5fF033c58FB436E178451Cd07f693f32",
|
|
|
|
|
"amount_units": "5000000",
|
|
|
|
|
"payment_mode": "strict",
|
|
|
|
|
"allowed_wallet": "0x1111111111111111111111111111111111111111",
|
|
|
|
|
"order_id_hex": "0x" + "1" * 64,
|
|
|
|
|
"status": "submitted",
|
|
|
|
|
"expires_at": "2099-01-01T00:00:00+00:00",
|
|
|
|
|
"tx_hash": "0x" + "2" * 64,
|
|
|
|
|
"metadata": {},
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
|
service,
|
|
|
|
|
"confirm_intent_tx",
|
|
|
|
|
lambda user_id, intent_id, tx_hash=None: {
|
|
|
|
|
"intent": {"intent_id": intent_id},
|
|
|
|
|
"already_confirmed": False,
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
result = service.reconcile_latest_intent("user-1")
|
|
|
|
|
|
|
|
|
|
assert result["ok"] is True
|
|
|
|
|
assert result["action"] == "confirmed_submitted_intent"
|
2026-03-22 13:06:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_confirm_intent_tx_repairs_side_effect_failure(monkeypatch, tmp_path):
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_ENABLED", "true")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_URL", "https://example.supabase.co")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_SERVICE_ROLE_KEY", "service-role")
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_RPC_URL", "https://rpc-1.example")
|
|
|
|
|
monkeypatch.setenv(
|
|
|
|
|
"POLYWEATHER_PAYMENT_ACCEPTED_TOKENS_JSON",
|
|
|
|
|
'[{"code":"usdc_e","address":"0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174","decimals":6,"receiver_contract":"0xeD2f13Aa5fF033c58FB436E178451Cd07f693f32","is_default":true}]',
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_DB_PATH", str(tmp_path / "payments.db"))
|
|
|
|
|
|
|
|
|
|
service = PaymentContractCheckoutService()
|
|
|
|
|
submitted_intent = PaymentIntentRecord(
|
|
|
|
|
intent_id="intent-2",
|
|
|
|
|
order_id_hex="0x" + "1" * 64,
|
|
|
|
|
plan_code="pro_monthly",
|
|
|
|
|
plan_id=101,
|
|
|
|
|
chain_id=137,
|
|
|
|
|
amount_units=5000000,
|
|
|
|
|
amount_usdc="5",
|
|
|
|
|
token_address="0x2791bca1f2de4661ed88a30c99a7a9449aa84174",
|
|
|
|
|
token_decimals=6,
|
|
|
|
|
token_symbol="USDC.e",
|
|
|
|
|
receiver_address="0xed2f13aa5ff033c58fb436e178451cd07f693f32",
|
|
|
|
|
status="submitted",
|
|
|
|
|
payment_mode="strict",
|
|
|
|
|
allowed_wallet="0x1111111111111111111111111111111111111111",
|
|
|
|
|
expires_at="2099-01-01T00:00:00+00:00",
|
|
|
|
|
tx_hash="0x" + "2" * 64,
|
|
|
|
|
metadata={},
|
|
|
|
|
)
|
|
|
|
|
confirmed_intent = PaymentIntentRecord(**{**submitted_intent.__dict__, "status": "confirmed"})
|
|
|
|
|
intents = [submitted_intent, confirmed_intent]
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
|
service,
|
|
|
|
|
"get_intent",
|
|
|
|
|
lambda user_id, intent_id: intents.pop(0) if intents else confirmed_intent,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
class _Eth:
|
|
|
|
|
chain_id = 137
|
|
|
|
|
block_number = 20
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def get_transaction(_tx_hash):
|
|
|
|
|
return {
|
|
|
|
|
"to": "0xed2f13aa5ff033c58fb436e178451cd07f693f32",
|
|
|
|
|
"from": "0x1111111111111111111111111111111111111111",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class _Web3:
|
|
|
|
|
eth = _Eth()
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
def is_connected():
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
monkeypatch.setattr(service, "_get_web3", lambda: _Web3())
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
|
service,
|
|
|
|
|
"_wait_receipt",
|
|
|
|
|
lambda _tx_hash: {
|
|
|
|
|
"status": 1,
|
|
|
|
|
"to": "0xed2f13aa5ff033c58fb436e178451cd07f693f32",
|
|
|
|
|
"from": "0x1111111111111111111111111111111111111111",
|
|
|
|
|
"blockNumber": 10,
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setattr(service, "_extract_matching_event", lambda receipt, intent: {"ok": True})
|
|
|
|
|
monkeypatch.setattr(service, "_consume_points_for_intent", lambda user_id, intent: {"applied": False})
|
|
|
|
|
monkeypatch.setattr(service, "_select_plan", lambda plan_code: {"duration_days": 30})
|
|
|
|
|
monkeypatch.setattr(service, "_insert_payment_record", lambda **kwargs: {"tx_hash": kwargs["tx_hash"]})
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
|
service,
|
|
|
|
|
"_grant_subscription",
|
|
|
|
|
lambda **kwargs: (_ for _ in ()).throw(PaymentCheckoutError(502, "subscription insert failed")),
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
|
service,
|
|
|
|
|
"_ensure_confirm_side_effects",
|
|
|
|
|
lambda user_id, local_intent, tx_hash: {
|
|
|
|
|
"payment": {"tx_hash": tx_hash},
|
|
|
|
|
"subscription": {"plan_code": local_intent.plan_code, "status": "active"},
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setattr(service, "_notify_telegram", lambda **kwargs: None)
|
|
|
|
|
|
|
|
|
|
def _fake_rest(method, table, **kwargs):
|
|
|
|
|
if method == "PATCH" and table == "payment_intents":
|
|
|
|
|
return [{"id": "intent-2", "status": "confirmed"}]
|
|
|
|
|
if method == "POST" and table == "payment_transactions":
|
|
|
|
|
return [{"tx_hash": "0x" + "2" * 64, "status": "confirmed"}]
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
|
|
monkeypatch.setattr(service, "_rest", _fake_rest)
|
|
|
|
|
|
|
|
|
|
result = service.confirm_intent_tx("user-1", "intent-2")
|
|
|
|
|
|
|
|
|
|
assert result["subscription"]["status"] == "active"
|
|
|
|
|
assert any(
|
|
|
|
|
event["event_type"] == "payment_confirm_repaired"
|
|
|
|
|
for event in service._db.list_payment_audit_events(limit=10)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_reconcile_recent_intents_dedupes_users(monkeypatch, tmp_path):
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_ENABLED", "true")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_URL", "https://example.supabase.co")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_SERVICE_ROLE_KEY", "service-role")
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_RPC_URL", "https://rpc-1.example")
|
|
|
|
|
monkeypatch.setenv(
|
|
|
|
|
"POLYWEATHER_PAYMENT_ACCEPTED_TOKENS_JSON",
|
|
|
|
|
'[{"code":"usdc_e","address":"0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174","decimals":6,"receiver_contract":"0xeD2f13Aa5fF033c58FB436E178451Cd07f693f32","is_default":true}]',
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_DB_PATH", str(tmp_path / "payments.db"))
|
|
|
|
|
|
|
|
|
|
service = PaymentContractCheckoutService()
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
|
service,
|
|
|
|
|
"_rest",
|
|
|
|
|
lambda method, table, **kwargs: [
|
|
|
|
|
{"id": "a", "user_id": "user-1", "status": "confirmed", "updated_at": "2026-03-22T01:00:00+00:00"},
|
|
|
|
|
{"id": "b", "user_id": "user-1", "status": "submitted", "updated_at": "2026-03-22T00:59:00+00:00"},
|
|
|
|
|
{"id": "c", "user_id": "user-2", "status": "submitted", "updated_at": "2026-03-22T00:58:00+00:00"},
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
seen = []
|
|
|
|
|
monkeypatch.setattr(
|
|
|
|
|
service,
|
|
|
|
|
"reconcile_latest_intent",
|
|
|
|
|
lambda user_id: seen.append(user_id) or {"ok": True, "subscription": {"user_id": user_id}},
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
result = service.reconcile_recent_intents(limit=10)
|
|
|
|
|
|
|
|
|
|
assert result["processed_users"] == 2
|
|
|
|
|
assert result["repaired_users"] == 2
|
|
|
|
|
assert seen == ["user-1", "user-2"]
|
2026-04-07 09:54:21 +08:00
|
|
|
|
|
|
|
|
|
2026-05-19 18:26:45 +08:00
|
|
|
def test_grant_subscription_starts_after_trial_when_only_trial_is_active(monkeypatch, tmp_path):
|
2026-04-07 09:54:21 +08:00
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_ENABLED", "true")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_URL", "https://example.supabase.co")
|
|
|
|
|
monkeypatch.setenv("SUPABASE_SERVICE_ROLE_KEY", "service-role")
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_PAYMENT_RPC_URL", "https://rpc-1.example")
|
|
|
|
|
monkeypatch.setenv(
|
|
|
|
|
"POLYWEATHER_PAYMENT_ACCEPTED_TOKENS_JSON",
|
|
|
|
|
'[{"code":"usdc_e","address":"0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174","decimals":6,"receiver_contract":"0xeD2f13Aa5fF033c58FB436E178451Cd07f693f32","is_default":true}]',
|
|
|
|
|
)
|
|
|
|
|
monkeypatch.setenv("POLYWEATHER_DB_PATH", str(tmp_path / "payments.db"))
|
|
|
|
|
|
|
|
|
|
service = PaymentContractCheckoutService()
|
|
|
|
|
trial_end = datetime.now(timezone.utc) + timedelta(days=2)
|
|
|
|
|
captured_post = {}
|
|
|
|
|
|
|
|
|
|
def _fake_rest(method, table, **kwargs):
|
|
|
|
|
if method == "GET" and table == "subscriptions":
|
|
|
|
|
return [
|
|
|
|
|
{
|
|
|
|
|
"id": 1,
|
|
|
|
|
"status": "active",
|
|
|
|
|
"plan_code": "signup_trial_3d",
|
|
|
|
|
"source": "signup_trial",
|
|
|
|
|
"starts_at": (datetime.now(timezone.utc) - timedelta(days=1)).isoformat(),
|
|
|
|
|
"expires_at": trial_end.isoformat(),
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
if method == "POST" and table == "subscriptions":
|
|
|
|
|
captured_post.update(kwargs.get("payload") or {})
|
|
|
|
|
return [captured_post]
|
|
|
|
|
if method == "POST" and table == "entitlement_events":
|
|
|
|
|
return [{"ok": True}]
|
|
|
|
|
return []
|
|
|
|
|
|
|
|
|
|
monkeypatch.setattr(service, "_rest", _fake_rest)
|
|
|
|
|
|
|
|
|
|
result = service._grant_subscription(
|
|
|
|
|
user_id="user-1",
|
|
|
|
|
plan_code="pro_monthly",
|
|
|
|
|
duration_days=30,
|
|
|
|
|
tx_hash="0x" + "1" * 64,
|
|
|
|
|
payload={"kind": "test"},
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
starts_at = datetime.fromisoformat(str(result["starts_at"]).replace("Z", "+00:00"))
|
|
|
|
|
|
2026-05-19 18:26:45 +08:00
|
|
|
assert starts_at == trial_end
|