mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
tests: prof_connect_with_roster takes items
This commit is contained in:
parent
f9a7e35001
commit
decd5066ce
@ -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\"/>"
|
||||
);
|
||||
}
|
||||
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user