mediawiki-extensions-Confir.../tests/phpunit/CaptchaAuthenticationRequestTest.php
Fomafix 07646e4a65 Replace setMwGlobals by overrideConfigValue/overrideConfigValues
Change-Id: If63e84d8101f2169f684c4db822f7df907d2deec
2024-07-22 13:33:09 +00:00

60 lines
1.7 KiB
PHP

<?php
use MediaWiki\Extension\ConfirmEdit\Auth\CaptchaAuthenticationRequest;
use MediaWiki\Extension\ConfirmEdit\SimpleCaptcha\SimpleCaptcha;
use MediaWiki\Extension\ConfirmEdit\Store\CaptchaHashStore;
use MediaWiki\Extension\ConfirmEdit\Store\CaptchaStore;
use MediaWiki\Tests\Auth\AuthenticationRequestTestCase;
/**
* @covers \MediaWiki\Extension\ConfirmEdit\Auth\CaptchaAuthenticationRequest
*/
class CaptchaAuthenticationRequestTest extends AuthenticationRequestTestCase {
public function setUp(): void {
parent::setUp();
$this->overrideConfigValues( [
'CaptchaClass' => SimpleCaptcha::class,
'CaptchaStorageClass' => CaptchaHashStore::class,
] );
CaptchaStore::unsetInstanceForTests();
CaptchaStore::get()->clearAll();
CaptchaStore::get()->store( '345', [ 'question' => '2+2', 'answer' => '4' ] );
}
protected function getInstance( array $args = [] ) {
return new CaptchaAuthenticationRequest( $args[0], $args[1] );
}
public static function provideGetFieldInfo() {
return [
[ [ '123', [ 'question' => '1+2', 'answer' => '3' ] ] ],
];
}
public static function provideLoadFromSubmission() {
return [
'no id' => [
[ '123', [ 'question' => '1+2', 'answer' => '3' ] ],
[],
false,
],
'no answer' => [
[ '123', [ 'question' => '1+2', 'answer' => '3' ] ],
[ 'captchaId' => '345' ],
false,
],
'missing' => [
[ '123', [ 'question' => '1+2', 'answer' => '3' ] ],
[ 'captchaId' => '234', 'captchaWord' => '5' ],
false,
],
'normal' => [
[ '123', [ 'question' => '1+2', 'answer' => '3' ] ],
[ 'captchaId' => '345', 'captchaWord' => '5' ],
[ 'captchaId' => '345', 'captchaData' => [ 'question' => '2+2', 'answer' => '4' ],
'captchaWord' => '5' ],
],
];
}
}