mediawiki-extensions-Confir.../tests/phpunit/HTMLFancyCaptchaFieldTest.php
Andre Klapper 659cf72b2f Use explicit nullable type on parameter arguments (for PHP 8.4)
Implicitly marking parameter $... as nullable is deprecated in PHP
8.4. The explicit nullable type must be used instead.

Bug: T376276
Change-Id: Ifb189a3fcacc971ff43ff44d5ffc564f068a7da0
2024-10-26 14:58:29 +02:00

68 lines
2.4 KiB
PHP

<?php
use MediaWiki\Context\DerivativeContext;
use MediaWiki\Context\RequestContext;
use MediaWiki\Extension\ConfirmEdit\FancyCaptcha\HTMLFancyCaptchaField;
use MediaWiki\HTMLForm\HTMLForm;
use MediaWiki\Request\FauxRequest;
use MediaWiki\Request\WebRequest;
use MediaWiki\Title\Title;
/**
* @covers \MediaWiki\Extension\ConfirmEdit\FancyCaptcha\HTMLFancyCaptchaField
* @group Database
*/
class HTMLFancyCaptchaFieldTest extends MediaWikiIntegrationTestCase {
public function setUp(): void {
parent::setUp();
$this->mergeMwGlobalArrayValue(
'wgAutoloadClasses',
[
'MediaWiki\\Extension\\ConfirmEdit\\FancyCaptcha\\HTMLFancyCaptchaField'
=> __DIR__ . '/../../FancyCaptcha/includes/HTMLFancyCaptchaField.php'
]
);
}
public function testGetHTML() {
$html = $this->getForm( [ 'imageUrl' => 'https://example.com/' ] )->getHTML( false );
$this->assertMatchesRegularExpression( '/"fancycaptcha-image"/', $html );
$this->assertMatchesRegularExpression( '#src="https://example.com/"#', $html );
$this->assertDoesNotMatchRegularExpression( '/"mw-createacct-captcha-assisted"/', $html );
$html = $this->getForm( [ 'imageUrl' => '', 'showCreateHelp' => true ] )->getHTML( false );
$this->assertMatchesRegularExpression( '/"mw-createacct-captcha-assisted"/', $html );
$html = $this->getForm( [ 'imageUrl' => '', 'label' => 'FooBarBaz' ] )->getHTML( false );
$this->assertMatchesRegularExpression( '/FooBarBaz/', $html );
}
public function testValue() {
$mockClosure = $this->getMockBuilder( stdClass::class )
->addMethods( [ '__invoke' ] )->getMock();
$request = new FauxRequest( [ 'wpcaptchaWord' => 'abc' ], true );
$form = $this->getForm( [ 'imageUrl' => 'https://example.com/' ], $request );
$form->setSubmitCallback( $mockClosure );
$mockClosure->expects( $this->once() )->method( '__invoke' )
->with( [ 'captchaWord' => 'abc' ] )->willReturn( true );
$form->trySubmit();
}
protected function getForm( $params = [], ?WebRequest $request = null ) {
if ( $request ) {
$context = new DerivativeContext( RequestContext::getMain() );
$context->setRequest( $request );
} else {
$context = RequestContext::getMain();
}
$params['class'] = HTMLFancyCaptchaField::class;
$form = new HTMLForm( [ 'captchaWord' => $params ], $context );
$form->setTitle( Title::newFromText( 'Foo' ) );
$form->prepareForm();
return $form;
}
}