2019-02-12 01:18:08 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2019-02-16 00:41:29 +03:00
|
|
|
* @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2019-02-12 01:18:08 +03:00
|
|
|
*
|
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2019-02-12 01:18:08 +03:00
|
|
|
*
|
|
|
|
* @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
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2019-02-12 01:18:08 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\files_external\tests\Config;
|
|
|
|
|
|
|
|
use OCA\Files_External\Config\UserPlaceholderHandler;
|
2019-07-25 10:58:54 +03:00
|
|
|
use OCP\IRequest;
|
2019-02-12 01:18:08 +03:00
|
|
|
use OCP\IUser;
|
2019-07-25 10:58:54 +03:00
|
|
|
use OCP\IUserManager;
|
2019-02-12 01:18:08 +03:00
|
|
|
use OCP\IUserSession;
|
2019-07-25 10:58:54 +03:00
|
|
|
use OCP\Share\Exceptions\ShareNotFound;
|
|
|
|
use OCP\Share\IManager;
|
2019-02-12 01:18:08 +03:00
|
|
|
|
|
|
|
class UserPlaceholderHandlerTest extends \Test\TestCase {
|
|
|
|
/** @var IUser|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
protected $user;
|
|
|
|
|
|
|
|
/** @var IUserSession|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
protected $session;
|
|
|
|
|
2019-07-25 10:58:54 +03:00
|
|
|
/** @var IManager|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $shareManager;
|
|
|
|
|
|
|
|
/** @var IRequest|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $request;
|
|
|
|
|
|
|
|
/** @var IUserManager|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $userManager;
|
|
|
|
|
2019-02-12 01:18:08 +03:00
|
|
|
/** @var UserPlaceholderHandler */
|
|
|
|
protected $handler;
|
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2019-02-12 01:18:08 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->user = $this->createMock(IUser::class);
|
|
|
|
$this->user->expects($this->any())
|
|
|
|
->method('getUid')
|
|
|
|
->willReturn('alice');
|
|
|
|
$this->session = $this->createMock(IUserSession::class);
|
2019-07-25 10:58:54 +03:00
|
|
|
$this->shareManager = $this->createMock(IManager::class);
|
|
|
|
$this->request = $this->createMock(IRequest::class);
|
|
|
|
$this->userManager = $this->createMock(IUserManager::class);
|
2019-02-12 01:18:08 +03:00
|
|
|
|
2019-07-25 10:58:54 +03:00
|
|
|
$this->handler = new UserPlaceholderHandler($this->session, $this->shareManager, $this->request, $this->userManager);
|
2019-02-12 01:18:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function setUser() {
|
|
|
|
$this->session->expects($this->any())
|
|
|
|
->method('getUser')
|
|
|
|
->willReturn($this->user);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function optionProvider() {
|
|
|
|
return [
|
|
|
|
['/foo/bar/$user/foobar', '/foo/bar/alice/foobar'],
|
|
|
|
[['/foo/bar/$user/foobar'], ['/foo/bar/alice/foobar']],
|
|
|
|
[['/FOO/BAR/$USER/FOOBAR'], ['/FOO/BAR/alice/FOOBAR']],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider optionProvider
|
|
|
|
*/
|
|
|
|
public function testHandle($option, $expected) {
|
|
|
|
$this->setUser();
|
|
|
|
$this->assertSame($expected, $this->handler->handle($option));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider optionProvider
|
|
|
|
*/
|
|
|
|
public function testHandleNoUser($option) {
|
2019-07-25 10:58:54 +03:00
|
|
|
$this->shareManager->expects($this->once())
|
|
|
|
->method('getShareByToken')
|
|
|
|
->willThrowException(new ShareNotFound());
|
2019-02-12 01:18:08 +03:00
|
|
|
$this->assertSame($option, $this->handler->handle($option));
|
|
|
|
}
|
|
|
|
}
|