qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH RFC 3/3] tests: add test cases for qapi event su


From: Eric Blake
Subject: Re: [Qemu-devel] [PATCH RFC 3/3] tests: add test cases for qapi event support
Date: Fri, 13 Dec 2013 06:36:17 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0

On 11/12/2013 06:44 PM, Wenchao Xia wrote:
> Signed-off-by: Wenchao Xia <address@hidden>
> ---

> +++ b/tests/qapi-schema/qapi-schema-test.json
> @@ -93,3 +93,15 @@
>      '*u16' : [ 'uint16' ],
>      '*i64x':   'int'     ,
>      '*u64x':   'uint64'  } }
> +
> +# testing event
> +{ 'type': 'EventStructOne',
> +  'data': { 'struct1': 'UserDefOne', 'string': 'str', '*enum2': 'EnumOne' } }
> +
> +{ 'event': 'EVENT_A' }
> +{ 'event': 'EVENT_B',
> +  'data': { } }

Do we really have events with no associated information (the mere name
of the event carrying the full data?)

> +{ 'event': 'EVENT_C',
> +  'data': { '*a': 'int', '*b': 'UserDefOne', 'c': 'str' } }
> +{ 'event': 'EVENT_D',
> +  'data': { 'a' : 'EventStructOne', 'b' : 'str', '*c': 'str', '*enum3': 
> 'EnumOne' } }

Looks like reasonable support for encoding existing events.

> + OrderedDict([('event', 'EVENT_A')]),
> + OrderedDict([('event', 'EVENT_B'), ('data', OrderedDict())]),

Shouldn't the omission of 'data' be the same as 'data':{}?

> +++ b/tests/test-qmp-event.c
> @@ -0,0 +1,250 @@
> +/*
> + * QMP Input Visitor unit-tests.
> + *
> + * Copyright (C) 2011 Red Hat Inc.

Unusual choice of copyright year and ownership.

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]