mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
tests/qtest/pvpanic: add tests for pvshutdown event
Validate that a shutdown via the pvpanic device emits the correct QMP events. Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20240527-pvpanic-shutdown-v8-7-5a28ec02558b@t-8ch.de> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
8db1f7be78
commit
b279c3c88d
2 changed files with 68 additions and 0 deletions
|
@ -58,11 +58,40 @@ static void test_panic(void)
|
|||
qtest_quit(qts);
|
||||
}
|
||||
|
||||
static void test_pvshutdown(void)
|
||||
{
|
||||
uint8_t val;
|
||||
QDict *response, *data;
|
||||
QTestState *qts;
|
||||
|
||||
qts = qtest_init("-device pvpanic");
|
||||
|
||||
val = qtest_inb(qts, 0x505);
|
||||
g_assert_cmpuint(val, ==, PVPANIC_EVENTS);
|
||||
|
||||
qtest_outb(qts, 0x505, PVPANIC_SHUTDOWN);
|
||||
|
||||
response = qtest_qmp_eventwait_ref(qts, "GUEST_PVSHUTDOWN");
|
||||
qobject_unref(response);
|
||||
|
||||
response = qtest_qmp_eventwait_ref(qts, "SHUTDOWN");
|
||||
g_assert(qdict_haskey(response, "data"));
|
||||
data = qdict_get_qdict(response, "data");
|
||||
g_assert(qdict_haskey(data, "guest"));
|
||||
g_assert(qdict_get_bool(data, "guest"));
|
||||
g_assert(qdict_haskey(data, "reason"));
|
||||
g_assert_cmpstr(qdict_get_str(data, "reason"), ==, "guest-shutdown");
|
||||
qobject_unref(response);
|
||||
|
||||
qtest_quit(qts);
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
g_test_init(&argc, &argv, NULL);
|
||||
qtest_add_func("/pvpanic/panic", test_panic);
|
||||
qtest_add_func("/pvpanic/panic-nopause", test_panic_nopause);
|
||||
qtest_add_func("/pvpanic/pvshutdown", test_pvshutdown);
|
||||
|
||||
return g_test_run();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue