tests/qtest/qom-test: Test retrieval of machine class properties
authorThomas Huth <thuth@redhat.com>
Thu, 23 Jan 2025 20:49:56 +0000 (21:49 +0100)
committerThomas Huth <thuth@redhat.com>
Tue, 25 Feb 2025 09:01:24 +0000 (10:01 +0100)
There were recently some crashes that occurred when trying to
retrieve the properties of machines. Let's add a test to avoid
regression here.

Message-ID: <20250123204956.1561463-1-thuth@redhat.com>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/qtest/qom-test.c

index 1e30a5bfe8d283511c20a07f4d6db887adcbb3c7..27d70bc11ce27cf2fa5860a700b8c23bcbd8905d 100644 (file)
@@ -88,6 +88,17 @@ static void test_machine(gconstpointer data)
 
     qts = qtest_initf("-machine %s", machine);
 
+    if (g_test_slow()) {
+        /* Make sure we can get the machine class properties: */
+        g_autofree char *qom_machine = g_strdup_printf("%s-machine", machine);
+
+        response = qtest_qmp(qts, "{ 'execute': 'qom-list-properties',"
+                                  "  'arguments': { 'typename': %s } }",
+                             qom_machine);
+        g_assert(response);
+        qobject_unref(response);
+    }
+
     test_properties(qts, "/machine", true);
 
     response = qtest_qmp(qts, "{ 'execute': 'quit' }");