mirror of
https://github.com/xemu-project/xemu.git
synced 2025-02-22 05:24:14 +00:00
tests: add oob-test for qapi-schema
It simply tests the new OOB capability, and make sure the QAPISchema can parse it correctly. Signed-off-by: Peter Xu <peterx@redhat.com> Message-Id: <20180326063901.27425-7-peterx@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
4bebca1e42
commit
1a1b11dc0f
@ -523,6 +523,7 @@ qapi-schema += missing-comma-object.json
|
||||
qapi-schema += missing-type.json
|
||||
qapi-schema += nested-struct-data.json
|
||||
qapi-schema += non-objects.json
|
||||
qapi-schema += oob-test.json
|
||||
qapi-schema += pragma-doc-required-crap.json
|
||||
qapi-schema += pragma-extra-junk.json
|
||||
qapi-schema += pragma-name-case-whitelist-crap.json
|
||||
|
1
tests/qapi-schema/oob-test.err
Normal file
1
tests/qapi-schema/oob-test.err
Normal file
@ -0,0 +1 @@
|
||||
tests/qapi-schema/oob-test.json:2: 'allow-oob' of command 'oob-command-1' should only use true value
|
1
tests/qapi-schema/oob-test.exit
Normal file
1
tests/qapi-schema/oob-test.exit
Normal file
@ -0,0 +1 @@
|
||||
1
|
2
tests/qapi-schema/oob-test.json
Normal file
2
tests/qapi-schema/oob-test.json
Normal file
@ -0,0 +1,2 @@
|
||||
# Check against oob illegal value
|
||||
{ 'command': 'oob-command-1', 'allow-oob': 'some-string' }
|
0
tests/qapi-schema/oob-test.out
Normal file
0
tests/qapi-schema/oob-test.out
Normal file
@ -139,6 +139,9 @@
|
||||
{ 'command': 'boxed-struct', 'boxed': true, 'data': 'UserDefZero' }
|
||||
{ 'command': 'boxed-union', 'data': 'UserDefNativeListUnion', 'boxed': true }
|
||||
|
||||
# Smoke test on Out-Of-Band
|
||||
{ 'command': 'an-oob-command', 'allow-oob': true }
|
||||
|
||||
# For testing integer range flattening in opts-visitor. The following schema
|
||||
# corresponds to the option format:
|
||||
#
|
||||
|
@ -166,6 +166,8 @@ command boxed-struct UserDefZero -> None
|
||||
gen=True success_response=True boxed=True oob=False
|
||||
command boxed-union UserDefNativeListUnion -> None
|
||||
gen=True success_response=True boxed=True oob=False
|
||||
command an-oob-command None -> None
|
||||
gen=True success_response=True boxed=False oob=True
|
||||
object UserDefOptions
|
||||
member i64: intList optional=True
|
||||
member u64: uint64List optional=True
|
||||
|
@ -16,6 +16,10 @@ void qmp_user_def_cmd(Error **errp)
|
||||
{
|
||||
}
|
||||
|
||||
void qmp_an_oob_command(Error **errp)
|
||||
{
|
||||
}
|
||||
|
||||
Empty2 *qmp_user_def_cmd0(Error **errp)
|
||||
{
|
||||
return g_new0(Empty2, 1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user