~singpolyma/biboumi

ref: a0d24b48471e5307fda077a11491a3c44cbbdfaf biboumi/tests/end_to_end/scenarios/irc_server_connection_failure.py -rw-r--r-- 690 bytes
a0d24b48 — louiz’ add CAP_NET_BIND_SERVICE in biboumi.service to be able to bind on port 113 3 years ago
                                                                                
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}' />"),
    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)')]",
                  ),
)