From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38954) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsQUb-00015X-Cr for qemu-devel@nongnu.org; Thu, 05 Jun 2014 01:45:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WsQUT-000503-V3 for qemu-devel@nongnu.org; Thu, 05 Jun 2014 01:45:37 -0400 Received: from mx1.redhat.com ([209.132.183.28]:32753) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsQUT-0004zt-NM for qemu-devel@nongnu.org; Thu, 05 Jun 2014 01:45:29 -0400 From: Amos Kong Date: Thu, 5 Jun 2014 13:45:16 +0800 Message-Id: <1401947118-19973-3-git-send-email-akong@redhat.com> In-Reply-To: <1401947118-19973-1-git-send-email-akong@redhat.com> References: <1401947118-19973-1-git-send-email-akong@redhat.com> Subject: [Qemu-devel] [PATCH v2 2/4] qtest: introduce qmp_exec_hmp_cmd() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: stefanha@gmail.com, afaerber@suse.de, mst@redhat.com Signed-off-by: Amos Kong --- tests/libqtest.c | 16 ++++++++++++++++ tests/libqtest.h | 8 ++++++++ 2 files changed, 24 insertions(+) diff --git a/tests/libqtest.c b/tests/libqtest.c index 71468ac..ceb1734 100644 --- a/tests/libqtest.c +++ b/tests/libqtest.c @@ -646,3 +646,19 @@ void qmp_discard_response(const char *fmt, ...) qtest_qmpv_discard_response(global_qtest, fmt, ap); va_end(ap); } + +void qmp_exec_hmp_cmd(const char *cmd, const char *expected_ret) +{ + QDict *response; + const char *response_return; + + response = qmp("{\"execute\": \"human-monitor-command\"," + " \"arguments\": {" + " \"command-line\": \"%s\"" + "}}", g_strescape(cmd, NULL)); + g_assert(response); + response_return = qdict_get_try_str(response, "return"); + g_assert(response_return); + g_assert_cmpstr(response_return, ==, expected_ret); + QDECREF(response); +} diff --git a/tests/libqtest.h b/tests/libqtest.h index 8f323c7..e095df2 100644 --- a/tests/libqtest.h +++ b/tests/libqtest.h @@ -375,6 +375,14 @@ QDict *qmp(const char *fmt, ...); void qmp_discard_response(const char *fmt, ...); /** + * qmp_exec_hmp_cmd: + * @fmt...: HMP command to execute + * + * Executes HMP command by 'human-monitor-command'. + */ +void qmp_exec_hmp_cmd(const char *cmd, const char *expected_ret); + +/** * qmp_receive: * * Reads a QMP message from QEMU and returns the response. -- 1.9.3