These changes are the raw update to qemu-2.6.
[kvmfornfv.git] / qemu / tests / virtio-serial-test.c
1 /*
2  * QTest testcase for VirtIO Serial
3  *
4  * Copyright (c) 2014 SUSE LINUX Products GmbH
5  *
6  * This work is licensed under the terms of the GNU GPL, version 2 or later.
7  * See the COPYING file in the top-level directory.
8  */
9
10 #include "qemu/osdep.h"
11 #include <glib.h>
12 #include "libqtest.h"
13
14 /* Tests only initialization so far. TODO: Replace with functional tests */
15 static void pci_nop(void)
16 {
17 }
18
19 static void hotplug(void)
20 {
21     QDict *response;
22
23     response = qmp("{\"execute\": \"device_add\","
24                    " \"arguments\": {"
25                    "   \"driver\": \"virtserialport\","
26                    "   \"id\": \"hp-port\""
27                    "}}");
28
29     g_assert(response);
30     g_assert(!qdict_haskey(response, "error"));
31     QDECREF(response);
32
33     response = qmp("{\"execute\": \"device_del\","
34                    " \"arguments\": {"
35                    "   \"id\": \"hp-port\""
36                    "}}");
37
38     g_assert(response);
39     g_assert(!qdict_haskey(response, "error"));
40     g_assert(qdict_haskey(response, "event"));
41     g_assert(!strcmp(qdict_get_str(response, "event"), "DEVICE_DELETED"));
42     QDECREF(response);
43 }
44
45 int main(int argc, char **argv)
46 {
47     int ret;
48
49     g_test_init(&argc, &argv, NULL);
50     qtest_add_func("/virtio/serial/pci/nop", pci_nop);
51     qtest_add_func("/virtio/serial/pci/hotplug", hotplug);
52
53     qtest_start("-device virtio-serial-pci");
54     ret = g_test_run();
55
56     qtest_end();
57
58     return ret;
59 }