From decd5066cecb6a46a1cd8e44bebc5f70cc5a3a5d Mon Sep 17 00:00:00 2001 From: James Booth Date: Thu, 23 Jul 2015 00:40:08 +0100 Subject: [PATCH] tests: prof_connect_with_roster takes items --- tests/functionaltests/proftest.c | 21 ++++++++++++++------- tests/functionaltests/test_roster.c | 14 +++----------- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/tests/functionaltests/proftest.c b/tests/functionaltests/proftest.c index 403e47d7..4618e257 100644 --- a/tests/functionaltests/proftest.c +++ b/tests/functionaltests/proftest.c @@ -212,7 +212,18 @@ prof_output_regex(char *text) void prof_connect_with_roster(char *roster) { - stbbr_for_query("jabber:iq:roster", roster); + GString *roster_str = g_string_new( + "" + "" + ); + g_string_append(roster_str, roster); + g_string_append(roster_str, + "" + "" + ); + + stbbr_for_query("jabber:iq:roster", roster_str->str); + g_string_free(roster_str, TRUE); stbbr_for_id("prof_presence_1", "" @@ -235,11 +246,7 @@ void prof_connect(void) { prof_connect_with_roster( - "" - "" - "" - "" - "" - "" + "" + "" ); } diff --git a/tests/functionaltests/test_roster.c b/tests/functionaltests/test_roster.c index ba1c851a..7a3f5656 100644 --- a/tests/functionaltests/test_roster.c +++ b/tests/functionaltests/test_roster.c @@ -67,12 +67,8 @@ void sends_remove_item(void **state) { prof_connect_with_roster( - "" - "" - "" - "" - "" - "" + "" + "" ); stbbr_for_query("jabber:iq:roster", @@ -100,11 +96,7 @@ void sends_nick_change(void **state) { prof_connect_with_roster( - "" - "" - "" - "" - "" + "" ); prof_input("/roster nick buddy1@localhost Buddy1");