Balance display: place_bet/request_withdrawal spend whole UTXOs and mark them spent at broadcast time, well before confirmation, so the confirmed-only balance could drop by far more than the amount actually moving. Add compute_pending_balance() (app/wallet/balance.py) to fold the unconfirmed change from in-flight bet/withdrawal PendingTransactions back in; GET /users/me now returns pending_balance_sats + has_pending, and the frontend shows it colored green (settled) or amber (still pending) instead of the confirmed-only figure. Round outcome display: the win/lose reveal and the "pagamento al vincitore in corso" status were fighting over the same UI slot, and the reveal broke across a page refresh. Now: - The round-status box (generic phase progress) and the personal win/lose box are independent and can both be visible at once. - The win/lose box only renders for users who actually played in that round (new user_played field on GET /rounds/current, via a new optional-auth dependency so the endpoint stays usable logged-out). - The reveal delay is anchored to the round's server-provided closes_at instead of a client-side "first seen" timestamp, so repeated reloads can't reset it, and the revealed result is persisted in localStorage so it survives a refresh even after the round has fully closed. - GET /users/me/last-round-result is a durable DB-backed backstop for players who miss the live window entirely (backgrounded tab, offline). Also hardens the frontend polling loop: call() now times out instead of hanging forever, and a session-epoch counter stops an in-flight request from a previous login from resurrecting a duplicate poll loop after logout. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
112 lines
4.2 KiB
Python
112 lines
4.2 KiB
Python
import pytest
|
|
from sqlalchemy import select
|
|
from sqlalchemy.ext.asyncio import async_sessionmaker, create_async_engine
|
|
|
|
from app.bets.service import place_bet
|
|
from app.config import settings
|
|
from app.db.base import Base
|
|
from app.db.models import PendingTransaction, User, UtxoEvent
|
|
from app.wallet.balance import compute_pending_balance, recompute_balance
|
|
from app.wallet.hd import derive_user_address
|
|
|
|
|
|
class FakeElectrumClient:
|
|
async def broadcast(self, raw_tx_hex: str) -> str:
|
|
return "fake-network-txid"
|
|
|
|
|
|
@pytest.fixture
|
|
async def session_factory(tmp_path, monkeypatch):
|
|
monkeypatch.setattr(settings, "master_key_path", str(tmp_path / "master.xprv.enc"))
|
|
monkeypatch.setattr(
|
|
settings,
|
|
"xprv_encryption_key",
|
|
__import__("cryptography.fernet", fromlist=["Fernet"]).Fernet.generate_key().decode(),
|
|
)
|
|
from app.wallet import hd
|
|
|
|
hd._account_key = None
|
|
hd.generate_master_key()
|
|
|
|
engine = create_async_engine("sqlite+aiosqlite:///:memory:")
|
|
async with engine.begin() as conn:
|
|
await conn.run_sync(Base.metadata.create_all)
|
|
yield async_sessionmaker(engine, expire_on_commit=False)
|
|
await engine.dispose()
|
|
hd._account_key = None
|
|
|
|
|
|
async def _make_funded_user(session_factory, index: int, funded_sats: int) -> int:
|
|
async with session_factory() as session:
|
|
address = derive_user_address(index)
|
|
user = User(username=f"user{index}", password_hash="x", derivation_index=index, address=address)
|
|
session.add(user)
|
|
await session.commit()
|
|
session.add(
|
|
UtxoEvent(
|
|
user_id=user.id,
|
|
txid=f"{index:02x}" * 32,
|
|
vout=0,
|
|
amount_sats=funded_sats,
|
|
confirmed_height=100,
|
|
)
|
|
)
|
|
await recompute_balance(session, user.id)
|
|
await session.commit()
|
|
return user.id
|
|
|
|
|
|
async def test_pending_balance_includes_unconfirmed_change(session_factory):
|
|
"""A bet spends a whole (much larger) UTXO and the change hasn't confirmed
|
|
yet, so cached_balance_sats alone understates the user's real balance by
|
|
the entire unconfirmed change amount — compute_pending_balance should add
|
|
it back."""
|
|
user_id = await _make_funded_user(session_factory, 0, 1_500_000_000)
|
|
client = FakeElectrumClient()
|
|
|
|
async with session_factory() as session:
|
|
user = await session.get(User, user_id)
|
|
await place_bet(session, client, user)
|
|
|
|
async with session_factory() as session:
|
|
user = await session.get(User, user_id)
|
|
assert user.cached_balance_sats == 0 # the whole funding UTXO was spent as input
|
|
|
|
pending_balance, has_pending = await compute_pending_balance(session, user)
|
|
|
|
assert has_pending is True
|
|
# confirmed (0) + unconfirmed change should be just under the original
|
|
# funding amount (minus the bet amount and the network fee)
|
|
assert 0 < pending_balance < 1_500_000_000
|
|
|
|
|
|
async def test_pending_balance_matches_confirmed_when_nothing_in_flight(session_factory):
|
|
user_id = await _make_funded_user(session_factory, 1, 2_000_000_000)
|
|
|
|
async with session_factory() as session:
|
|
user = await session.get(User, user_id)
|
|
pending_balance, has_pending = await compute_pending_balance(session, user)
|
|
|
|
assert has_pending is False
|
|
assert pending_balance == 2_000_000_000
|
|
|
|
|
|
async def test_pending_balance_ignores_other_users_pending_transactions(session_factory):
|
|
user_id = await _make_funded_user(session_factory, 2, 2_000_000_000)
|
|
other_user_id = await _make_funded_user(session_factory, 3, 1_500_000_000)
|
|
client = FakeElectrumClient()
|
|
|
|
async with session_factory() as session:
|
|
other_user = await session.get(User, other_user_id)
|
|
await place_bet(session, client, other_user)
|
|
|
|
async with session_factory() as session:
|
|
pending_rows = (await session.scalars(select(PendingTransaction))).all()
|
|
assert len(pending_rows) == 1 # sanity: only the other user has anything in flight
|
|
|
|
user = await session.get(User, user_id)
|
|
pending_balance, has_pending = await compute_pending_balance(session, user)
|
|
|
|
assert has_pending is False
|
|
assert pending_balance == 2_000_000_000
|