123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- * @author Vincent Petry <pvince81@owncloud.com>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OCA\DAV\Tests\unit\Connector\Sabre;
- use OC\Authentication\TwoFactorAuth\Manager;
- use OC\Security\Bruteforce\Throttler;
- use OC\User\Session;
- use OCP\IRequest;
- use OCP\ISession;
- use OCP\IUser;
- use Sabre\DAV\Server;
- use Sabre\HTTP\RequestInterface;
- use Sabre\HTTP\ResponseInterface;
- use Test\TestCase;
- /**
- * Class AuthTest
- *
- * @package OCA\DAV\Tests\unit\Connector\Sabre
- * @group DB
- */
- class AuthTest extends TestCase {
- /** @var ISession */
- private $session;
- /** @var \OCA\DAV\Connector\Sabre\Auth */
- private $auth;
- /** @var Session */
- private $userSession;
- /** @var IRequest */
- private $request;
- /** @var Manager */
- private $twoFactorManager;
- /** @var Throttler */
- private $throttler;
- protected function setUp(): void {
- parent::setUp();
- $this->session = $this->getMockBuilder(ISession::class)
- ->disableOriginalConstructor()->getMock();
- $this->userSession = $this->getMockBuilder(Session::class)
- ->disableOriginalConstructor()->getMock();
- $this->request = $this->getMockBuilder(IRequest::class)
- ->disableOriginalConstructor()->getMock();
- $this->twoFactorManager = $this->getMockBuilder(Manager::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->throttler = $this->getMockBuilder(Throttler::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->auth = new \OCA\DAV\Connector\Sabre\Auth(
- $this->session,
- $this->userSession,
- $this->request,
- $this->twoFactorManager,
- $this->throttler
- );
- }
- public function testIsDavAuthenticatedWithoutDavSession() {
- $this->session
- ->expects($this->once())
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn(null);
- $this->assertFalse($this->invokePrivate($this->auth, 'isDavAuthenticated', ['MyTestUser']));
- }
- public function testIsDavAuthenticatedWithWrongDavSession() {
- $this->session
- ->expects($this->exactly(2))
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn('AnotherUser');
- $this->assertFalse($this->invokePrivate($this->auth, 'isDavAuthenticated', ['MyTestUser']));
- }
- public function testIsDavAuthenticatedWithCorrectDavSession() {
- $this->session
- ->expects($this->exactly(2))
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn('MyTestUser');
- $this->assertTrue($this->invokePrivate($this->auth, 'isDavAuthenticated', ['MyTestUser']));
- }
- public function testValidateUserPassOfAlreadyDAVAuthenticatedUser() {
- $user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $user->expects($this->exactly(2))
- ->method('getUID')
- ->willReturn('MyTestUser');
- $this->userSession
- ->expects($this->once())
- ->method('isLoggedIn')
- ->willReturn(true);
- $this->userSession
- ->expects($this->exactly(2))
- ->method('getUser')
- ->willReturn($user);
- $this->session
- ->expects($this->exactly(2))
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn('MyTestUser');
- $this->session
- ->expects($this->once())
- ->method('close');
- $this->assertTrue($this->invokePrivate($this->auth, 'validateUserPass', ['MyTestUser', 'MyTestPassword']));
- }
- public function testValidateUserPassOfInvalidDAVAuthenticatedUser() {
- $user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $user->expects($this->once())
- ->method('getUID')
- ->willReturn('MyTestUser');
- $this->userSession
- ->expects($this->once())
- ->method('isLoggedIn')
- ->willReturn(true);
- $this->userSession
- ->expects($this->once())
- ->method('getUser')
- ->willReturn($user);
- $this->session
- ->expects($this->exactly(2))
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn('AnotherUser');
- $this->session
- ->expects($this->once())
- ->method('close');
- $this->assertFalse($this->invokePrivate($this->auth, 'validateUserPass', ['MyTestUser', 'MyTestPassword']));
- }
- public function testValidateUserPassOfInvalidDAVAuthenticatedUserWithValidPassword() {
- $user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $user->expects($this->exactly(3))
- ->method('getUID')
- ->willReturn('MyTestUser');
- $this->userSession
- ->expects($this->once())
- ->method('isLoggedIn')
- ->willReturn(true);
- $this->userSession
- ->expects($this->exactly(3))
- ->method('getUser')
- ->willReturn($user);
- $this->session
- ->expects($this->exactly(2))
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn('AnotherUser');
- $this->userSession
- ->expects($this->once())
- ->method('logClientIn')
- ->with('MyTestUser', 'MyTestPassword', $this->request)
- ->willReturn(true);
- $this->session
- ->expects($this->once())
- ->method('set')
- ->with('AUTHENTICATED_TO_DAV_BACKEND', 'MyTestUser');
- $this->session
- ->expects($this->once())
- ->method('close');
- $this->assertTrue($this->invokePrivate($this->auth, 'validateUserPass', ['MyTestUser', 'MyTestPassword']));
- }
- public function testValidateUserPassWithInvalidPassword() {
- $this->userSession
- ->expects($this->once())
- ->method('isLoggedIn')
- ->willReturn(false);
- $this->userSession
- ->expects($this->once())
- ->method('logClientIn')
- ->with('MyTestUser', 'MyTestPassword')
- ->willReturn(false);
- $this->session
- ->expects($this->once())
- ->method('close');
- $this->assertFalse($this->invokePrivate($this->auth, 'validateUserPass', ['MyTestUser', 'MyTestPassword']));
- }
-
- public function testValidateUserPassWithPasswordLoginForbidden() {
- $this->expectException(\OCA\DAV\Connector\Sabre\Exception\PasswordLoginForbidden::class);
- $this->userSession
- ->expects($this->once())
- ->method('isLoggedIn')
- ->willReturn(false);
- $this->userSession
- ->expects($this->once())
- ->method('logClientIn')
- ->with('MyTestUser', 'MyTestPassword')
- ->will($this->throwException(new \OC\Authentication\Exceptions\PasswordLoginForbiddenException()));
- $this->session
- ->expects($this->once())
- ->method('close');
- $this->invokePrivate($this->auth, 'validateUserPass', ['MyTestUser', 'MyTestPassword']);
- }
- public function testAuthenticateAlreadyLoggedInWithoutCsrfTokenForNonGet() {
- $request = $this->getMockBuilder(RequestInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->userSession
- ->expects($this->any())
- ->method('isLoggedIn')
- ->willReturn(true);
- $this->request
- ->expects($this->any())
- ->method('getMethod')
- ->willReturn('POST');
- $this->session
- ->expects($this->any())
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn(null);
- $user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $user->expects($this->any())
- ->method('getUID')
- ->willReturn('MyWrongDavUser');
- $this->userSession
- ->expects($this->any())
- ->method('getUser')
- ->willReturn($user);
- $this->request
- ->expects($this->once())
- ->method('passesCSRFCheck')
- ->willReturn(false);
- $expectedResponse = [
- false,
- "No 'Authorization: Basic' header found. Either the client didn't send one, or the server is misconfigured",
- ];
- $response = $this->auth->check($request, $response);
- $this->assertSame($expectedResponse, $response);
- }
- public function testAuthenticateAlreadyLoggedInWithoutCsrfTokenAndCorrectlyDavAuthenticated() {
- $request = $this->getMockBuilder(RequestInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->userSession
- ->expects($this->any())
- ->method('isLoggedIn')
- ->willReturn(true);
- $this->request
- ->expects($this->any())
- ->method('getMethod')
- ->willReturn('PROPFIND');
- $this->request
- ->expects($this->any())
- ->method('isUserAgent')
- ->with([
- '/^Mozilla\/5\.0 \([A-Za-z ]+\) (mirall|csyncoC)\/.*$/',
- '/^Mozilla\/5\.0 \(Android\) (ownCloud|Nextcloud)\-android.*$/',
- '/^Mozilla\/5\.0 \(iOS\) (ownCloud|Nextcloud)\-iOS.*$/',
- ])
- ->willReturn(false);
- $this->session
- ->expects($this->any())
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn('LoggedInUser');
- $user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $user->expects($this->any())
- ->method('getUID')
- ->willReturn('LoggedInUser');
- $this->userSession
- ->expects($this->any())
- ->method('getUser')
- ->willReturn($user);
- $this->request
- ->expects($this->once())
- ->method('passesCSRFCheck')
- ->willReturn(false);
- $this->auth->check($request, $response);
- }
-
- public function testAuthenticateAlreadyLoggedInWithoutTwoFactorChallengePassed() {
- $this->expectException(\Sabre\DAV\Exception\NotAuthenticated::class);
- $this->expectExceptionMessage('2FA challenge not passed.');
- $request = $this->getMockBuilder(RequestInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->userSession
- ->expects($this->any())
- ->method('isLoggedIn')
- ->willReturn(true);
- $this->request
- ->expects($this->any())
- ->method('getMethod')
- ->willReturn('PROPFIND');
- $this->request
- ->expects($this->any())
- ->method('isUserAgent')
- ->with([
- '/^Mozilla\/5\.0 \([A-Za-z ]+\) (mirall|csyncoC)\/.*$/',
- '/^Mozilla\/5\.0 \(Android\) ownCloud\-android.*$/',
- '/^Mozilla\/5\.0 \(iOS\) (ownCloud|Nextcloud)\-iOS.*$/',
- ])
- ->willReturn(false);
- $this->session
- ->expects($this->any())
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn('LoggedInUser');
- $user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $user->expects($this->any())
- ->method('getUID')
- ->willReturn('LoggedInUser');
- $this->userSession
- ->expects($this->any())
- ->method('getUser')
- ->willReturn($user);
- $this->request
- ->expects($this->once())
- ->method('passesCSRFCheck')
- ->willReturn(true);
- $this->twoFactorManager->expects($this->once())
- ->method('needsSecondFactor')
- ->with($user)
- ->willReturn(true);
- $this->auth->check($request, $response);
- }
-
- public function testAuthenticateAlreadyLoggedInWithoutCsrfTokenAndIncorrectlyDavAuthenticated() {
- $this->expectException(\Sabre\DAV\Exception\NotAuthenticated::class);
- $this->expectExceptionMessage('CSRF check not passed.');
- $request = $this->getMockBuilder(RequestInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->userSession
- ->expects($this->any())
- ->method('isLoggedIn')
- ->willReturn(true);
- $this->request
- ->expects($this->any())
- ->method('getMethod')
- ->willReturn('PROPFIND');
- $this->request
- ->expects($this->any())
- ->method('isUserAgent')
- ->with([
- '/^Mozilla\/5\.0 \([A-Za-z ]+\) (mirall|csyncoC)\/.*$/',
- '/^Mozilla\/5\.0 \(Android\) (ownCloud|Nextcloud)\-android.*$/',
- '/^Mozilla\/5\.0 \(iOS\) (ownCloud|Nextcloud)\-iOS.*$/',
- ])
- ->willReturn(false);
- $this->session
- ->expects($this->any())
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn('AnotherUser');
- $user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $user->expects($this->any())
- ->method('getUID')
- ->willReturn('LoggedInUser');
- $this->userSession
- ->expects($this->any())
- ->method('getUser')
- ->willReturn($user);
- $this->request
- ->expects($this->once())
- ->method('passesCSRFCheck')
- ->willReturn(false);
- $this->auth->check($request, $response);
- }
- public function testAuthenticateAlreadyLoggedInWithoutCsrfTokenForNonGetAndDesktopClient() {
- $request = $this->getMockBuilder(RequestInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->userSession
- ->expects($this->any())
- ->method('isLoggedIn')
- ->willReturn(true);
- $this->request
- ->expects($this->any())
- ->method('getMethod')
- ->willReturn('POST');
- $this->request
- ->expects($this->any())
- ->method('isUserAgent')
- ->with([
- '/^Mozilla\/5\.0 \([A-Za-z ]+\) (mirall|csyncoC)\/.*$/',
- '/^Mozilla\/5\.0 \(Android\) (ownCloud|Nextcloud)\-android.*$/',
- '/^Mozilla\/5\.0 \(iOS\) (ownCloud|Nextcloud)\-iOS.*$/',
- ])
- ->willReturn(true);
- $this->session
- ->expects($this->any())
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn(null);
- $user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $user->expects($this->any())
- ->method('getUID')
- ->willReturn('MyWrongDavUser');
- $this->userSession
- ->expects($this->any())
- ->method('getUser')
- ->willReturn($user);
- $this->request
- ->expects($this->once())
- ->method('passesCSRFCheck')
- ->willReturn(false);
- $this->auth->check($request, $response);
- }
- public function testAuthenticateAlreadyLoggedInWithoutCsrfTokenForGet() {
- $request = $this->getMockBuilder(RequestInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->userSession
- ->expects($this->any())
- ->method('isLoggedIn')
- ->willReturn(true);
- $this->session
- ->expects($this->any())
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn(null);
- $user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $user->expects($this->any())
- ->method('getUID')
- ->willReturn('MyWrongDavUser');
- $this->userSession
- ->expects($this->any())
- ->method('getUser')
- ->willReturn($user);
- $this->request
- ->expects($this->any())
- ->method('getMethod')
- ->willReturn('GET');
- $response = $this->auth->check($request, $response);
- $this->assertEquals([true, 'principals/users/MyWrongDavUser'], $response);
- }
- public function testAuthenticateAlreadyLoggedInWithCsrfTokenForGet() {
- $request = $this->getMockBuilder(RequestInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $response = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->userSession
- ->expects($this->any())
- ->method('isLoggedIn')
- ->willReturn(true);
- $this->session
- ->expects($this->any())
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn(null);
- $user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $user->expects($this->any())
- ->method('getUID')
- ->willReturn('MyWrongDavUser');
- $this->userSession
- ->expects($this->any())
- ->method('getUser')
- ->willReturn($user);
- $this->request
- ->expects($this->once())
- ->method('passesCSRFCheck')
- ->willReturn(true);
- $response = $this->auth->check($request, $response);
- $this->assertEquals([true, 'principals/users/MyWrongDavUser'], $response);
- }
- public function testAuthenticateNoBasicAuthenticateHeadersProvided() {
- $server = $this->getMockBuilder(Server::class)
- ->disableOriginalConstructor()
- ->getMock();
- $server->httpRequest = $this->getMockBuilder(RequestInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $server->httpResponse = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $response = $this->auth->check($server->httpRequest, $server->httpResponse);
- $this->assertEquals([false, 'No \'Authorization: Basic\' header found. Either the client didn\'t send one, or the server is misconfigured'], $response);
- }
-
- public function testAuthenticateNoBasicAuthenticateHeadersProvidedWithAjax() {
- $this->expectException(\Sabre\DAV\Exception\NotAuthenticated::class);
- $this->expectExceptionMessage('Cannot authenticate over ajax calls');
- /** @var \Sabre\HTTP\RequestInterface $httpRequest */
- $httpRequest = $this->getMockBuilder(RequestInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- /** @var \Sabre\HTTP\ResponseInterface $httpResponse */
- $httpResponse = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->userSession
- ->expects($this->any())
- ->method('isLoggedIn')
- ->willReturn(false);
- $httpRequest
- ->expects($this->once())
- ->method('getHeader')
- ->with('X-Requested-With')
- ->willReturn('XMLHttpRequest');
- $this->auth->check($httpRequest, $httpResponse);
- }
- public function testAuthenticateNoBasicAuthenticateHeadersProvidedWithAjaxButUserIsStillLoggedIn() {
- /** @var \Sabre\HTTP\RequestInterface $httpRequest */
- $httpRequest = $this->getMockBuilder(RequestInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- /** @var \Sabre\HTTP\ResponseInterface $httpResponse */
- $httpResponse = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- /** @var IUser */
- $user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $user->method('getUID')->willReturn('MyTestUser');
- $this->userSession
- ->expects($this->any())
- ->method('isLoggedIn')
- ->willReturn(true);
- $this->userSession
- ->expects($this->any())
- ->method('getUser')
- ->willReturn($user);
- $this->session
- ->expects($this->atLeastOnce())
- ->method('get')
- ->with('AUTHENTICATED_TO_DAV_BACKEND')
- ->willReturn('MyTestUser');
- $this->request
- ->expects($this->once())
- ->method('getMethod')
- ->willReturn('GET');
- $httpRequest
- ->expects($this->atLeastOnce())
- ->method('getHeader')
- ->with('Authorization')
- ->willReturn(null);
- $this->assertEquals(
- [true, 'principals/users/MyTestUser'],
- $this->auth->check($httpRequest, $httpResponse)
- );
- }
- public function testAuthenticateValidCredentials() {
- $server = $this->getMockBuilder(Server::class)
- ->disableOriginalConstructor()
- ->getMock();
- $server->httpRequest = $this->getMockBuilder(RequestInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $server->httpRequest
- ->expects($this->at(0))
- ->method('getHeader')
- ->with('X-Requested-With')
- ->willReturn(null);
- $server->httpRequest
- ->expects($this->at(1))
- ->method('getHeader')
- ->with('Authorization')
- ->willReturn('basic dXNlcm5hbWU6cGFzc3dvcmQ=');
- $server->httpResponse = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->userSession
- ->expects($this->once())
- ->method('logClientIn')
- ->with('username', 'password')
- ->willReturn(true);
- $user = $this->getMockBuilder(IUser::class)
- ->disableOriginalConstructor()
- ->getMock();
- $user->expects($this->exactly(3))
- ->method('getUID')
- ->willReturn('MyTestUser');
- $this->userSession
- ->expects($this->exactly(4))
- ->method('getUser')
- ->willReturn($user);
- $response = $this->auth->check($server->httpRequest, $server->httpResponse);
- $this->assertEquals([true, 'principals/users/MyTestUser'], $response);
- }
- public function testAuthenticateInvalidCredentials() {
- $server = $this->getMockBuilder(Server::class)
- ->disableOriginalConstructor()
- ->getMock();
- $server->httpRequest = $this->getMockBuilder(RequestInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $server->httpRequest
- ->expects($this->at(0))
- ->method('getHeader')
- ->with('X-Requested-With')
- ->willReturn(null);
- $server->httpRequest
- ->expects($this->at(1))
- ->method('getHeader')
- ->with('Authorization')
- ->willReturn('basic dXNlcm5hbWU6cGFzc3dvcmQ=');
- $server->httpResponse = $this->getMockBuilder(ResponseInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->userSession
- ->expects($this->once())
- ->method('logClientIn')
- ->with('username', 'password')
- ->willReturn(false);
- $response = $this->auth->check($server->httpRequest, $server->httpResponse);
- $this->assertEquals([false, 'Username or password was incorrect'], $response);
- }
- }
|