mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

* Problem: we have unused and outdated fixtures Solution: clean up fixtures and tests accordingly * Problem: there are still unused fixtures Solution: remove Merlin keys * Problem: There are unnecessary markers Solution: remove the tendermint marker for tests
73 lines
2.6 KiB
Python
73 lines
2.6 KiB
Python
# Copyright BigchainDB GmbH and BigchainDB contributors
|
|
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
|
# Code is Apache-2.0 and docs are CC-BY-4.0
|
|
|
|
import pytest
|
|
import random
|
|
|
|
|
|
def test_asset_transfer(b, signed_create_tx, user_pk, user_sk):
|
|
from bigchaindb.models import Transaction
|
|
|
|
tx_transfer = Transaction.transfer(signed_create_tx.to_inputs(), [([user_pk], 1)],
|
|
signed_create_tx.id)
|
|
tx_transfer_signed = tx_transfer.sign([user_sk])
|
|
|
|
b.store_bulk_transactions([signed_create_tx])
|
|
|
|
assert tx_transfer_signed.validate(b) == tx_transfer_signed
|
|
assert tx_transfer_signed.asset['id'] == signed_create_tx.id
|
|
|
|
|
|
def test_validate_transfer_asset_id_mismatch(b, signed_create_tx, user_pk, user_sk):
|
|
from bigchaindb.common.exceptions import AssetIdMismatch
|
|
from bigchaindb.models import Transaction
|
|
|
|
tx_transfer = Transaction.transfer(signed_create_tx.to_inputs(), [([user_pk], 1)],
|
|
signed_create_tx.id)
|
|
tx_transfer.asset['id'] = 'a' * 64
|
|
tx_transfer_signed = tx_transfer.sign([user_sk])
|
|
|
|
b.store_bulk_transactions([signed_create_tx])
|
|
|
|
with pytest.raises(AssetIdMismatch):
|
|
tx_transfer_signed.validate(b)
|
|
|
|
|
|
def test_get_asset_id_create_transaction(alice, user_pk):
|
|
from bigchaindb.models import Transaction
|
|
tx_create = Transaction.create([alice.public_key], [([user_pk], 1)])
|
|
assert Transaction.get_asset_id(tx_create) == tx_create.id
|
|
|
|
|
|
def test_get_asset_id_transfer_transaction(b, signed_create_tx, user_pk):
|
|
from bigchaindb.models import Transaction
|
|
|
|
tx_transfer = Transaction.transfer(signed_create_tx.to_inputs(), [([user_pk], 1)],
|
|
signed_create_tx.id)
|
|
asset_id = Transaction.get_asset_id(tx_transfer)
|
|
assert asset_id == tx_transfer.asset['id']
|
|
|
|
|
|
def test_asset_id_mismatch(alice, user_pk):
|
|
from bigchaindb.models import Transaction
|
|
from bigchaindb.common.exceptions import AssetIdMismatch
|
|
|
|
tx1 = Transaction.create([alice.public_key], [([user_pk], 1)],
|
|
metadata={'msg': random.random()})
|
|
tx1.sign([alice.private_key])
|
|
tx2 = Transaction.create([alice.public_key], [([user_pk], 1)],
|
|
metadata={'msg': random.random()})
|
|
tx2.sign([alice.private_key])
|
|
|
|
with pytest.raises(AssetIdMismatch):
|
|
Transaction.get_asset_id([tx1, tx2])
|
|
|
|
|
|
def test_create_valid_divisible_asset(b, user_pk, user_sk):
|
|
from bigchaindb.models import Transaction
|
|
|
|
tx = Transaction.create([user_pk], [([user_pk], 2)])
|
|
tx_signed = tx.sign([user_sk])
|
|
assert tx_signed.validate(b) == tx_signed
|