mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-12 09:32:55 +00:00
3244e44bd2
Change-Id: I799e110ae42cd8cd3dc2276d638039d23149ca37
50 lines
1 KiB
PHP
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.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!',
|
|
),
|
|
)
|
|
);
|
|
}
|
|
}
|