aboutsummaryrefslogtreecommitdiffstats
path: root/_pytest/test_topic_command.py
blob: 9d9a35e2493ea26add0b8f38f62d056d6f6276a0 (plain) (blame)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import wee_slack
from wee_slack import parse_topic_command, topic_command_cb
from mock import patch


def test_parse_topic_without_arguments():
    channel_name, topic = parse_topic_command('/topic')

    assert channel_name is None
    assert topic is None


def test_parse_topic_with_text():
    channel_name, topic = parse_topic_command('/topic some topic text')

    assert channel_name is None
    assert topic == 'some topic text'


def test_parse_topic_with_delete():
    channel_name, topic = parse_topic_command('/topic -delete')

    assert channel_name is None
    assert topic == ''


def test_parse_topic_with_channel():
    channel_name, topic = parse_topic_command('/topic #general')

    assert channel_name == 'general'
    assert topic is None


def test_parse_topic_with_channel_and_text():
    channel_name, topic = parse_topic_command(
        '/topic #general some topic text')

    assert channel_name == 'general'
    assert topic == 'some topic text'


def test_parse_topic_with_channel_and_delete():
    channel_name, topic = parse_topic_command('/topic #general -delete')

    assert channel_name == 'general'
    assert topic == ''


def test_call_topic_without_arguments(realish_eventrouter):
    team = realish_eventrouter.teams.values()[-1]
    channel = team.channels.values()[-1]
    current_buffer = channel.channel_buffer
    wee_slack.EVENTROUTER = realish_eventrouter

    command = '/topic'

    with patch('wee_slack.w.prnt') as fake_prnt:
        result = topic_command_cb(None, current_buffer, command)
        fake_prnt.assert_called_with(
            channel.channel_buffer,
            'Topic for {} is "{}"'.format(channel.name, channel.topic),
        )
        assert result == wee_slack.w.WEECHAT_RC_OK_EAT


def test_call_topic_with_unknown_channel(realish_eventrouter):
    team = realish_eventrouter.teams.values()[-1]
    channel = team.channels.values()[-1]
    current_buffer = channel.channel_buffer
    wee_slack.EVENTROUTER = realish_eventrouter

    command = '/topic #nonexisting'

    with patch('wee_slack.w.prnt') as fake_prnt:
        result = topic_command_cb(None, current_buffer, command)
        fake_prnt.assert_called_with(
            team.channel_buffer,
            "#nonexisting: No such channel",
        )
        assert result == wee_slack.w.WEECHAT_RC_OK_EAT


def test_call_topic_with_channel_and_string(realish_eventrouter):
    team = realish_eventrouter.teams.values()[-1]
    channel = team.channels.values()[-1]
    current_buffer = channel.channel_buffer
    wee_slack.EVENTROUTER = realish_eventrouter

    command = '/topic #general new topic'

    result = topic_command_cb(None, current_buffer, command)
    request = realish_eventrouter.queue[-1]
    assert request.request == 'channels.setTopic'
    assert request.post_data == {
        'channel': 'C407ABS94', 'token': 'xoxoxoxox', 'topic': 'new topic'}
    assert result == wee_slack.w.WEECHAT_RC_OK_EAT