qapi: Fix missing 'if' checks in struct, union, alternate 'data'
Commit 87adbbffd4..3e270dcacc "qapi: Add 'if' to (implicit struct|union|alternate) members" (v4.0.0) neglected test coverage, and promptly failed to check the conditions. Review fail. Recent commit "tests/qapi-schema: Demonstrate insufficient 'if' checking" added test coverage, demonstrating the bug. Fix it by add the missing check_if(). Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190914153506.2151-13-armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
c2c7065e17
commit
dec0012ef8
@ -803,6 +803,7 @@ def check_type(info, source, value,
|
|||||||
# an optional argument.
|
# an optional argument.
|
||||||
check_known_keys(info, "member '%s' of %s" % (key, source),
|
check_known_keys(info, "member '%s' of %s" % (key, source),
|
||||||
arg, ['type'], ['if'])
|
arg, ['type'], ['if'])
|
||||||
|
check_if(arg, info)
|
||||||
check_type(info, "Member '%s' of %s" % (key, source),
|
check_type(info, "Member '%s' of %s" % (key, source),
|
||||||
arg['type'], allow_array=True,
|
arg['type'], allow_array=True,
|
||||||
allow_metas=['built-in', 'union', 'alternate', 'struct',
|
allow_metas=['built-in', 'union', 'alternate', 'struct',
|
||||||
@ -902,6 +903,7 @@ def check_union(expr, info):
|
|||||||
|
|
||||||
check_known_keys(info, "member '%s' of union '%s'" % (key, name),
|
check_known_keys(info, "member '%s' of union '%s'" % (key, name),
|
||||||
value, ['type'], ['if'])
|
value, ['type'], ['if'])
|
||||||
|
check_if(value, info)
|
||||||
# Each value must name a known type
|
# Each value must name a known type
|
||||||
check_type(info, "Member '%s' of union '%s'" % (key, name),
|
check_type(info, "Member '%s' of union '%s'" % (key, name),
|
||||||
value['type'],
|
value['type'],
|
||||||
@ -930,6 +932,7 @@ def check_alternate(expr, info):
|
|||||||
check_known_keys(info,
|
check_known_keys(info,
|
||||||
"member '%s' of alternate '%s'" % (key, name),
|
"member '%s' of alternate '%s'" % (key, name),
|
||||||
value, ['type'], ['if'])
|
value, ['type'], ['if'])
|
||||||
|
check_if(value, info)
|
||||||
typ = value['type']
|
typ = value['type']
|
||||||
|
|
||||||
# Ensure alternates have no type conflicts.
|
# Ensure alternates have no type conflicts.
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
tests/qapi-schema/alternate-branch-if-invalid.json:2: 'if' condition ' ' makes no sense
|
@ -1 +1 @@
|
|||||||
0
|
1
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
# Cover alternative with invalid 'if'
|
# Cover alternative with invalid 'if'
|
||||||
# FIXME not rejected, would generate '#if \n'
|
|
||||||
{ 'alternate': 'Alt',
|
{ 'alternate': 'Alt',
|
||||||
'data': { 'branch': { 'type': 'int', 'if': ' ' } } }
|
'data': { 'branch': { 'type': 'int', 'if': ' ' } } }
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
module None
|
|
||||||
object q_empty
|
|
||||||
enum QType
|
|
||||||
prefix QTYPE
|
|
||||||
member none
|
|
||||||
member qnull
|
|
||||||
member qnum
|
|
||||||
member qstring
|
|
||||||
member qdict
|
|
||||||
member qlist
|
|
||||||
member qbool
|
|
||||||
module alternate-branch-if-invalid.json
|
|
||||||
alternate Alt
|
|
||||||
tag type
|
|
||||||
case branch: int
|
|
||||||
if [' ']
|
|
@ -0,0 +1 @@
|
|||||||
|
tests/qapi-schema/struct-member-if-invalid.json:2: 'if' condition must be a string or a list of strings
|
@ -1 +1 @@
|
|||||||
0
|
1
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
# Cover member with invalid 'if'
|
# Cover member with invalid 'if'
|
||||||
# FIXME not rejected, would generate '#if True\n'
|
|
||||||
{ 'struct': 'Stru',
|
{ 'struct': 'Stru',
|
||||||
'data': { 'member': { 'type': 'int', 'if': true } } }
|
'data': { 'member': { 'type': 'int', 'if': true } } }
|
||||||
|
@ -1,15 +0,0 @@
|
|||||||
module None
|
|
||||||
object q_empty
|
|
||||||
enum QType
|
|
||||||
prefix QTYPE
|
|
||||||
member none
|
|
||||||
member qnull
|
|
||||||
member qnum
|
|
||||||
member qstring
|
|
||||||
member qdict
|
|
||||||
member qlist
|
|
||||||
member qbool
|
|
||||||
module struct-member-if-invalid.json
|
|
||||||
object Stru
|
|
||||||
member member: int optional=False
|
|
||||||
if [True]
|
|
@ -0,0 +1 @@
|
|||||||
|
tests/qapi-schema/union-branch-if-invalid.json:4: 'if' condition '' makes no sense
|
@ -1 +1 @@
|
|||||||
0
|
1
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
# Cover branch with invalid 'if'
|
# Cover branch with invalid 'if'
|
||||||
# FIXME not rejected, would generate '#if \n'
|
|
||||||
{ 'enum': 'Branches', 'data': ['branch1'] }
|
{ 'enum': 'Branches', 'data': ['branch1'] }
|
||||||
{ 'struct': 'Stru', 'data': { 'member': 'str' } }
|
{ 'struct': 'Stru', 'data': { 'member': 'str' } }
|
||||||
{ 'union': 'Uni',
|
{ 'union': 'Uni',
|
||||||
|
@ -1,23 +0,0 @@
|
|||||||
module None
|
|
||||||
object q_empty
|
|
||||||
enum QType
|
|
||||||
prefix QTYPE
|
|
||||||
member none
|
|
||||||
member qnull
|
|
||||||
member qnum
|
|
||||||
member qstring
|
|
||||||
member qdict
|
|
||||||
member qlist
|
|
||||||
member qbool
|
|
||||||
module union-branch-if-invalid.json
|
|
||||||
enum Branches
|
|
||||||
member branch1
|
|
||||||
object Stru
|
|
||||||
member member: str optional=False
|
|
||||||
object q_obj_Uni-base
|
|
||||||
member tag: Branches optional=False
|
|
||||||
object Uni
|
|
||||||
base q_obj_Uni-base
|
|
||||||
tag tag
|
|
||||||
case branch1: Stru
|
|
||||||
if ['']
|
|
Loading…
Reference in New Issue
Block a user