summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/ConfirmEdit/tests/phpunit/ReCaptchaAuthenticationRequestTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/ConfirmEdit/tests/phpunit/ReCaptchaAuthenticationRequestTest.php')
-rw-r--r--www/wiki/extensions/ConfirmEdit/tests/phpunit/ReCaptchaAuthenticationRequestTest.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/www/wiki/extensions/ConfirmEdit/tests/phpunit/ReCaptchaAuthenticationRequestTest.php b/www/wiki/extensions/ConfirmEdit/tests/phpunit/ReCaptchaAuthenticationRequestTest.php
new file mode 100644
index 00000000..bc645b89
--- /dev/null
+++ b/www/wiki/extensions/ConfirmEdit/tests/phpunit/ReCaptchaAuthenticationRequestTest.php
@@ -0,0 +1,23 @@
+<?php
+
+use MediaWiki\Auth\AuthenticationRequestTestCase;
+
+require_once __DIR__ . '/../../ReCaptcha/ReCaptchaAuthenticationRequest.php';
+
+/**
+ * @covers ReCaptchaAuthenticationRequest
+ */
+class ReCaptchaAuthenticationRequestTest extends AuthenticationRequestTestCase {
+ protected function getInstance( array $args = [] ) {
+ return new ReCaptchaAuthenticationRequest();
+ }
+
+ public function provideLoadFromSubmission() {
+ return [
+ 'no challange id' => [ [], [ 'captchaWord' => 'abc' ], false ],
+ 'no solution' => [ [], [ 'captchaId' => '123' ], false ],
+ 'normal' => [ [], [ 'captchaId' => '123', 'captchaWord' => 'abc' ],
+ [ 'captchaId' => '123', 'captchaWord' => 'abc' ] ],
+ ];
+ }
+}