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
55 lines
1.6 KiB
Python
55 lines
1.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
|
|
|
|
BLOCKS_ENDPOINT = '/api/v1/blocks/'
|
|
|
|
|
|
@pytest.mark.bdb
|
|
@pytest.mark.usefixtures('inputs')
|
|
def test_get_block_returns_404_if_not_found(client):
|
|
res = client.get(BLOCKS_ENDPOINT + '123')
|
|
assert res.status_code == 404
|
|
|
|
res = client.get(BLOCKS_ENDPOINT + '123/')
|
|
assert res.status_code == 404
|
|
|
|
|
|
@pytest.mark.bdb
|
|
def test_get_blocks_by_txid_endpoint_returns_empty_list_not_found(client):
|
|
res = client.get(BLOCKS_ENDPOINT + '?transaction_id=')
|
|
assert res.status_code == 200
|
|
assert len(res.json) == 0
|
|
|
|
res = client.get(BLOCKS_ENDPOINT + '?transaction_id=123')
|
|
assert res.status_code == 200
|
|
assert len(res.json) == 0
|
|
|
|
|
|
@pytest.mark.bdb
|
|
def test_get_blocks_by_txid_endpoint_returns_400_bad_query_params(client):
|
|
res = client.get(BLOCKS_ENDPOINT)
|
|
assert res.status_code == 400
|
|
|
|
res = client.get(BLOCKS_ENDPOINT + '?ts_id=123')
|
|
assert res.status_code == 400
|
|
assert res.json == {
|
|
'message': {
|
|
'transaction_id': 'Missing required parameter in the JSON body or the post body or the query string'
|
|
}
|
|
}
|
|
|
|
res = client.get(BLOCKS_ENDPOINT + '?transaction_id=123&foo=123')
|
|
assert res.status_code == 400
|
|
assert res.json == {
|
|
'message': 'Unknown arguments: foo'
|
|
}
|
|
|
|
res = client.get(BLOCKS_ENDPOINT + '?transaction_id=123&status=123')
|
|
assert res.status_code == 400
|
|
assert res.json == {
|
|
'message': 'Unknown arguments: status'
|
|
}
|