tests: Ensure user exists in TitleBlacklistPreAuthenticationProviderTest

Change-Id: I63c4879baa3c03980f11590f1db729e27ce307e4
This commit is contained in:
Umherirrender 2023-12-28 00:53:21 +01:00
parent 1c5c207765
commit 9de38d445a

View file

@ -15,7 +15,9 @@ class TitleBlacklistPreAuthenticationProviderTest extends MediaWikiIntegrationTe
/**
* @dataProvider provideGetAuthenticationRequests
*/
public function testGetAuthenticationRequests( $action, $username, $expectedReqs ) {
public function testGetAuthenticationRequests( $action, $provideUser, $expectedReqs ) {
$username = $provideUser ? $this->getTestSysop()->getUser()->getName() : null;
$provider = new TitleBlacklistPreAuthenticationProvider();
$this->initProvider( $provider, null, null, $this->getServiceContainer()->getAuthManager() );
$reqs = $provider->getAuthenticationRequests( $action, [ 'username' => $username ] );
@ -24,11 +26,11 @@ class TitleBlacklistPreAuthenticationProviderTest extends MediaWikiIntegrationTe
public static function provideGetAuthenticationRequests() {
return [
[ AuthManager::ACTION_LOGIN, null, [] ],
[ AuthManager::ACTION_CREATE, null, [] ],
[ AuthManager::ACTION_CREATE, 'UTSysop', [ new TitleBlacklistAuthenticationRequest() ] ],
[ AuthManager::ACTION_CHANGE, null, [] ],
[ AuthManager::ACTION_REMOVE, null, [] ],
[ AuthManager::ACTION_LOGIN, false, [] ],
[ AuthManager::ACTION_CREATE, false, [] ],
[ AuthManager::ACTION_CREATE, true, [ new TitleBlacklistAuthenticationRequest() ] ],
[ AuthManager::ACTION_CHANGE, false, [] ],
[ AuthManager::ACTION_REMOVE, false, [] ],
];
}
}