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
80 lines
2.7 KiB
Python
80 lines
2.7 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
|
|
|
|
|
|
def test_valid_txid():
|
|
from bigchaindb.web.views.parameters import valid_txid
|
|
|
|
valid = ['18ac3e7343f016890c510e93f935261169d9e3f565436429830faf0934f4f8e4',
|
|
'18AC3E7343F016890C510E93F935261169D9E3F565436429830FAF0934F4F8E4']
|
|
for h in valid:
|
|
assert valid_txid(h) == h.lower()
|
|
|
|
non = ['18ac3e7343f016890c510e93f935261169d9e3f565436429830faf0934f4f8e',
|
|
'18ac3e7343f016890c510e93f935261169d9e3f565436429830faf0934f4f8e45',
|
|
'18ac3e7343f016890c510e93f935261169d9e3f565436429830faf0934f4f8eg',
|
|
'18ac3e7343f016890c510e93f935261169d9e3f565436429830faf0934f4f8e ',
|
|
'']
|
|
for h in non:
|
|
with pytest.raises(ValueError):
|
|
valid_txid(h)
|
|
|
|
|
|
def test_valid_bool():
|
|
from bigchaindb.web.views.parameters import valid_bool
|
|
|
|
assert valid_bool('true') is True
|
|
assert valid_bool('false') is False
|
|
assert valid_bool('tRUE') is True
|
|
assert valid_bool('fALSE') is False
|
|
|
|
with pytest.raises(ValueError):
|
|
valid_bool('0')
|
|
with pytest.raises(ValueError):
|
|
valid_bool('1')
|
|
with pytest.raises(ValueError):
|
|
valid_bool('yes')
|
|
with pytest.raises(ValueError):
|
|
valid_bool('no')
|
|
|
|
|
|
def test_valid_ed25519():
|
|
from bigchaindb.web.views.parameters import valid_ed25519
|
|
|
|
valid = ['123456789abcdefghijkmnopqrstuvwxyz1111111111',
|
|
'123456789ABCDEFGHJKLMNPQRSTUVWXYZ1111111111']
|
|
for h in valid:
|
|
assert valid_ed25519(h) == h
|
|
|
|
with pytest.raises(ValueError):
|
|
valid_ed25519('1234556789abcdefghijkmnopqrstuvwxyz1111111')
|
|
with pytest.raises(ValueError):
|
|
valid_ed25519('1234556789abcdefghijkmnopqrstuvwxyz1111111111')
|
|
with pytest.raises(ValueError):
|
|
valid_ed25519('123456789abcdefghijkmnopqrstuvwxyz111111111l')
|
|
with pytest.raises(ValueError):
|
|
valid_ed25519('123456789abcdefghijkmnopqrstuvwxyz111111111I')
|
|
with pytest.raises(ValueError):
|
|
valid_ed25519('1234556789abcdefghijkmnopqrstuvwxyz11111111O')
|
|
with pytest.raises(ValueError):
|
|
valid_ed25519('1234556789abcdefghijkmnopqrstuvwxyz111111110')
|
|
|
|
|
|
def test_valid_operation():
|
|
from bigchaindb.web.views.parameters import valid_operation
|
|
|
|
assert valid_operation('create') == 'CREATE'
|
|
assert valid_operation('transfer') == 'TRANSFER'
|
|
assert valid_operation('CREATe') == 'CREATE'
|
|
assert valid_operation('TRANSFEr') == 'TRANSFER'
|
|
|
|
with pytest.raises(ValueError):
|
|
valid_operation('GENESIS')
|
|
with pytest.raises(ValueError):
|
|
valid_operation('blah')
|
|
with pytest.raises(ValueError):
|
|
valid_operation('')
|