mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
26 lines
865 B
Python
26 lines
865 B
Python
from bigchaindb.common.schema import TX_SCHEMA, VOTE_SCHEMA
|
|
|
|
|
|
def _test_additionalproperties(node, path=''):
|
|
"""
|
|
Validate that each object node has additionalProperties set, so that
|
|
objects with junk keys do not pass as valid.
|
|
"""
|
|
if isinstance(node, list):
|
|
for i, nnode in enumerate(node):
|
|
_test_additionalproperties(nnode, path + str(i) + '.')
|
|
if isinstance(node, dict):
|
|
if node.get('type') == 'object':
|
|
assert 'additionalProperties' in node, \
|
|
("additionalProperties not set at path:" + path)
|
|
for name, val in node.items():
|
|
_test_additionalproperties(val, path + name + '.')
|
|
|
|
|
|
def test_transaction_schema_additionalproperties():
|
|
_test_additionalproperties(TX_SCHEMA)
|
|
|
|
|
|
def test_vote_schema_additionalproperties():
|
|
_test_additionalproperties(VOTE_SCHEMA)
|