qapi: Fix bogus error for 'if': { 'not': '' }

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20210908045428.2689093-6-armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
[check_infix()'s type hint fixed]
master
Markus Armbruster 2021-09-08 06:54:28 +02:00
parent 71f03ef9f6
commit 62f27589f8
2 changed files with 14 additions and 9 deletions

View File

@ -293,17 +293,22 @@ def check_if(expr: _JSONObject, info: QAPISourceInfo, source: str) -> None:
info,
"'if' condition of %s has conflicting keys" % source)
oper, operands = next(iter(cond.items()))
if 'not' in cond:
_check_if(cond['not'])
elif 'all' in cond:
_check_infix('all', cond['all'])
else:
_check_infix('any', cond['any'])
def _check_infix(operator: str, operands: object) -> None:
if not isinstance(operands, list):
raise QAPISemError(
info,
"'%s' condition of %s must be an array"
% (operator, source))
if not operands:
raise QAPISemError(
info, "'if' condition [] of %s is useless" % source)
if oper == "not":
_check_if(operands)
return
if oper in ("all", "any") and not isinstance(operands, list):
raise QAPISemError(
info, "'%s' condition of %s must be an array" % (oper, source))
for operand in operands:
_check_if(operand)

View File

@ -1,2 +1,2 @@
bad-if-not.json: In struct 'TestIfStruct':
bad-if-not.json:2: 'if' condition [] of struct is useless
bad-if-not.json:2: 'if' condition '' of struct is not a valid identifier