wiki.techinc.nl/tests/phpunit/includes/auth/AuthenticationResponseTest.php
Brad Jorsch d245bd25ae Add AuthManager
This implements the AuthManager class and its needed interfaces and
subclasses, and integrates them into the backend portion of MediaWiki.
Integration with frontend portions of MediaWiki (e.g. ApiLogin,
Special:Login) is left for a followup.

Bug: T91699
Bug: T71589
Bug: T111299
Co-Authored-By: Gergő Tisza <gtisza@wikimedia.org>
Change-Id: If89d24838e326fe25fe867d02181eebcfbb0e196
2016-05-16 15:11:02 +00:00

104 lines
2.7 KiB
PHP

<?php
namespace MediaWiki\Auth;
/**
* @group AuthManager
* @covers MediaWiki\Auth\AuthenticationResponse
*/
class AuthenticationResponseTest extends \MediaWikiTestCase {
protected function setUp() {
global $wgDisableAuthManager;
parent::setUp();
if ( $wgDisableAuthManager ) {
$this->markTestSkipped( '$wgDisableAuthManager is set' );
}
}
/**
* @dataProvider provideConstructors
* @param string $constructor
* @param array $args
* @param array|Exception $expect
*/
public function testConstructors( $constructor, $args, $expect ) {
if ( is_array( $expect ) ) {
$res = new AuthenticationResponse();
foreach ( $expect as $field => $value ) {
$res->$field = $value;
}
$ret = call_user_func_array( "MediaWiki\\Auth\\AuthenticationResponse::$constructor", $args );
$this->assertEquals( $res, $ret );
} else {
try {
call_user_func_array( "MediaWiki\\Auth\\AuthenticationResponse::$constructor", $args );
$this->fail( 'Expected exception not thrown' );
} catch ( \Exception $ex ) {
$this->assertEquals( $expect, $ex );
}
}
}
public function provideConstructors() {
$req = $this->getMockForAbstractClass( AuthenticationRequest::class );
$msg = new \Message( 'mainpage' );
return [
[ 'newPass', [], [
'status' => AuthenticationResponse::PASS,
] ],
[ 'newPass', [ 'name' ], [
'status' => AuthenticationResponse::PASS,
'username' => 'name',
] ],
[ 'newPass', [ 'name', null ], [
'status' => AuthenticationResponse::PASS,
'username' => 'name',
] ],
[ 'newFail', [ $msg ], [
'status' => AuthenticationResponse::FAIL,
'message' => $msg,
] ],
[ 'newRestart', [ $msg ], [
'status' => AuthenticationResponse::RESTART,
'message' => $msg,
] ],
[ 'newAbstain', [], [
'status' => AuthenticationResponse::ABSTAIN,
] ],
[ 'newUI', [ [ $req ], $msg ], [
'status' => AuthenticationResponse::UI,
'neededRequests' => [ $req ],
'message' => $msg,
] ],
[ 'newUI', [ [], $msg ],
new \InvalidArgumentException( '$reqs may not be empty' )
],
[ 'newRedirect', [ [ $req ], 'http://example.org/redir' ], [
'status' => AuthenticationResponse::REDIRECT,
'neededRequests' => [ $req ],
'redirectTarget' => 'http://example.org/redir',
] ],
[
'newRedirect',
[ [ $req ], 'http://example.org/redir', [ 'foo' => 'bar' ] ],
[
'status' => AuthenticationResponse::REDIRECT,
'neededRequests' => [ $req ],
'redirectTarget' => 'http://example.org/redir',
'redirectApiData' => [ 'foo' => 'bar' ],
]
],
[ 'newRedirect', [ [], 'http://example.org/redir' ],
new \InvalidArgumentException( '$reqs may not be empty' )
],
];
}
}