Add AuthPublicShareControllerTest
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
61e445da88
commit
1bb8bc8ff9
2 changed files with 157 additions and 1 deletions
|
@ -132,7 +132,6 @@ abstract class AuthPublicShareController extends PublicShareController {
|
|||
$this->session->regenerateId();
|
||||
$response = $this->getRedirect();
|
||||
|
||||
$this->session->clear();
|
||||
$this->session->set('public_link_authenticated_token', $this->getToken());
|
||||
$this->session->set('public_link_authenticated_password_hash', $this->getPasswordHash());
|
||||
|
||||
|
|
|
@ -0,0 +1,157 @@
|
|||
<?php
|
||||
/**
|
||||
* @copyright 2018, Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* 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
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
namespace Test\AppFramework\Controller;
|
||||
|
||||
use OC\AppFramework\Middleware\PublicShare\Exceptions\NeedAuthenticationException;
|
||||
use OC\AppFramework\Middleware\PublicShare\PublicShareMiddleware;
|
||||
use OCP\AppFramework\AuthPublicShareController;
|
||||
use OCP\AppFramework\Controller;
|
||||
use OCP\AppFramework\Http\NotFoundResponse;
|
||||
use OCP\AppFramework\Http\RedirectResponse;
|
||||
use OCP\AppFramework\Http\TemplateResponse;
|
||||
use OCP\AppFramework\PublicShareController;
|
||||
use OCP\Files\NotFoundException;
|
||||
use OCP\IConfig;
|
||||
use OCP\IRequest;
|
||||
use OCP\ISession;
|
||||
use OCP\IURLGenerator;
|
||||
|
||||
class AuthPublicShareControllerTest extends \Test\TestCase {
|
||||
|
||||
/** @var IRequest|\PHPUnit_Framework_MockObject_MockObject */
|
||||
private $request;
|
||||
/** @var ISession|\PHPUnit_Framework_MockObject_MockObject */
|
||||
private $session;
|
||||
/** @var IURLGenerator|\PHPUnit_Framework_MockObject_MockObject */
|
||||
private $urlGenerator;
|
||||
|
||||
/** @var AuthPublicShareController|\PHPUnit_Framework_MockObject_MockObject */
|
||||
private $controller;
|
||||
|
||||
|
||||
protected function setUp() {
|
||||
parent::setUp();
|
||||
|
||||
$this->request = $this->createMock(IRequest::class);
|
||||
$this->session = $this->createMock(ISession::class);
|
||||
$this->urlGenerator = $this->createMock(IURLGenerator::class);
|
||||
|
||||
$this->controller = $this->getMockBuilder(AuthPublicShareController::class)
|
||||
->setConstructorArgs([
|
||||
'app',
|
||||
$this->request,
|
||||
$this->session,
|
||||
$this->urlGenerator
|
||||
])->setMethods([
|
||||
'authFailed',
|
||||
'getPasswordHash',
|
||||
'isAuthenticated',
|
||||
'isPasswordProtected',
|
||||
'isValidToken',
|
||||
'showShare',
|
||||
'verifyPassword'
|
||||
])->getMock();
|
||||
}
|
||||
|
||||
public function testShowAuthenticate() {
|
||||
$expects = new TemplateResponse('core', 'publicshareauth', [], 'guest');
|
||||
|
||||
$this->assertEquals($expects, $this->controller->showAuthenticate());
|
||||
}
|
||||
|
||||
public function testAuthenticateAuthenticated() {
|
||||
$this->controller->method('isAuthenticated')
|
||||
->willReturn(true);
|
||||
|
||||
$this->session->method('get')
|
||||
->willReturnMap(['public_link_authenticate_redirect', ['foo' => 'bar']]);
|
||||
|
||||
$this->urlGenerator->method('linkToRoute')
|
||||
->willReturn('myLink!');
|
||||
|
||||
$result = $this->controller->authenticate('password');
|
||||
$this->assertInstanceOf(RedirectResponse::class, $result);
|
||||
$this->assertSame('myLink!', $result->getRedirectURL());
|
||||
}
|
||||
|
||||
public function testAuthenticateInvalidPassword() {
|
||||
$this->controller->setToken('token');
|
||||
$this->controller->method('isPasswordProtected')
|
||||
->willReturn(true);
|
||||
|
||||
$this->controller->method('verifyPassword')
|
||||
->with('password')
|
||||
->willReturn(false);
|
||||
|
||||
$this->controller->expects($this->once())
|
||||
->method('authFailed');
|
||||
|
||||
$expects = new TemplateResponse('core', 'publicshareauth', ['wrongpw' => true], 'guest');
|
||||
$expects->throttle();
|
||||
|
||||
$result = $this->controller->authenticate('password');
|
||||
|
||||
$this->assertEquals($expects, $result);
|
||||
}
|
||||
|
||||
public function testAuthenticateValidPassword() {
|
||||
$this->controller->setToken('token');
|
||||
$this->controller->method('isPasswordProtected')
|
||||
->willReturn(true);
|
||||
$this->controller->method('verifyPassword')
|
||||
->with('password')
|
||||
->willReturn(true);
|
||||
$this->controller->method('getPasswordHash')
|
||||
->willReturn('hash');
|
||||
|
||||
$this->session->expects($this->once())
|
||||
->method('regenerateId');
|
||||
$this->session->method('get')
|
||||
->willReturnMap(['public_link_authenticate_redirect', ['foo' => 'bar']]);
|
||||
|
||||
$tokenSet = false;
|
||||
$hashSet = false;
|
||||
$this->session
|
||||
->method('set')
|
||||
->will($this->returnCallback(function($key, $value) use (&$tokenSet, &$hashSet) {
|
||||
if ($key === 'public_link_authenticated_token' && $value === 'token') {
|
||||
$tokenSet = true;
|
||||
return true;
|
||||
}
|
||||
if ($key === 'public_link_authenticated_password_hash' && $value === 'hash') {
|
||||
$hashSet = true;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}));
|
||||
|
||||
$this->urlGenerator->method('linkToRoute')
|
||||
->willReturn('myLink!');
|
||||
|
||||
$result = $this->controller->authenticate('password');
|
||||
$this->assertInstanceOf(RedirectResponse::class, $result);
|
||||
$this->assertSame('myLink!', $result->getRedirectURL());
|
||||
$this->assertTrue($tokenSet);
|
||||
$this->assertTrue($hashSet);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue