]>
Commit | Line | Data |
---|---|---|
43cd2098 | 1 | /* |
e2f3f221 | 2 | * blockdev.c test cases |
43cd2098 | 3 | * |
e2f3f221 | 4 | * Copyright (C) 2013-2014 Red Hat Inc. |
43cd2098 SH |
5 | * |
6 | * Authors: | |
7 | * Stefan Hajnoczi <[email protected]> | |
8 | * | |
9 | * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. | |
10 | * See the COPYING.LIB file in the top-level directory. | |
11 | */ | |
12 | ||
681c28a3 | 13 | #include "qemu/osdep.h" |
43cd2098 | 14 | #include "libqtest.h" |
2f84a92e | 15 | #include "libqos/virtio.h" |
452fcdbc | 16 | #include "qapi/qmp/qdict.h" |
43cd2098 | 17 | |
055a1efc MA |
18 | /* TODO actually test the results and get rid of this */ |
19 | #define qmp_discard_response(...) qobject_unref(qmp(__VA_ARGS__)) | |
20 | ||
2eea5cd4 | 21 | static void drive_add(void) |
e2f3f221 | 22 | { |
5fb48d96 | 23 | char *resp = hmp("drive_add 0 if=none,id=drive0"); |
e2f3f221 | 24 | |
5fb48d96 MA |
25 | g_assert_cmpstr(resp, ==, "OK\r\n"); |
26 | g_free(resp); | |
2eea5cd4 MA |
27 | } |
28 | ||
29 | static void drive_del(void) | |
30 | { | |
5fb48d96 | 31 | char *resp = hmp("drive_del drive0"); |
e2f3f221 | 32 | |
5fb48d96 MA |
33 | g_assert_cmpstr(resp, ==, ""); |
34 | g_free(resp); | |
2eea5cd4 MA |
35 | } |
36 | ||
767c86d3 MA |
37 | static void device_del(void) |
38 | { | |
39 | QDict *response; | |
40 | ||
41 | /* Complication: ignore DEVICE_DELETED event */ | |
42 | qmp_discard_response("{'execute': 'device_del'," | |
43 | " 'arguments': { 'id': 'dev0' } }"); | |
44 | response = qmp_receive(); | |
45 | g_assert(response); | |
46 | g_assert(qdict_haskey(response, "return")); | |
cb3e7f08 | 47 | qobject_unref(response); |
767c86d3 MA |
48 | } |
49 | ||
2eea5cd4 MA |
50 | static void test_drive_without_dev(void) |
51 | { | |
52 | /* Start with an empty drive */ | |
53 | qtest_start("-drive if=none,id=drive0"); | |
54 | ||
55 | /* Delete the drive */ | |
56 | drive_del(); | |
e2f3f221 MA |
57 | |
58 | /* Ensure re-adding the drive works - there should be no duplicate ID error | |
59 | * because the old drive must be gone. | |
60 | */ | |
2eea5cd4 | 61 | drive_add(); |
e2f3f221 MA |
62 | |
63 | qtest_end(); | |
64 | } | |
65 | ||
66 | static void test_after_failed_device_add(void) | |
43cd2098 | 67 | { |
83273e84 | 68 | char driver[32]; |
43cd2098 | 69 | QDict *response; |
43cd2098 | 70 | |
83273e84 MA |
71 | snprintf(driver, sizeof(driver), "virtio-blk-%s", |
72 | qvirtio_get_dev_type()); | |
73 | ||
43cd2098 SH |
74 | qtest_start("-drive if=none,id=drive0"); |
75 | ||
2f84a92e | 76 | /* Make device_add fail. If this leaks the virtio-blk device then a |
43cd2098 SH |
77 | * reference to drive0 will also be held (via qdev properties). |
78 | */ | |
d0e38668 MA |
79 | response = qmp("{'execute': 'device_add'," |
80 | " 'arguments': {" | |
83273e84 | 81 | " 'driver': %s," |
d0e38668 | 82 | " 'drive': 'drive0'" |
83273e84 | 83 | "}}", driver); |
43cd2098 | 84 | g_assert(response); |
ebb4d82d | 85 | qmp_assert_error_class(response, "GenericError"); |
43cd2098 SH |
86 | |
87 | /* Delete the drive */ | |
2eea5cd4 | 88 | drive_del(); |
43cd2098 SH |
89 | |
90 | /* Try to re-add the drive. This fails with duplicate IDs if a leaked | |
2f84a92e | 91 | * virtio-blk device exists that holds a reference to the old drive0. |
43cd2098 | 92 | */ |
2eea5cd4 | 93 | drive_add(); |
43cd2098 SH |
94 | |
95 | qtest_end(); | |
96 | } | |
97 | ||
767c86d3 MA |
98 | static void test_drive_del_device_del(void) |
99 | { | |
2f84a92e TH |
100 | char *args; |
101 | ||
767c86d3 | 102 | /* Start with a drive used by a device that unplugs instantaneously */ |
2f84a92e TH |
103 | args = g_strdup_printf("-drive if=none,id=drive0,file=null-co://,format=raw" |
104 | " -device virtio-scsi-%s" | |
105 | " -device scsi-hd,drive=drive0,id=dev0", | |
106 | qvirtio_get_dev_type()); | |
107 | qtest_start(args); | |
767c86d3 MA |
108 | |
109 | /* | |
110 | * Delete the drive, and then the device | |
111 | * Doing it in this order takes notoriously tricky special paths | |
112 | */ | |
113 | drive_del(); | |
114 | device_del(); | |
115 | ||
116 | qtest_end(); | |
2f84a92e | 117 | g_free(args); |
767c86d3 MA |
118 | } |
119 | ||
43cd2098 SH |
120 | int main(int argc, char **argv) |
121 | { | |
122 | const char *arch = qtest_get_arch(); | |
123 | ||
43cd2098 SH |
124 | g_test_init(&argc, &argv, NULL); |
125 | ||
e2f3f221 MA |
126 | qtest_add_func("/drive_del/without-dev", test_drive_without_dev); |
127 | ||
2f84a92e | 128 | /* TODO I guess any arch with a hot-pluggable virtio bus would do */ |
059ce0f0 | 129 | if (!strcmp(arch, "i386") || !strcmp(arch, "x86_64") || |
2f84a92e TH |
130 | !strcmp(arch, "ppc") || !strcmp(arch, "ppc64") || |
131 | !strcmp(arch, "s390x")) { | |
e2f3f221 MA |
132 | qtest_add_func("/drive_del/after_failed_device_add", |
133 | test_after_failed_device_add); | |
767c86d3 MA |
134 | qtest_add_func("/blockdev/drive_del_device_del", |
135 | test_drive_del_device_del); | |
e2f3f221 | 136 | } |
43cd2098 SH |
137 | |
138 | return g_test_run(); | |
139 | } |