MediaWiki REL1_33
HTMLReCaptchaNoCaptchaFieldTest.php
Go to the documentation of this file.
1<?php
2
6class HTMLReCaptchaNoCaptchaFieldTest extends PHPUnit\Framework\TestCase {
7 public function testSubmit() {
8 $form = new HTMLForm( [
9 'foo' => [
10 'class' => HTMLReCaptchaNoCaptchaField::class,
11 'key' => '123',
12 ],
13 ] );
14 $request = new FauxRequest( [
15 'foo' => 'abc',
16 'g-recaptcha-response' => 'def',
17 ], true );
18 $mockClosure = $this->getMockBuilder( stdClass::class )
19 ->setMethods( [ '__invoke' ] )->getMock();
20 $mockClosure->expects( $this->once() )->method( '__invoke' )
21 ->with( [ 'foo' => 'def' ] )->willReturn( true );
22
23 $context = new DerivativeContext( RequestContext::getMain() );
24 $context->setRequest( $request );
25 $form->setTitle( Title::newFromText( 'Title' ) );
26 $form->setContext( $context );
27 $form->setSubmitCallback( $mockClosure );
28 $form->prepareForm();
29 $form->trySubmit();
30 }
31}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
An IContextSource implementation which will inherit context from another source but allow individual ...
WebRequest clone which takes values from a provided array.
Object handling generic submission, CSRF protection, layout and other logic for UI forms.
Definition HTMLForm.php:133
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition hooks.txt:2843
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition hooks.txt:2848