~singpolyma/biboumi

ref: bd41bc8b0270b83e0efd331eb010fa4347a2ef67 biboumi/tests/end_to_end/scenarios/not_connected_error.py -rw-r--r-- 580 bytes
bd41bc8b — louiz’ Split all the e2e tests in their own files 3 years ago
                                                                                
bd41bc8b louiz’
1
2
3
4
5
6
7
8
9
10
11
12
13
from scenarios import *

from scenarios.simple_channel_join import expect_self_join_presence

scenario = (
    sequences.handshake(),
    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}"),
)