我正在使用cerberus
带有python-3.8
stable 的 v1.3.2 来验证将用于发送 http 请求的 json 数据。我在使用该dependencies
规则时遇到问题。我的对象有一个字段和一个包含更多数据request_type
的可选字段。payload
只有具有request_type
in的对象['CREATE', 'AMEND']
才有payload
. 当我运行验证时,我收到一个与payload
. 这是我正在运行的代码:
from cerberus import Validator
request = {
"request_type": "CREATE",
"other_field_1": "whatever",
"other_field_2": "whatever",
"payload": {
"id": "123456",
"jobs": [
{
"duration": 1800,
"other_field_1": "whatever",
"other_field_2": "whatever"
}
]
}
}
schema = {
'request_type': {
'type': 'string',
'allowed': ['CREATE', 'CANCEL', 'AMEND'],
'required': True,
'empty': False
},
'other_field_1': {'type': 'string', },
'other_field_2': {'type': 'string', },
'payload': {
'required': False,
'schema': {
'id': {
'type': 'string',
'regex': r'[A-Za-z0-9_-]`',
'minlength': 1, 'maxlength': 32,
'coerce': str
},
'jobs': {
'type': 'list',
'schema': {
'duration': {
'type': 'integer', 'min': 0,
'required': True, 'empty': False,
},
'other_field_1': {'type': 'string', },
'other_field_2': {'type': 'string', },
}
}
},
'dependencies': {'request_type': ['CREATE', 'AMEND']},
}
}
validator = Validator(schema, purge_unknown=True)
if validator.validate(request):
print('The request is valid.')
else:
print(f'The request failed validation: {validator.errors}')
这是我得到的错误:
"RuntimeError: There's no handler for 'duration' in the 'validate' domain."
有什么我做错了吗?
对于上下文,我设法通过使用完全相同的规则使验证工作,但我没有使用dependencies
,而是有两个名为payload_schema
和的单独模式no_payload_schema
。在payload_schema
我将允许的值设置为request_type
,['CREATE', 'AMEND']
并在no_payload_schema
我将允许的值设置为['CANCEL']
。我在两个模式上运行验证,如果它们都没有通过,我会引发错误。这听起来有点骇人听闻,我想了解如何使用该dependencies
规则来做到这一点。