2014-12-30 19:15:48 +00:00
|
|
|
<?php
|
|
|
|
|
2018-01-23 23:59:08 +00:00
|
|
|
/**
|
|
|
|
* @covers QuestyCaptcha
|
|
|
|
*/
|
2014-12-30 19:15:48 +00:00
|
|
|
class QuestyCaptchaTest extends MediaWikiTestCase {
|
2017-12-27 20:59:19 +00:00
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->mergeMwGlobalArrayValue(
|
|
|
|
'wgAutoloadClasses',
|
2018-06-15 21:08:14 +00:00
|
|
|
[ 'QuestyCaptcha' => __DIR__ . '/../../QuestyCaptcha/includes/QuestyCaptcha.php' ]
|
2017-12-27 20:59:19 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-12-30 19:15:48 +00:00
|
|
|
/**
|
|
|
|
* @covers QuestyCaptcha::getCaptcha
|
|
|
|
* @dataProvider provideGetCaptcha
|
|
|
|
*/
|
|
|
|
public function testGetCaptcha( $config, $expected ) {
|
|
|
|
# setMwGlobals() requires $wgCaptchaQuestion to be set
|
|
|
|
if ( !isset( $GLOBALS['wgCaptchaQuestions'] ) ) {
|
2016-05-09 23:41:17 +00:00
|
|
|
$GLOBALS['wgCaptchaQuestions'] = [];
|
2014-12-30 19:15:48 +00:00
|
|
|
}
|
|
|
|
$this->setMwGlobals( 'wgCaptchaQuestions', $config );
|
|
|
|
|
|
|
|
$qc = new QuestyCaptcha();
|
|
|
|
$this->assertEquals( $expected, $qc->getCaptcha() );
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function provideGetCaptcha() {
|
2016-05-09 23:41:17 +00:00
|
|
|
return [
|
|
|
|
[
|
|
|
|
[
|
|
|
|
[
|
2014-12-30 19:15:48 +00:00
|
|
|
'question' => 'FooBar',
|
|
|
|
'answer' => 'Answer!',
|
2016-05-09 23:41:17 +00:00
|
|
|
],
|
|
|
|
],
|
|
|
|
[
|
2014-12-30 19:15:48 +00:00
|
|
|
'question' => 'FooBar',
|
|
|
|
'answer' => 'Answer!',
|
2016-05-09 23:41:17 +00:00
|
|
|
],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
[
|
2014-12-30 19:15:48 +00:00
|
|
|
'FooBar' => 'Answer!',
|
2016-05-09 23:41:17 +00:00
|
|
|
],
|
|
|
|
[
|
2014-12-30 19:15:48 +00:00
|
|
|
'question' => 'FooBar',
|
|
|
|
'answer' => 'Answer!',
|
2016-05-09 23:41:17 +00:00
|
|
|
],
|
|
|
|
]
|
|
|
|
];
|
2014-12-30 19:15:48 +00:00
|
|
|
}
|
|
|
|
}
|