~singpolyma/biboumi

ref: bd41bc8b0270b83e0efd331eb010fa4347a2ef67 biboumi/tests/end_to_end/scenarios/channel_join_with_different_nick.py -rw-r--r-- 790 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
14
15
from scenarios import *

from scenarios.simple_channel_join import expect_self_join_presence

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

    # The same resource joins a different channel with a different nick
    send_stanza("<presence from='{jid_one}/{resource_one}' to='#bar%{irc_server_one}/{nick_two}' />"),
    # We must receive a join presence in response, without any nick change (nick_two) must be ignored
    expect_self_join_presence(jid = '{jid_one}/{resource_one}', chan = "#bar", nick = "{nick_one}"),
)