summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/ConfirmEdit/tests/phpunit/ReCaptchaAuthenticationRequestTest.php
blob: bc645b89cf97810e5daf1cbd3fd5c20f04540fc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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' ] ],
		];
	}
}