summaryrefslogtreecommitdiff
path: root/tests/end_to_end/scenarios/not_connected_error.py
blob: cc9fb35ee1c82c9b30bcf9a1f5d66ac1c00f10a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from scenarios import *

from scenarios.simple_channel_join import expect_self_join_presence

scenario = (
    send_stanza("<presence type='unavailable' from='{jid_one}/{resource_one}' to='#foo%{irc_server_one}/{nick_one}' />"),
    # Fixme: what is the purpose of this test? Check that we don’t receive anything here…?

    send_stanza("<presence from='{jid_one}/{resource_one}' to='#foo%{irc_server_one}/{nick_one}' />"),
    sequences.connection(),
    expect_self_join_presence(jid='{jid_one}/{resource_one}', chan="#foo", nick="{nick_one}"),
)