~singpolyma/biboumi

ref: 8013bb1cfecf410466370c5d337490e30c02ced1 biboumi/tests/end_to_end/scenarios/not_connected_error.py -rw-r--r-- 606 bytes
8013bb1c — louiz’ And modify the tests to work, by adding the <x/> node in all join presences 3 years ago
                                                                                
bd41bc8b louiz’
8013bb1c louiz’
bd41bc8b louiz’
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}' ><x xmlns='http://jabber.org/protocol/muc'/></presence>"),
    sequences.connection(),
    expect_self_join_presence(jid='{jid_one}/{resource_one}', chan="#foo", nick="{nick_one}"),
)