]>
Commit | Line | Data |
---|---|---|
26c9a015 AF |
1 | /* |
2 | * QTest testcase for VirtIO SCSI | |
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 | ||
ac2c4946 IM |
20 | static void hotplug(void) |
21 | { | |
22 | QDict *response; | |
23 | ||
24 | response = qmp("{\"execute\": \"device_add\"," | |
25 | " \"arguments\": {" | |
26 | " \"driver\": \"scsi-hd\"," | |
27 | " \"id\": \"scsi-hd\"," | |
28 | " \"drive\": \"drv1\"" | |
29 | "}}"); | |
30 | ||
31 | g_assert(response); | |
32 | g_assert(!qdict_haskey(response, "error")); | |
33 | QDECREF(response); | |
34 | ||
35 | response = qmp("{\"execute\": \"device_del\"," | |
36 | " \"arguments\": {" | |
37 | " \"id\": \"scsi-hd\"" | |
38 | "}}"); | |
39 | ||
40 | g_assert(response); | |
41 | g_assert(!qdict_haskey(response, "error")); | |
42 | g_assert(qdict_haskey(response, "event")); | |
43 | g_assert(!strcmp(qdict_get_str(response, "event"), "DEVICE_DELETED")); | |
44 | QDECREF(response); | |
45 | } | |
46 | ||
26c9a015 AF |
47 | int main(int argc, char **argv) |
48 | { | |
49 | int ret; | |
50 | ||
51 | g_test_init(&argc, &argv, NULL); | |
52 | qtest_add_func("/virtio/scsi/pci/nop", pci_nop); | |
ac2c4946 | 53 | qtest_add_func("/virtio/scsi/pci/hotplug", hotplug); |
26c9a015 AF |
54 | |
55 | qtest_start("-drive id=drv0,if=none,file=/dev/null " | |
ac2c4946 | 56 | "-drive id=drv1,if=none,file=/dev/null " |
26c9a015 AF |
57 | "-device virtio-scsi-pci,id=vscsi0 " |
58 | "-device scsi-hd,bus=vscsi0.0,drive=drv0"); | |
59 | ret = g_test_run(); | |
60 | ||
61 | qtest_end(); | |
62 | ||
63 | return ret; | |
64 | } |