qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Michael Roth <mdroth@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, "Tomáš Golembiovský" <tgolembi@redhat.com>
Subject: [Qemu-devel] [PULL 05/14] test-qga: add trivial tests for some commands
Date: Tue,  3 Jul 2018 15:52:12 -0500	[thread overview]
Message-ID: <20180703205221.24788-6-mdroth@linux.vnet.ibm.com> (raw)
In-Reply-To: <20180703205221.24788-1-mdroth@linux.vnet.ibm.com>

From: Tomáš Golembiovský <tgolembi@redhat.com>

These commands did not get their tests in the original commits:
- guest-get-host-name
- guest-get-timezone
- guest-get-users

Trivial tests that mostly only call the commands were added.

Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
* replace QDECREF() with qobject_unref()
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
---
 tests/test-qga.c | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/tests/test-qga.c b/tests/test-qga.c
index 30c9643257..350f27812a 100644
--- a/tests/test-qga.c
+++ b/tests/test-qga.c
@@ -854,6 +854,54 @@ static void test_qga_guest_exec_invalid(gconstpointer fix)
     qobject_unref(ret);
 }
 
+static void test_qga_guest_get_host_name(gconstpointer fix)
+{
+    const TestFixture *fixture = fix;
+    QDict *ret, *val;
+
+    ret = qmp_fd(fixture->fd, "{'execute': 'guest-get-host-name'}");
+    g_assert_nonnull(ret);
+    qmp_assert_no_error(ret);
+
+    val = qdict_get_qdict(ret, "return");
+    g_assert(qdict_haskey(val, "host-name"));
+
+    qobject_unref(ret);
+}
+
+static void test_qga_guest_get_timezone(gconstpointer fix)
+{
+    const TestFixture *fixture = fix;
+    QDict *ret, *val;
+
+    ret = qmp_fd(fixture->fd, "{'execute': 'guest-get-timezone'}");
+    g_assert_nonnull(ret);
+    qmp_assert_no_error(ret);
+
+    /* Make sure there's at least offset */
+    val = qdict_get_qdict(ret, "return");
+    g_assert(qdict_haskey(val, "offset"));
+
+    qobject_unref(ret);
+}
+
+static void test_qga_guest_get_users(gconstpointer fix)
+{
+    const TestFixture *fixture = fix;
+    QDict *ret;
+    QList *val;
+
+    ret = qmp_fd(fixture->fd, "{'execute': 'guest-get-users'}");
+    g_assert_nonnull(ret);
+    qmp_assert_no_error(ret);
+
+    /* There is not much to test here */
+    val = qdict_get_qlist(ret, "return");
+    g_assert_nonnull(val);
+
+    qobject_unref(ret);
+}
+
 static void test_qga_guest_get_osinfo(gconstpointer data)
 {
     TestFixture fixture;
@@ -946,6 +994,12 @@ int main(int argc, char **argv)
                          test_qga_guest_exec_invalid);
     g_test_add_data_func("/qga/guest-get-osinfo", &fix,
                          test_qga_guest_get_osinfo);
+    g_test_add_data_func("/qga/guest-get-host-name", &fix,
+                         test_qga_guest_get_host_name);
+    g_test_add_data_func("/qga/guest-get-timezone", &fix,
+                         test_qga_guest_get_timezone);
+    g_test_add_data_func("/qga/guest-get-users", &fix,
+                         test_qga_guest_get_users);
 
     ret = g_test_run();
 
-- 
2.11.0

  parent reply	other threads:[~2018-07-03 20:53 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-03 20:52 [Qemu-devel] [PULL 00/14] qga patch queue for soft-freeze Michael Roth
2018-07-03 20:52 ` [Qemu-devel] [PULL 01/14] qga: unset frozen state if no mount points are frozen Michael Roth
2018-07-03 20:52 ` [Qemu-devel] [PULL 02/14] qga: check bytes count read by guest-file-read Michael Roth
2018-07-03 20:52 ` [Qemu-devel] [PULL 03/14] qga: add mountpoint usage info to GuestFilesystemInfo Michael Roth
2018-07-03 20:52 ` [Qemu-devel] [PULL 04/14] qga-win: add driver path usage " Michael Roth
2018-07-03 20:52 ` Michael Roth [this message]
2018-07-03 20:52 ` [Qemu-devel] [PULL 06/14] qga/schema: fix documentation for GuestOSInfo Michael Roth
2018-07-03 20:52 ` [Qemu-devel] [PULL 07/14] qga-win: Fixing msi upgrade disallow in WiX file Michael Roth
2018-07-03 20:52 ` [Qemu-devel] [PULL 08/14] qemu-ga: make get-fsinfo work over pci bridges Michael Roth
2018-07-03 20:52 ` [Qemu-devel] [PULL 09/14] qga: refactoring qmp_guest_suspend_* functions Michael Roth
2018-07-03 20:52 ` [Qemu-devel] [PULL 10/14] qga: bios_supports_mode: decoupling pm-utils and sys logic Michael Roth
2018-07-03 20:52 ` [Qemu-devel] [PULL 11/14] qga: guest_suspend: " Michael Roth
2018-07-03 20:52 ` [Qemu-devel] [PULL 12/14] qga: removing switch statements, adding run_process_child Michael Roth
2018-07-03 20:52 ` [Qemu-devel] [PULL 13/14] qga: systemd hibernate/suspend/hybrid-sleep support Michael Roth
2018-07-03 20:52 ` [Qemu-devel] [PULL 14/14] qga: removing bios_supports_mode Michael Roth
2018-07-05  9:31 ` [Qemu-devel] [PULL 00/14] qga patch queue for soft-freeze Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180703205221.24788-6-mdroth@linux.vnet.ibm.com \
    --to=mdroth@linux.vnet.ibm.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=tgolembi@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).