From 7143c6948a5c6a67fa4bd0075e92f7feafe54429 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Fri, 28 Sep 2012 18:33:42 -0500 Subject: stktest: Add DisplayText test sequence 1.7 --- tools/stktest.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'tools') diff --git a/tools/stktest.c b/tools/stktest.c index cb9ae7a9..9cdfba95 100644 --- a/tools/stktest.c +++ b/tools/stktest.c @@ -1007,6 +1007,19 @@ static DBusMessage *test_display_text_16(DBusMessage *msg, return dbus_message_new_method_return(msg); } +static DBusMessage *test_display_text_17(DBusMessage *msg, + const char *text, + unsigned char icon_id, + gboolean urgent) +{ + /* oFono gives rich text formatting in HTML */ + STKTEST_AGENT_ASSERT(g_str_equal(text, "<GO-BACKWARDS>")); + STKTEST_AGENT_ASSERT(icon_id == 0); + STKTEST_AGENT_ASSERT(urgent == FALSE); + + return stktest_error_go_back(msg); +} + static void power_down_reply(DBusPendingCall *call, void *user_data) { __stktest_test_next(); @@ -1090,6 +1103,11 @@ static void __stktest_test_init(void) display_text_response_161, sizeof(display_text_response_161), test_display_text_16, expect_response); + stktest_add_test("Display Text 1.7", "DisplayText", + display_text_171, sizeof(display_text_171), + display_text_response_171, + sizeof(display_text_response_171), + test_display_text_17, expect_response); } static void test_destroy(gpointer user_data) -- cgit v1.2.3