summaryrefslogtreecommitdiff
path: root/plugins/Irc/extlib/phergie/Tests/Phergie/Plugin/SpellCheckTest.php
blob: 8ed9f0d36d09ecfc2fae6bcccaf623244594e225 (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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<?php
/**
 * Phergie
 *
 * PHP version 5
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.
 * It is also available through the world-wide-web at this URL:
 * http://phergie.org/license
 *
 * @category  Phergie
 * @package   Phergie
 * @author    Phergie Development Team <team@phergie.org>
 * @copyright 2008-2010 Phergie Development Team (http://phergie.org)
 * @license   http://phergie.org/license New BSD License
 * @link      http://pear.phergie.org/package/Phergie
 */

require_once dirname(__FILE__) . '/TestCase.php';

/**
 * Unit test suite for Pherge_Plugin_SpellCheck.
 *
 * @category Phergie
 * @package  Phergie_Tests
 * @author   Phergie Development Team <team@phergie.org>
 * @license  http://phergie.org/license New BSD License
 * @link     http://pear.phergie.org/package/Phergie
 */
class Phergie_Plugin_SpellCheckTest extends Phergie_Plugin_TestCase
{

    /**
     * Current SpellCheck plugin instance
     *
     * @var Phergie_Plugin_SpellCheck
     */
    protected $spell;

    /**
     * Sets up the fixture, for example, opens a network connection.
     * This method is called before a test is executed.
     * 
     * @return void
     */
    protected function setUp()
    {
        $this->config = array('spellcheck.lang' => 'en');

        $this->spell = new Phergie_Plugin_SpellCheck();
        $this->setPlugin(new Phergie_Plugin_Command());
        
        $config = $this->plugin->getConfig();
        
        $handler = new Phergie_Plugin_Handler($config, $this->handler);
        $this->plugin->setPluginHandler($handler);
        
        $handler->addPlugin($this->plugin);
        $handler->addPlugin($this->spell);

        $this->spell->setEventHandler($this->handler);
        $this->spell->setConnection($this->connection);
    }

    /**
     * @event Phergie_Event_Request::privmsg
     * @eventArg #zftalk
     * @eventArg spell
     */
    public function testSpell()
    {
        $this->spell->onLoad();
        
        $this->copyEvent();
        $this->plugin->onPrivMsg();
        $this->assertDoesNotHaveEvent(Phergie_Event_Command::TYPE_PRIVMSG);
    }

    /**
     * @event Phergie_Event_Request::privmsg
     * @eventArg #phergie
     * @eventArg spell test
     */
    public function testSpellTest()
    {
        $this->spell->onLoad();
        
        $this->copyEvent();
        $this->plugin->onPrivMsg();

        $events = $this->getResponseEvents(Phergie_Event_Command::TYPE_PRIVMSG);
        
        $this->assertEquals(1, count($events));
        foreach ($events as $event) {
            $args = $event->getArguments();
            
            $this->assertEquals('#phergie', $args[0]);
            
            $this->assertContains('CheckSpellUser:', $args[1]);
            $this->assertContains('test', $args[1]);
            $this->assertContains('correct', $args[1]);
        }            
    }

    /**
     * @event Phergie_Event_Request::privmsg
     * @eventArg #phergie
     * @eventArg spell testz
     */
    public function testSpellTestz()
    {
        $this->spell->onLoad();
        
        $this->copyEvent();
        $this->plugin->onPrivMsg();
        
        $events = $this->getResponseEvents(Phergie_Event_Command::TYPE_PRIVMSG);
        
        $this->assertEquals(1, count($events));
        foreach ($events as $event) {
            $args = $event->getArguments();
            
            $this->assertEquals('#phergie', $args[0]);
            
            $this->assertContains('CheckSpellUser:', $args[1]);
            $this->assertRegExp('/([a-z]+, ){4}/', $args[1]);
            $this->assertContains('testz', $args[1]);
            $this->assertContains('test,', $args[1]);
        }
    }

    /**
     * @event Phergie_Event_Request::privmsg
     * @eventArg #phergie
     * @eventArg spell testz
     */
    public function testSpellMoreSuggestions()
    {
        $config = $this->spell->getConfig();
        
        $this->copyEvent();
        $config['spellcheck.limit'] = 6;
        
        $this->spell->onLoad();
        $this->plugin->onPrivMsg();
        
        $events = $this->getResponseEvents(Phergie_Event_Command::TYPE_PRIVMSG);
        
        $this->assertEquals(1, count($events));
        foreach ($events as $event) {
            $args = $event->getArguments();
            
            $this->assertEquals('#phergie', $args[0]);
            
            $this->assertContains('CheckSpellUser:', $args[1]);
            $this->assertRegExp('/([a-z]+, ){5}/', $args[1]);
            $this->assertContains('testz', $args[1]);
            $this->assertContains('test,', $args[1]);
        }
    }

    /**
     * @event Phergie_Event_Request::privmsg
     * @eventArg #phergie
     * @eventArg spell qwertyuiopasdfghjklzxcvbnm
     */
    public function testSpellNoSuggestions()
    {
        $this->spell->onLoad();
        
        $this->copyEvent();
        $this->plugin->onPrivMsg();
        
        $events = $this->getResponseEvents(Phergie_Event_Command::TYPE_PRIVMSG);
        
        $this->assertEquals(1, count($events));
        foreach ($events as $event) {
            $args = $event->getArguments();
            
            $this->assertEquals('#phergie', $args[0]);
            
            $this->assertContains('CheckSpellUser:', $args[1]);
            $this->assertContains('find any suggestions', $args[1]);
        }
    }
    
    /**
     * Copy event from command to spell plugin
     * 
     * @return void
     */
    protected function copyEvent()
    {
        $hostmask = Phergie_Hostmask::fromString('CheckSpellUser!test@testing.org');

        $event = $this->plugin->getEvent();
        $event->setHostmask($hostmask);

        $this->spell->setEvent($event);
    }

}