~singpolyma/biboumi

ref: fdb3e739b0f1969e83250d98bda27b938a207f81 biboumi/tests/end_to_end/scenarios/irc_server_connection_failure.py -rw-r--r-- 743 bytes
fdb3e739 — louiz’ Typos: negociat… -> negotiat… 2 years ago
                                                                                
bd41bc8b louiz’
8013bb1c louiz’
bd41bc8b louiz’
1
2
3
4
5
6
7
8
9
10
11
from scenarios import *

scenario = (
    send_stanza("<presence from='{jid_one}/{resource_one}' to='#foo%doesnotexist@{biboumi_host}/{nick_one}' ><x xmlns='http://jabber.org/protocol/muc'/></presence>"),
    expect_stanza("/message/body[text()='Connecting to doesnotexist:6697 (encrypted)']"),
    expect_stanza("/message/body[re:test(text(), 'Connection failed: (Domain name not found|Name or service not known)')]"),
    expect_stanza("/presence[@from='#foo%doesnotexist@{biboumi_host}/{nick_one}']/muc:x",
                  "/presence/error[@type='cancel']/stanza:item-not-found",
                  "/presence/error[@type='cancel']/stanza:text[re:test(text(), '(Domain name not found|Name or service not known)')]",
                  ),
)