mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-21 02:54:20 +01:00
Mint: Recover pending melts at startup (#499)
* wip works with fakewallet * startup refactor * add tests * regtest tests for pending melts * wip CLN * remove db migration * remove foreign key relation to keyset id * fix: get_promise from db and restore DLEQs * test: check for keyset not found error * fix migrations * lower-case all db column names * add more tests for regtest * simlate failure for lightning * test wallet spent state with hodl invoices * retry * regtest with postgres * retry postgres * add sleeps * longer sleep on github * more sleep for github sigh * increase sleep ffs * add sleep loop * try something * do not pay with wallet but with ledger * fix lnbits pending state * fix pipeline to use fake admin from docker
This commit is contained in:
@@ -1,13 +1,27 @@
|
||||
from typing import List
|
||||
import asyncio
|
||||
from typing import List, Tuple
|
||||
|
||||
import bolt11
|
||||
import pytest
|
||||
import pytest_asyncio
|
||||
|
||||
from cashu.core.base import Proof
|
||||
from cashu.core.base import MeltQuote, Proof, SpentState
|
||||
from cashu.core.crypto.aes import AESCipher
|
||||
from cashu.core.db import Database
|
||||
from cashu.core.settings import settings
|
||||
from cashu.mint.crud import LedgerCrudSqlite
|
||||
from cashu.mint.ledger import Ledger
|
||||
from cashu.wallet.wallet import Wallet
|
||||
from tests.conftest import SERVER_ENDPOINT
|
||||
from tests.helpers import (
|
||||
SLEEP_TIME,
|
||||
cancel_invoice,
|
||||
get_hold_invoice,
|
||||
is_fake,
|
||||
is_regtest,
|
||||
pay_if_regtest,
|
||||
settle_invoice,
|
||||
)
|
||||
|
||||
SEED = "TEST_PRIVATE_KEY"
|
||||
DERIVATION_PATH = "m/0'/0'/0'"
|
||||
@@ -30,6 +44,17 @@ def assert_amt(proofs: List[Proof], expected: int):
|
||||
assert [p.amount for p in proofs] == expected
|
||||
|
||||
|
||||
@pytest_asyncio.fixture(scope="function")
|
||||
async def wallet(ledger: Ledger):
|
||||
wallet1 = await Wallet.with_db(
|
||||
url=SERVER_ENDPOINT,
|
||||
db="test_data/wallet_mint_api_deprecated",
|
||||
name="wallet_mint_api_deprecated",
|
||||
)
|
||||
await wallet1.load_mint()
|
||||
yield wallet1
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_init_keysets_with_duplicates(ledger: Ledger):
|
||||
ledger.keysets = {}
|
||||
@@ -126,3 +151,251 @@ async def test_decrypt_seed():
|
||||
pubkeys_encrypted[1].serialize().hex()
|
||||
== "02194603ffa36356f4a56b7df9371fc3192472351453ec7398b8da8117e7c3e104"
|
||||
)
|
||||
|
||||
|
||||
async def create_pending_melts(
|
||||
ledger: Ledger, check_id: str = "checking_id"
|
||||
) -> Tuple[Proof, MeltQuote]:
|
||||
"""Helper function for startup tests for fakewallet. Creates fake pending melt
|
||||
quote and fake proofs that are in the pending table that look like they're being
|
||||
used to pay the pending melt quote."""
|
||||
quote_id = "quote_id"
|
||||
quote = MeltQuote(
|
||||
quote=quote_id,
|
||||
method="bolt11",
|
||||
request="asdasd",
|
||||
checking_id=check_id,
|
||||
unit="sat",
|
||||
paid=False,
|
||||
amount=100,
|
||||
fee_reserve=1,
|
||||
)
|
||||
await ledger.crud.store_melt_quote(
|
||||
quote=quote,
|
||||
db=ledger.db,
|
||||
)
|
||||
pending_proof = Proof(amount=123, C="asdasd", secret="asdasd", id=quote_id)
|
||||
await ledger.crud.set_proof_pending(
|
||||
db=ledger.db,
|
||||
proof=pending_proof,
|
||||
quote_id=quote_id,
|
||||
)
|
||||
# expect a pending melt quote
|
||||
melt_quotes = await ledger.crud.get_all_melt_quotes_from_pending_proofs(
|
||||
db=ledger.db
|
||||
)
|
||||
assert melt_quotes
|
||||
return pending_proof, quote
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
@pytest.mark.skipif(is_regtest, reason="only fake wallet")
|
||||
async def test_startup_fakewallet_pending_quote_success(ledger: Ledger):
|
||||
"""Startup routine test. Expects that a pending proofs are removed form the pending db
|
||||
after the startup routine determines that the associated melt quote was paid."""
|
||||
pending_proof, quote = await create_pending_melts(ledger)
|
||||
states = await ledger.check_proofs_state([pending_proof.Y])
|
||||
assert states[0].state == SpentState.pending
|
||||
settings.fakewallet_payment_state = True
|
||||
# run startup routinge
|
||||
await ledger.startup_ledger()
|
||||
|
||||
# expect that no pending tokens are in db anymore
|
||||
melt_quotes = await ledger.crud.get_all_melt_quotes_from_pending_proofs(
|
||||
db=ledger.db
|
||||
)
|
||||
assert not melt_quotes
|
||||
|
||||
# expect that proofs are spent
|
||||
states = await ledger.check_proofs_state([pending_proof.Y])
|
||||
assert states[0].state == SpentState.spent
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
@pytest.mark.skipif(is_regtest, reason="only fake wallet")
|
||||
async def test_startup_fakewallet_pending_quote_failure(ledger: Ledger):
|
||||
"""Startup routine test. Expects that a pending proofs are removed form the pending db
|
||||
after the startup routine determines that the associated melt quote failed to pay.
|
||||
|
||||
The failure is simulated by setting the fakewallet_payment_state to False.
|
||||
"""
|
||||
pending_proof, quote = await create_pending_melts(ledger)
|
||||
states = await ledger.check_proofs_state([pending_proof.Y])
|
||||
assert states[0].state == SpentState.pending
|
||||
settings.fakewallet_payment_state = False
|
||||
# run startup routinge
|
||||
await ledger.startup_ledger()
|
||||
|
||||
# expect that no pending tokens are in db anymore
|
||||
melt_quotes = await ledger.crud.get_all_melt_quotes_from_pending_proofs(
|
||||
db=ledger.db
|
||||
)
|
||||
assert not melt_quotes
|
||||
|
||||
# expect that proofs are unspent
|
||||
states = await ledger.check_proofs_state([pending_proof.Y])
|
||||
assert states[0].state == SpentState.unspent
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
@pytest.mark.skipif(is_regtest, reason="only for fake wallet")
|
||||
async def test_startup_fakewallet_pending_quote_pending(ledger: Ledger):
|
||||
pending_proof, quote = await create_pending_melts(ledger)
|
||||
states = await ledger.check_proofs_state([pending_proof.Y])
|
||||
assert states[0].state == SpentState.pending
|
||||
settings.fakewallet_payment_state = None
|
||||
# run startup routinge
|
||||
await ledger.startup_ledger()
|
||||
|
||||
# expect that melt quote is still pending
|
||||
melt_quotes = await ledger.crud.get_all_melt_quotes_from_pending_proofs(
|
||||
db=ledger.db
|
||||
)
|
||||
assert melt_quotes
|
||||
|
||||
# expect that proofs are still pending
|
||||
states = await ledger.check_proofs_state([pending_proof.Y])
|
||||
assert states[0].state == SpentState.pending
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
@pytest.mark.skipif(is_fake, reason="only regtest")
|
||||
async def test_startup_regtest_pending_quote_pending(wallet: Wallet, ledger: Ledger):
|
||||
# fill wallet
|
||||
invoice = await wallet.request_mint(64)
|
||||
pay_if_regtest(invoice.bolt11)
|
||||
await wallet.mint(64, id=invoice.id)
|
||||
assert wallet.balance == 64
|
||||
|
||||
# create hodl invoice
|
||||
preimage, invoice_dict = get_hold_invoice(16)
|
||||
invoice_payment_request = str(invoice_dict["payment_request"])
|
||||
|
||||
# wallet pays the invoice
|
||||
quote = await wallet.get_pay_amount_with_fees(invoice_payment_request)
|
||||
total_amount = quote.amount + quote.fee_reserve
|
||||
_, send_proofs = await wallet.split_to_send(wallet.proofs, total_amount)
|
||||
asyncio.create_task(
|
||||
wallet.pay_lightning(
|
||||
proofs=send_proofs,
|
||||
invoice=invoice_payment_request,
|
||||
fee_reserve_sat=quote.fee_reserve,
|
||||
quote_id=quote.quote,
|
||||
)
|
||||
)
|
||||
await asyncio.sleep(SLEEP_TIME)
|
||||
# settle_invoice(preimage=preimage)
|
||||
|
||||
# run startup routinge
|
||||
await ledger.startup_ledger()
|
||||
|
||||
# expect that melt quote is still pending
|
||||
melt_quotes = await ledger.crud.get_all_melt_quotes_from_pending_proofs(
|
||||
db=ledger.db
|
||||
)
|
||||
assert melt_quotes
|
||||
|
||||
# expect that proofs are still pending
|
||||
states = await ledger.check_proofs_state([p.Y for p in send_proofs])
|
||||
assert all([s.state == SpentState.pending for s in states])
|
||||
|
||||
# only now settle the invoice
|
||||
settle_invoice(preimage=preimage)
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
@pytest.mark.skipif(is_fake, reason="only regtest")
|
||||
async def test_startup_regtest_pending_quote_success(wallet: Wallet, ledger: Ledger):
|
||||
# fill wallet
|
||||
invoice = await wallet.request_mint(64)
|
||||
pay_if_regtest(invoice.bolt11)
|
||||
await wallet.mint(64, id=invoice.id)
|
||||
assert wallet.balance == 64
|
||||
|
||||
# create hodl invoice
|
||||
preimage, invoice_dict = get_hold_invoice(16)
|
||||
invoice_payment_request = str(invoice_dict["payment_request"])
|
||||
|
||||
# wallet pays the invoice
|
||||
quote = await wallet.get_pay_amount_with_fees(invoice_payment_request)
|
||||
total_amount = quote.amount + quote.fee_reserve
|
||||
_, send_proofs = await wallet.split_to_send(wallet.proofs, total_amount)
|
||||
asyncio.create_task(
|
||||
wallet.pay_lightning(
|
||||
proofs=send_proofs,
|
||||
invoice=invoice_payment_request,
|
||||
fee_reserve_sat=quote.fee_reserve,
|
||||
quote_id=quote.quote,
|
||||
)
|
||||
)
|
||||
await asyncio.sleep(SLEEP_TIME)
|
||||
# expect that proofs are pending
|
||||
states = await ledger.check_proofs_state([p.Y for p in send_proofs])
|
||||
assert all([s.state == SpentState.pending for s in states])
|
||||
|
||||
settle_invoice(preimage=preimage)
|
||||
await asyncio.sleep(SLEEP_TIME)
|
||||
|
||||
# run startup routinge
|
||||
await ledger.startup_ledger()
|
||||
|
||||
# expect that no melt quote is pending
|
||||
melt_quotes = await ledger.crud.get_all_melt_quotes_from_pending_proofs(
|
||||
db=ledger.db
|
||||
)
|
||||
assert not melt_quotes
|
||||
|
||||
# expect that proofs are spent
|
||||
states = await ledger.check_proofs_state([p.Y for p in send_proofs])
|
||||
assert all([s.state == SpentState.spent for s in states])
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
@pytest.mark.skipif(is_fake, reason="only regtest")
|
||||
async def test_startup_regtest_pending_quote_failure(wallet: Wallet, ledger: Ledger):
|
||||
"""Simulate a failure to pay the hodl invoice by canceling it."""
|
||||
# fill wallet
|
||||
invoice = await wallet.request_mint(64)
|
||||
pay_if_regtest(invoice.bolt11)
|
||||
await wallet.mint(64, id=invoice.id)
|
||||
assert wallet.balance == 64
|
||||
|
||||
# create hodl invoice
|
||||
preimage, invoice_dict = get_hold_invoice(16)
|
||||
invoice_payment_request = str(invoice_dict["payment_request"])
|
||||
invoice_obj = bolt11.decode(invoice_payment_request)
|
||||
preimage_hash = invoice_obj.payment_hash
|
||||
|
||||
# wallet pays the invoice
|
||||
quote = await wallet.get_pay_amount_with_fees(invoice_payment_request)
|
||||
total_amount = quote.amount + quote.fee_reserve
|
||||
_, send_proofs = await wallet.split_to_send(wallet.proofs, total_amount)
|
||||
asyncio.create_task(
|
||||
wallet.pay_lightning(
|
||||
proofs=send_proofs,
|
||||
invoice=invoice_payment_request,
|
||||
fee_reserve_sat=quote.fee_reserve,
|
||||
quote_id=quote.quote,
|
||||
)
|
||||
)
|
||||
await asyncio.sleep(SLEEP_TIME)
|
||||
|
||||
# expect that proofs are pending
|
||||
states = await ledger.check_proofs_state([p.Y for p in send_proofs])
|
||||
assert all([s.state == SpentState.pending for s in states])
|
||||
|
||||
cancel_invoice(preimage_hash=preimage_hash)
|
||||
await asyncio.sleep(SLEEP_TIME)
|
||||
|
||||
# run startup routinge
|
||||
await ledger.startup_ledger()
|
||||
|
||||
# expect that no melt quote is pending
|
||||
melt_quotes = await ledger.crud.get_all_melt_quotes_from_pending_proofs(
|
||||
db=ledger.db
|
||||
)
|
||||
assert not melt_quotes
|
||||
|
||||
# expect that proofs are unspent
|
||||
states = await ledger.check_proofs_state([p.Y for p in send_proofs])
|
||||
assert all([s.state == SpentState.unspent for s in states])
|
||||
|
||||
Reference in New Issue
Block a user