summaryrefslogtreecommitdiff
path: root/tests/twisted/connect/invalid-nick.py
blob: 44c1f92e98a38e9d49d131ad80b7b6be79fd8a05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# coding: utf-8
"""
Test that we get an error when attempting to use an invalid nick
"""

import dbus
from idletest import make_connection
from constants import *

def connect(nick):
    bus = dbus.SessionBus()
    params = {
        'account': nick,
        'server': 'localhost',
        'password': '',
        'fullname': 'Test User',
        'charset': 'UTF-8',
        'quit-message': 'happy testing...',
        'use-ssl': dbus.Boolean(False),
        'port': dbus.UInt32(6900),
        }

    conn = make_connection(bus, None, params)
    conn.Connect(reply_handler=None, error_handler=None)
    conn.Disconnect(reply_handler=None, error_handler=None)

def test():
    try:
        connect('nick with spaces')
        raise RuntimeError('Invalid nick not rejected')
    except dbus.DBusException, e:
        assert e.get_dbus_name() == INVALID_HANDLE

    try:
        connect('') # empty nick
        raise RuntimeError('Invalid nick not rejected')
    except dbus.DBusException, e:
        assert e.get_dbus_name() == INVALID_HANDLE

    try:
        connect('#foo') # invalid chars
        raise RuntimeError('Invalid nick not rejected')
    except dbus.DBusException, e:
        assert e.get_dbus_name() == INVALID_HANDLE

    try:
        connect(u'김정은') # unicode
        raise RuntimeError('Invalid nick not rejected')
    except dbus.DBusException, e:
        assert e.get_dbus_name() == INVALID_HANDLE

    try:
        connect('12foo') # numbers not allowed as first char
        raise RuntimeError('Invalid nick not rejected')
    except dbus.DBusException, e:
        assert e.get_dbus_name() == INVALID_HANDLE

    try:
        connect('-foo') # '-' not allowed as first char
        raise RuntimeError('Invalid nick not rejected')
    except dbus.DBusException, e:
        assert e.get_dbus_name() == INVALID_HANDLE

    # should pass succeed without an exception
    connect('good_nick')
    connect('good-nick')
    connect('{goodnick]`')

if __name__ == '__main__':
    test()