diff --git a/tests/extensions/bleskomat/conftest.py b/tests/extensions/bleskomat/conftest.py index 7f4a84e7d..13be2b579 100644 --- a/tests/extensions/bleskomat/conftest.py +++ b/tests/extensions/bleskomat/conftest.py @@ -14,7 +14,6 @@ from lnbits.extensions.bleskomat.helpers import ( query_to_signing_payload, ) from lnbits.extensions.bleskomat.models import CreateBleskomat -from lnbits.settings import get_wallet_class exchange_rate_providers["dummy"] = { "name": "dummy", @@ -66,7 +65,3 @@ async def lnurl(bleskomat): "lnurl": lnurl, "secret": secret, } - -@pytest_asyncio.fixture -async def WALLET(bleskomat): - return get_wallet_class() diff --git a/tests/extensions/bleskomat/test_lnurl_api.py b/tests/extensions/bleskomat/test_lnurl_api.py index 11ee3033a..6a56d75c0 100644 --- a/tests/extensions/bleskomat/test_lnurl_api.py +++ b/tests/extensions/bleskomat/test_lnurl_api.py @@ -12,10 +12,10 @@ from lnbits.extensions.bleskomat.helpers import ( from lnbits.settings import settings, get_wallet_class from tests.conftest import client -from tests.extensions.bleskomat.conftest import bleskomat, lnurl, WALLET +from tests.extensions.bleskomat.conftest import bleskomat, lnurl from tests.helpers import credit_wallet, is_regtest - +WALLET = get_wallet_class() @pytest.mark.asyncio async def test_bleskomat_lnurl_api_missing_secret(client): @@ -99,7 +99,7 @@ async def test_bleskomat_lnurl_api_valid_signature(client, bleskomat): @pytest.mark.asyncio @pytest.mark.skipif(is_regtest, reason="this test is only passes in fakewallet") -async def test_bleskomat_lnurl_api_action_insufficient_balance(client, lnurl, WALLET): +async def test_bleskomat_lnurl_api_action_insufficient_balance(client, lnurl): bleskomat = lnurl["bleskomat"] secret = lnurl["secret"] pr = "lntb500n1pseq44upp5xqd38rgad72lnlh4gl339njlrsl3ykep82j6gj4g02dkule7k54qdqqcqzpgxqyz5vqsp5h0zgewuxdxcl2rnlumh6g520t4fr05rgudakpxm789xgjekha75s9qyyssq5vhwsy9knhfeqg0wn6hcnppwmum8fs3g3jxkgw45havgfl6evchjsz3s8e8kr6eyacz02szdhs7v5lg0m7wehd5rpf6yg8480cddjlqpae52xu" @@ -111,15 +111,17 @@ async def test_bleskomat_lnurl_api_action_insufficient_balance(client, lnurl, WA "fee" in response.json()["reason"] ) wallet = await get_wallet(bleskomat.wallet) + assert wallet, not None assert wallet.balance_msat == 0 bleskomat_lnurl = await get_bleskomat_lnurl(secret) + assert bleskomat_lnurl, not None assert bleskomat_lnurl.has_uses_remaining() == True WALLET.pay_invoice.assert_not_called() @pytest.mark.asyncio @pytest.mark.skipif(is_regtest, reason="this test is only passes in fakewallet") -async def test_bleskomat_lnurl_api_action_success(client, lnurl, WALLET): +async def test_bleskomat_lnurl_api_action_success(client, lnurl): bleskomat = lnurl["bleskomat"] secret = lnurl["secret"] pr = "lntb500n1pseq44upp5xqd38rgad72lnlh4gl339njlrsl3ykep82j6gj4g02dkule7k54qdqqcqzpgxqyz5vqsp5h0zgewuxdxcl2rnlumh6g520t4fr05rgudakpxm789xgjekha75s9qyyssq5vhwsy9knhfeqg0wn6hcnppwmum8fs3g3jxkgw45havgfl6evchjsz3s8e8kr6eyacz02szdhs7v5lg0m7wehd5rpf6yg8480cddjlqpae52xu" @@ -128,12 +130,15 @@ async def test_bleskomat_lnurl_api_action_success(client, lnurl, WALLET): amount=100000, ) wallet = await get_wallet(bleskomat.wallet) + assert wallet, not None assert wallet.balance_msat == 100000 WALLET.pay_invoice.reset_mock() response = await client.get(f"/bleskomat/u?k1={secret}&pr={pr}") assert response.json() == {"status": "OK"} wallet = await get_wallet(bleskomat.wallet) + assert wallet, not None assert wallet.balance_msat == 50000 bleskomat_lnurl = await get_bleskomat_lnurl(secret) + assert bleskomat_lnurl, not None assert bleskomat_lnurl.has_uses_remaining() == False WALLET.pay_invoice.assert_called_once_with(pr, 2000)