mediawiki-extensions-Confir.../tests/QuestyCaptchaTest.php
Florian 2f0db346eb Move QuestyCaptcha to its own place
Bug: T88047
Change-Id: I8c8f97d49dc39445dbba9c12909b81898838a253
2015-05-23 07:49:47 +00:00

50 lines
1 KiB
PHP

<?php
class QuestyCaptchaTest extends MediaWikiTestCase {
/**
* @covers QuestyCaptcha::getCaptcha
* @dataProvider provideGetCaptcha
*/
public function testGetCaptcha( $config, $expected ) {
# setMwGlobals() requires $wgCaptchaQuestion to be set
if ( !isset( $GLOBALS['wgCaptchaQuestions'] ) ) {
$GLOBALS['wgCaptchaQuestions'] = array();
}
$this->setMwGlobals( 'wgCaptchaQuestions', $config );
$this->mergeMwGlobalArrayValue(
'wgAutoloadClasses',
array( 'QuestyCaptcha' => __DIR__ . '/../QuestyCaptcha/QuestyCaptcha.class.php' )
);
$qc = new QuestyCaptcha();
$this->assertEquals( $expected, $qc->getCaptcha() );
}
public static function provideGetCaptcha() {
return array(
array(
array(
array(
'question' => 'FooBar',
'answer' => 'Answer!',
),
),
array(
'question' => 'FooBar',
'answer' => 'Answer!',
),
),
array(
array(
'FooBar' => 'Answer!',
),
array(
'question' => 'FooBar',
'answer' => 'Answer!',
),
)
);
}
}