123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright 2018, Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.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 OCA\DAV\Tests\Unit\Direct;
- use OCA\DAV\Db\Direct;
- use OCA\DAV\Db\DirectMapper;
- use OCA\DAV\Direct\DirectFile;
- use OCA\DAV\Direct\DirectHome;
- use OCP\AppFramework\Db\DoesNotExistException;
- use OCP\AppFramework\Utility\ITimeFactory;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\Files\IRootFolder;
- use OCP\IRequest;
- use OCP\Security\Bruteforce\IThrottler;
- use Sabre\DAV\Exception\Forbidden;
- use Sabre\DAV\Exception\MethodNotAllowed;
- use Sabre\DAV\Exception\NotFound;
- use Test\TestCase;
- class DirectHomeTest extends TestCase {
- /** @var DirectMapper|\PHPUnit\Framework\MockObject\MockObject */
- private $directMapper;
- /** @var IRootFolder|\PHPUnit\Framework\MockObject\MockObject */
- private $rootFolder;
- /** @var ITimeFactory|\PHPUnit\Framework\MockObject\MockObject */
- private $timeFactory;
- /** @var IThrottler|\PHPUnit\Framework\MockObject\MockObject */
- private $throttler;
- /** @var IRequest */
- private $request;
- /** @var DirectHome */
- private $directHome;
- /** @var IEventDispatcher */
- private $eventDispatcher;
- protected function setUp(): void {
- parent::setUp();
- $this->directMapper = $this->createMock(DirectMapper::class);
- $this->rootFolder = $this->createMock(IRootFolder::class);
- $this->timeFactory = $this->createMock(ITimeFactory::class);
- $this->throttler = $this->createMock(IThrottler::class);
- $this->request = $this->createMock(IRequest::class);
- $this->eventDispatcher = $this->createMock(IEventDispatcher::class);
- $this->timeFactory->method('getTime')
- ->willReturn(42);
- $this->request->method('getRemoteAddress')
- ->willReturn('1.2.3.4');
- $this->directHome = new DirectHome(
- $this->rootFolder,
- $this->directMapper,
- $this->timeFactory,
- $this->throttler,
- $this->request,
- $this->eventDispatcher
- );
- }
- public function testCreateFile(): void {
- $this->expectException(Forbidden::class);
- $this->directHome->createFile('foo', 'bar');
- }
- public function testCreateDirectory(): void {
- $this->expectException(Forbidden::class);
- $this->directHome->createDirectory('foo');
- }
- public function testGetChildren(): void {
- $this->expectException(MethodNotAllowed::class);
- $this->directHome->getChildren();
- }
- public function testChildExists(): void {
- $this->assertFalse($this->directHome->childExists('foo'));
- }
- public function testDelete(): void {
- $this->expectException(Forbidden::class);
- $this->directHome->delete();
- }
- public function testGetName(): void {
- $this->assertSame('direct', $this->directHome->getName());
- }
- public function testSetName(): void {
- $this->expectException(Forbidden::class);
- $this->directHome->setName('foo');
- }
- public function testGetLastModified(): void {
- $this->assertSame(0, $this->directHome->getLastModified());
- }
- public function testGetChildValid(): void {
- $direct = Direct::fromParams([
- 'expiration' => 100,
- ]);
- $this->directMapper->method('getByToken')
- ->with('longtoken')
- ->willReturn($direct);
- $this->throttler->expects($this->never())
- ->method($this->anything());
- $result = $this->directHome->getChild('longtoken');
- $this->assertInstanceOf(DirectFile::class, $result);
- }
- public function testGetChildExpired(): void {
- $direct = Direct::fromParams([
- 'expiration' => 41,
- ]);
- $this->directMapper->method('getByToken')
- ->with('longtoken')
- ->willReturn($direct);
- $this->throttler->expects($this->never())
- ->method($this->anything());
- $this->expectException(NotFound::class);
- $this->directHome->getChild('longtoken');
- }
- public function testGetChildInvalid(): void {
- $this->directMapper->method('getByToken')
- ->with('longtoken')
- ->willThrowException(new DoesNotExistException('not found'));
- $this->throttler->expects($this->once())
- ->method('registerAttempt')
- ->with(
- 'directlink',
- '1.2.3.4'
- );
- $this->throttler->expects($this->once())
- ->method('sleepDelay')
- ->with(
- '1.2.3.4',
- 'directlink'
- );
- $this->expectException(NotFound::class);
- $this->directHome->getChild('longtoken');
- }
- }
|