1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-10 11:35:16 +02:00
bigchaindb/tests/test_util.py

25 lines
674 B
Python
Raw Normal View History

2016-04-14 18:55:09 +02:00
import pytest
2016-02-24 02:38:30 +01:00
def test_transform_create(b, user_private_key, user_public_key):
2016-04-14 18:55:09 +02:00
from bigchaindb import util
2016-02-24 02:38:30 +01:00
tx = util.create_tx(user_public_key, user_public_key, None, 'CREATE')
tx = util.transform_create(tx)
tx = util.sign_tx(tx, b.me_private)
assert tx['transaction']['current_owner'] == b.me
assert tx['transaction']['new_owner'] == user_public_key
assert util.verify_signature(tx)
2016-04-14 18:55:09 +02:00
@pytest.mark.skipif(reason='asdf')
def test_pool():
from bigchaindb import util
pool = util.pool(lambda: 'hello', limit=4)
assert pool().__enter__() == 'hello'
assert pool().__enter__() == 'hello'
assert pool().__enter__() == 'hello'