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