2010-06-30 17:33:29 +01:00
|
|
|
<?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
|
2010-08-12 19:58:53 +01:00
|
|
|
* @package Phergie_Tests
|
2010-06-30 17:33:29 +01:00
|
|
|
* @author Phergie Development Team <team@phergie.org>
|
|
|
|
* @copyright 2008-2010 Phergie Development Team (http://phergie.org)
|
|
|
|
* @license http://phergie.org/license New BSD License
|
2010-08-12 19:58:53 +01:00
|
|
|
* @link http://pear.phergie.org/package/Phergie_Tests
|
2010-06-30 17:33:29 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
2010-08-12 19:58:53 +01:00
|
|
|
* @link http://pear.phergie.org/package/Phergie_Tests
|
2010-06-30 17:33:29 +01:00
|
|
|
*/
|
|
|
|
class Phergie_Plugin_SpellCheckTest extends Phergie_Plugin_TestCase
|
|
|
|
{
|
|
|
|
/**
|
2010-08-12 19:58:53 +01:00
|
|
|
* Checks for the pspell extension.
|
2010-06-30 17:33:29 +01:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-08-12 19:58:53 +01:00
|
|
|
public function setUp()
|
2010-06-30 17:33:29 +01:00
|
|
|
{
|
2010-08-12 19:58:53 +01:00
|
|
|
parent::setUp();
|
2010-06-30 17:33:29 +01:00
|
|
|
|
2010-08-12 19:58:53 +01:00
|
|
|
if (!extension_loaded('pspell')) {
|
|
|
|
$this->markTestSkipped('pspell extension not available');
|
|
|
|
}
|
2010-06-30 17:33:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-08-12 19:58:53 +01:00
|
|
|
* Tests for the plugin failing to load when the language setting is not
|
|
|
|
* specified.
|
|
|
|
*
|
|
|
|
* @return void
|
2010-06-30 17:33:29 +01:00
|
|
|
*/
|
2010-08-12 19:58:53 +01:00
|
|
|
public function testLanguageSettingNotSet()
|
2010-06-30 17:33:29 +01:00
|
|
|
{
|
2010-08-12 19:58:53 +01:00
|
|
|
try {
|
|
|
|
$this->plugin->onLoad();
|
|
|
|
$this->fail('Expected exception was not thrown');
|
|
|
|
} catch (Phergie_Plugin_Exception $e) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->fail('Unexpected exception was thrown');
|
2010-06-30 17:33:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-08-12 19:58:53 +01:00
|
|
|
* Tests for the plugin requiring the Command plugin as a dependency.
|
|
|
|
*
|
|
|
|
* @return void
|
2010-06-30 17:33:29 +01:00
|
|
|
*/
|
2010-08-12 19:58:53 +01:00
|
|
|
public function testRequiresCommandPlugin()
|
2010-06-30 17:33:29 +01:00
|
|
|
{
|
2010-08-12 19:58:53 +01:00
|
|
|
$this->setConfig('spellcheck.lang', 'en');
|
|
|
|
$this->assertRequiresPlugin('Command');
|
|
|
|
$this->plugin->onLoad();
|
2010-06-30 17:33:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-08-12 19:58:53 +01:00
|
|
|
* Tests for the plugin failing to load because of a dictionary error.
|
|
|
|
*
|
|
|
|
* @return void
|
2010-06-30 17:33:29 +01:00
|
|
|
*/
|
2010-08-12 19:58:53 +01:00
|
|
|
public function testLoadDictionaryError()
|
2010-06-30 17:33:29 +01:00
|
|
|
{
|
2010-08-12 19:58:53 +01:00
|
|
|
$this->setConfig('spellcheck.lang', 'foo');
|
|
|
|
try {
|
|
|
|
$this->plugin->onLoad();
|
|
|
|
$this->fail('Expected exception not thrown');
|
|
|
|
} catch (Phergie_Plugin_Exception $e) {
|
|
|
|
return;
|
2010-06-30 17:33:29 +01:00
|
|
|
}
|
2010-08-12 19:58:53 +01:00
|
|
|
$this->fail('Unexpected exception was thrown');
|
2010-06-30 17:33:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-08-12 19:58:53 +01:00
|
|
|
* Initializes a spell check event.
|
|
|
|
*
|
|
|
|
* @param string $word Word to be checked
|
|
|
|
*
|
|
|
|
* @return void
|
2010-06-30 17:33:29 +01:00
|
|
|
*/
|
2010-08-12 19:58:53 +01:00
|
|
|
private function initializeSpellCheckEvent($word)
|
2010-06-30 17:33:29 +01:00
|
|
|
{
|
2010-08-12 19:58:53 +01:00
|
|
|
$this->setConfig('spellcheck.lang', 'en');
|
|
|
|
$this->plugin->onLoad();
|
|
|
|
$args = array(
|
|
|
|
'receiver' => $this->source,
|
|
|
|
'text' => 'spell ' . $word
|
|
|
|
);
|
|
|
|
$event = $this->getMockEvent('privmsg', $args);
|
|
|
|
$this->plugin->setEvent($event);
|
2010-06-30 17:33:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-08-12 19:58:53 +01:00
|
|
|
* Checks for a specified response to a spell check event.
|
|
|
|
*
|
|
|
|
* @param string $word Work being checked
|
|
|
|
* @param string $response Expected response
|
|
|
|
*
|
|
|
|
* @return void
|
2010-06-30 17:33:29 +01:00
|
|
|
*/
|
2010-08-12 19:58:53 +01:00
|
|
|
private function checkForSpellCheckResponse($word, $response)
|
2010-06-30 17:33:29 +01:00
|
|
|
{
|
2010-08-12 19:58:53 +01:00
|
|
|
$this->assertEmitsEvent('privmsg', array($this->source, $response));
|
|
|
|
$this->plugin->onCommandSpell($word);
|
2010-06-30 17:33:29 +01:00
|
|
|
}
|
2010-08-12 19:58:53 +01:00
|
|
|
|
2010-06-30 17:33:29 +01:00
|
|
|
/**
|
2010-08-12 19:58:53 +01:00
|
|
|
* Tests for the plugin returning a response for a correctly spelled word.
|
|
|
|
*
|
2010-06-30 17:33:29 +01:00
|
|
|
* @return void
|
|
|
|
*/
|
2010-08-12 19:58:53 +01:00
|
|
|
public function testRespondsForCorrectlySpelledWord()
|
2010-06-30 17:33:29 +01:00
|
|
|
{
|
2010-08-12 19:58:53 +01:00
|
|
|
$word = 'test';
|
|
|
|
$this->initializeSpellCheckEvent($word);
|
|
|
|
$response = $this->nick . ': The word "' . $word . '" seems to be spelled correctly.';
|
|
|
|
$this->checkForSpellCheckResponse($word, $response);
|
|
|
|
}
|
2010-06-30 17:33:29 +01:00
|
|
|
|
2010-08-12 19:58:53 +01:00
|
|
|
/**
|
|
|
|
* Tests for the plugin returning a response when it can't find any
|
|
|
|
* suggestions for a word.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testRespondsWithoutSuggestions()
|
|
|
|
{
|
|
|
|
$word = 'kjlfljlkjljkljlj';
|
|
|
|
$this->initializeSpellCheckEvent($word);
|
|
|
|
$response = $this->nick . ': I could not find any suggestions for "' . $word . '".';
|
|
|
|
$this->checkForSpellCheckResponse($word, $response);
|
2010-06-30 17:33:29 +01:00
|
|
|
}
|
|
|
|
|
2010-08-12 19:58:53 +01:00
|
|
|
/**
|
|
|
|
* Tests for the plugin returning a response when it is able to find
|
|
|
|
* suggestions for a word.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testRespondsWithSuggestions()
|
|
|
|
{
|
|
|
|
$word = 'teh';
|
|
|
|
$this->initializeSpellCheckEvent($word);
|
|
|
|
$response = $this->nick . ': Suggestions for "' . $word . '": the, Te, tech, Th, eh.';
|
|
|
|
$this->checkForSpellCheckResponse($word, $response);
|
|
|
|
}
|
2010-06-30 17:33:29 +01:00
|
|
|
}
|