mirror of https://github.com/nucypher/nucypher.git
30 lines
788 B
Python
30 lines
788 B
Python
|
|
|
|
|
|
import pytest
|
|
from eth_account.account import Account
|
|
|
|
from nucypher.blockchain.eth.signers import Signer
|
|
|
|
TRANSACTION_DICT = {
|
|
'chainId': 1,
|
|
'nonce': 2,
|
|
'gasPrice': 2000000000000,
|
|
'gas': 314159,
|
|
'to': '0xd3CdA913deB6f67967B99D67aCDFa1712C293601',
|
|
'value': 12345,
|
|
'data': b'in that metric, kman is above reproach', # thank you friends
|
|
}
|
|
|
|
|
|
@pytest.fixture(scope='module')
|
|
def mock_account():
|
|
key = Account.create(extra_entropy='M*A*S*H* DIWOKNECNECENOE#@!')
|
|
account = Account.from_key(private_key=key.key)
|
|
return account
|
|
|
|
|
|
def test_blank_keystore_uri():
|
|
with pytest.raises(Signer.InvalidSignerURI, match='Blank signer URI - No keystore path provided') as error:
|
|
Signer.from_signer_uri(uri='keystore://', testnet=True) # it's blank!
|