From cb70584ce64e021e9a7716507abcadd1652ebc98 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Thu, 18 Oct 2012 12:01:14 -0500 Subject: [PATCH] stktest: Add GetInput test sequence 1.3 --- tools/stktest.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/tools/stktest.c b/tools/stktest.c index 905aed6a..161580fb 100644 --- a/tools/stktest.c +++ b/tools/stktest.c @@ -2214,6 +2214,30 @@ static DBusMessage *test_get_input_12(DBusMessage *msg, return reply; } +static DBusMessage *test_get_input_13(DBusMessage *msg, + const char *alpha, + unsigned char icon_id, + const char *def_input, + unsigned char min, unsigned char max, + gboolean hide_typing) +{ + DBusMessage *reply; + const char *ret = "AbCdE"; + + STKTEST_AGENT_ASSERT(g_str_equal(alpha, "Enter AbCdE")); + STKTEST_AGENT_ASSERT(icon_id == 0); + STKTEST_AGENT_ASSERT(g_str_equal(def_input, "")); + STKTEST_AGENT_ASSERT(min == 5); + STKTEST_AGENT_ASSERT(max == 5); + STKTEST_AGENT_ASSERT(hide_typing == FALSE); + + reply = dbus_message_new_method_return(msg); + dbus_message_append_args(reply, DBUS_TYPE_STRING, &ret, + DBUS_TYPE_INVALID); + + return reply; +} + static void power_down_reply(DBusPendingCall *call, void *user_data) { __stktest_test_next(); @@ -2670,6 +2694,12 @@ static void __stktest_test_init(void) sizeof(get_input_response_121), test_get_input_12, expect_response_and_finish); + stktest_add_test("Get Input 1.3", "RequestInput", + get_input_131, sizeof(get_input_131), + get_input_response_131, + sizeof(get_input_response_131), + test_get_input_13, + expect_response_and_finish); } static void test_destroy(gpointer user_data)