1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

tests: prof_connect_with_roster takes items

This commit is contained in:
James Booth 2015-07-23 00:40:08 +01:00
parent f9a7e35001
commit decd5066ce
2 changed files with 17 additions and 18 deletions

View File

@ -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(
"<iq type=\"result\" to=\"stabber@localhost/profanity\">"
"<query xmlns=\"jabber:iq:roster\" ver=\"362\">"
);
g_string_append(roster_str, roster);
g_string_append(roster_str,
"</query>"
"</iq>"
);
stbbr_for_query("jabber:iq:roster", roster_str->str);
g_string_free(roster_str, TRUE);
stbbr_for_id("prof_presence_1",
"<presence id=\"prof_presence_1\" lang=\"en\" to=\"stabber@localhost/profanity\" from=\"stabber@localhost/profanity\">"
@ -235,11 +246,7 @@ void
prof_connect(void)
{
prof_connect_with_roster(
"<iq type=\"result\" to=\"stabber@localhost/profanity\">"
"<query xmlns=\"jabber:iq:roster\" ver=\"362\">"
"<item jid=\"buddy1@localhost\" subscription=\"both\" name=\"Buddy1\"/>"
"<item jid=\"buddy2@localhost\" subscription=\"both\" name=\"Buddy2\"/>"
"</query>"
"</iq>"
"<item jid=\"buddy1@localhost\" subscription=\"both\" name=\"Buddy1\"/>"
"<item jid=\"buddy2@localhost\" subscription=\"both\" name=\"Buddy2\"/>"
);
}

View File

@ -67,12 +67,8 @@ void
sends_remove_item(void **state)
{
prof_connect_with_roster(
"<iq type=\"result\" to=\"stabber@localhost/profanity\">"
"<query xmlns=\"jabber:iq:roster\" ver=\"362\">"
"<item jid=\"buddy1@localhost\" subscription=\"both\"/>"
"<item jid=\"buddy2@localhost\" subscription=\"both\"/>"
"</query>"
"</iq>"
"<item jid=\"buddy1@localhost\" subscription=\"both\"/>"
"<item jid=\"buddy2@localhost\" subscription=\"both\"/>"
);
stbbr_for_query("jabber:iq:roster",
@ -100,11 +96,7 @@ void
sends_nick_change(void **state)
{
prof_connect_with_roster(
"<iq type=\"result\" to=\"stabber@localhost/profanity\">"
"<query xmlns=\"jabber:iq:roster\" ver=\"362\">"
"<item jid=\"buddy1@localhost\" subscription=\"both\"/>"
"</query>"
"</iq>"
"<item jid=\"buddy1@localhost\" subscription=\"both\"/>"
);
prof_input("/roster nick buddy1@localhost Buddy1");