mediawiki-extensions-Confir.../tests/phpunit/HTMLReCaptchaFieldTest.php
Aryeh Gregor 422dccc7b0 Do not attempt to mock 'object'
This doesn't work in PHP 7.2, because 'object' is no longer a valid
class name.  stdClass works fine.

Change-Id: I47375fdf2f36ff62985b2e8c90fa0e5230273984
2018-10-09 15:10:33 +03:00

26 lines
630 B
PHP

<?php
/**
* @covers HTMLReCaptchaField
*/
class HTMLReCaptchaFieldTest extends PHPUnit\Framework\TestCase {
public function testSubmit() {
$form = new HTMLForm( [
'foo' => [
'class' => HTMLReCaptchaField::class,
'key' => '123',
'theme' => 'x',
],
] );
$mockClosure = $this->getMockBuilder( stdClass::class )
->setMethods( [ '__invoke' ] )->getMock();
$mockClosure->expects( $this->once() )->method( '__invoke' )
->with( [] )->willReturn( true );
$form->setTitle( Title::newFromText( 'Title' ) );
$form->setSubmitCallback( $mockClosure );
$form->prepareForm();
$form->trySubmit();
}
}