]>
Commit | Line | Data |
---|---|---|
aa97405e AF |
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 <glib.h> | |
11 | #include <string.h> | |
12 | #include "libqtest.h" | |
13 | #include "qemu/osdep.h" | |
14 | ||
15 | /* Tests only initialization so far. TODO: Replace with functional tests */ | |
16 | static void pci_nop(void) | |
17 | { | |
18 | } | |
19 | ||
823a9987 IM |
20 | static void hotplug(void) |
21 | { | |
22 | QDict *response; | |
23 | ||
24 | response = qmp("{\"execute\": \"device_add\"," | |
25 | " \"arguments\": {" | |
26 | " \"driver\": \"virtserialport\"," | |
27 | " \"id\": \"hp-port\"" | |
28 | "}}"); | |
29 | ||
30 | g_assert(response); | |
31 | g_assert(!qdict_haskey(response, "error")); | |
32 | QDECREF(response); | |
33 | ||
34 | response = qmp("{\"execute\": \"device_del\"," | |
35 | " \"arguments\": {" | |
36 | " \"id\": \"hp-port\"" | |
37 | "}}"); | |
38 | ||
39 | g_assert(response); | |
40 | g_assert(!qdict_haskey(response, "error")); | |
41 | g_assert(qdict_haskey(response, "event")); | |
42 | g_assert(!strcmp(qdict_get_str(response, "event"), "DEVICE_DELETED")); | |
43 | QDECREF(response); | |
44 | } | |
45 | ||
aa97405e AF |
46 | int main(int argc, char **argv) |
47 | { | |
48 | int ret; | |
49 | ||
50 | g_test_init(&argc, &argv, NULL); | |
51 | qtest_add_func("/virtio/serial/pci/nop", pci_nop); | |
823a9987 | 52 | qtest_add_func("/virtio/serial/pci/hotplug", hotplug); |
aa97405e AF |
53 | |
54 | qtest_start("-device virtio-serial-pci"); | |
55 | ret = g_test_run(); | |
56 | ||
57 | qtest_end(); | |
58 | ||
59 | return ret; | |
60 | } |