mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-20 10:34:20 +01:00
* allow generation of keys per seed phrase * emit errors correctly * parse timestamps for melt and mint quotes correctly * error messages * adjust error message * postgres works * prepare postgres tests * timestamps refactor * add command to key activation * generate keys per seed * add keyset tests * keyest uniqueness constaint on (derivation_path, seed) * add tables ony if not exists * log leve
58 lines
1.9 KiB
Python
58 lines
1.9 KiB
Python
import pytest
|
|
|
|
from cashu.core.base import MintKeyset
|
|
from cashu.core.settings import settings
|
|
|
|
SEED = "TEST_PRIVATE_KEY"
|
|
DERIVATION_PATH = "m/0'/0'/0'"
|
|
|
|
|
|
async def assert_err(f, msg):
|
|
"""Compute f() and expect an error message 'msg'."""
|
|
try:
|
|
await f
|
|
except Exception as exc:
|
|
if msg not in str(exc.args[0]):
|
|
raise Exception(f"Expected error: {msg}, got: {exc.args[0]}")
|
|
return
|
|
raise Exception(f"Expected error: {msg}, got no error")
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_keyset_0_15_0():
|
|
keyset = MintKeyset(seed=SEED, derivation_path=DERIVATION_PATH, version="0.15.0")
|
|
assert len(keyset.public_keys_hex) == settings.max_order
|
|
assert keyset.seed == "TEST_PRIVATE_KEY"
|
|
assert keyset.derivation_path == "m/0'/0'/0'"
|
|
assert (
|
|
keyset.public_keys_hex[1]
|
|
== "02194603ffa36356f4a56b7df9371fc3192472351453ec7398b8da8117e7c3e104"
|
|
)
|
|
assert keyset.id == "009a1f293253e41e"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_keyset_0_14_0():
|
|
keyset = MintKeyset(seed=SEED, derivation_path=DERIVATION_PATH, version="0.14.0")
|
|
assert len(keyset.public_keys_hex) == settings.max_order
|
|
assert keyset.seed == "TEST_PRIVATE_KEY"
|
|
assert keyset.derivation_path == "m/0'/0'/0'"
|
|
assert (
|
|
keyset.public_keys_hex[1]
|
|
== "036d6f3adf897e88e16ece3bffb2ce57a0b635fa76f2e46dbe7c636a937cd3c2f2"
|
|
)
|
|
assert keyset.id == "xnI+Y0j7cT1/"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_keyset_0_11_0():
|
|
keyset = MintKeyset(seed=SEED, derivation_path=DERIVATION_PATH, version="0.11.0")
|
|
assert len(keyset.public_keys_hex) == settings.max_order
|
|
assert keyset.seed == "TEST_PRIVATE_KEY"
|
|
assert keyset.derivation_path == "m/0'/0'/0'"
|
|
assert (
|
|
keyset.public_keys_hex[1]
|
|
== "026b714529f157d4c3de5a93e3a67618475711889b6434a497ae6ad8ace6682120"
|
|
)
|
|
assert keyset.id == "Zkdws9zWxNc4"
|