summaryrefslogtreecommitdiff
path: root/plugins/Irc/extlib/phergie/Tests/Phergie/Plugin/TerryChayTest.php
blob: e58ac6f2902daa81b450af279667070e6371f98b (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
<?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_Tests
 * @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_Tests
 */

/**
 * Unit test suite for Pherge_Plugin_TerryChay.
 *
 * @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_Tests
 */
class Phergie_Plugin_TerryChayTest extends Phergie_Plugin_TestCase
{
    /**
     * Chayism used as a consistent response when related events are
     * triggered
     *
     * @var string
     */
    private $chayism = 'Terry Chay doesn\'t need a framework; he already knows everyone\'s code';

    /**
     * Configures the mock plugin handler to return a mock Http plugin with
     * a mock response object populated with predetermined content.
     *
     * @return void
     */
    public function setUpHttpClient()
    {
        $response = $this->getMock('Phergie_Plugin_Http_Response');
        $response
            ->expects($this->any())
            ->method('getContent')
            ->will($this->returnValue($this->chayism));

        $plugin = $this->getMock('Phergie_Plugin_Http');
        $plugin
            ->expects($this->any())
            ->method('get')
            ->will($this->returnValue($response));

        $this->getMockPluginHandler()
            ->expects($this->any())
            ->method('getPlugin')
            ->with('Http')
            ->will($this->returnValue($plugin));
    }

    /**
     * Tests that the plugin requires the Http plugin as a dependency.
     *
     * @return void
     */
    public function testRequiresHttpPlugin()
    {
        $this->assertRequiresPlugin('Http');
        $this->plugin->onLoad();
    }

    /**
     * Data provider for testPrivmsgTriggerReturnsChayism().
     *
     * @return array Enumerated array of enumerated arrays each containing
     *               a set of parameters for a single call to
     *               testPrivmsgTriggerReturnsChayism()
     */
    public function dataProviderTestPrivmsgTriggerReturnsChayism()
    {
        return array(
            array('terry chay'),
            array('terry  chay'),
            array('tychay'),
            array('!tychay'),
            array('! tychay'),
            array('foo tychay bar'),
        );
    }

    /**
     * Tests that appropriate triggers result in a response with a Chayism.
     *
     * @return void
     * @dataProvider dataProviderTestPrivmsgTriggerReturnsChayism
     */
    public function testPrivmsgTriggerReturnsChayism($trigger)
    {
        $this->setConfig('command.prefix', '!');
        $this->setUpHttpClient();
        $args = array(
            'receiver' => $this->source,
            'text' => $trigger
        );
        $event = $this->getMockEvent('privmsg', $args);
        $this->plugin->setEvent($event);
        $this->assertEmitsEvent('privmsg', array($this->source, 'Fact: ' . $this->chayism));
        $this->plugin->onPrivmsg();
    }

    /**
     * Tests that lack of an appropriate trigger results in no response with
     * a Chayism.
     *
     * @return void
     */
    public function testNoPrivmsgTriggerDoesNotReturnChayism()
    {
        $args = array(
            'receiver' => $this->source,
            'text' => 'foo bar baz'
        );
        $event = $this->getMockEvent('privmsg', $args);
        $this->plugin->setEvent($event);
        $this->assertDoesNotEmitEvent('privmsg', array($this->source, 'Fact: ' . $this->chayism));
        $this->plugin->onPrivmsg();
    }
}