summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/ConfirmEdit/tests/ReCaptchaAuthenticationRequestTest.php
blob: c2e3b42e1a352bbffb9ac5e11800b18ba130545c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

use MediaWiki\Auth\AuthenticationRequestTestCase;

require_once __DIR__ . '/../ReCaptcha/ReCaptchaAuthenticationRequest.php';

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' ] ],
		];
	}
}