123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace Test\Files\Storage;
- use OC\Files\Storage\Wrapper\Jail;
- use OC\Files\Storage\Wrapper\Wrapper;
- use OCP\Files\IFilenameValidator;
- use OCP\Files\InvalidCharacterInPathException;
- use OCP\Files\InvalidPathException;
- use OCP\ITempManager;
- use PHPUnit\Framework\MockObject\MockObject;
- /**
- * Class CommonTest
- *
- * @group DB
- *
- * @package Test\Files\Storage
- */
- class CommonTest extends Storage {
- private string $tmpDir;
- private IFilenameValidator&MockObject $filenameValidator;
- protected function setUp(): void {
- parent::setUp();
- $this->filenameValidator = $this->createMock(IFilenameValidator::class);
- $this->overwriteService(IFilenameValidator::class, $this->filenameValidator);
- $this->tmpDir = \OCP\Server::get(ITempManager::class)->getTemporaryFolder();
- $this->instance = new \OC\Files\Storage\CommonTest(['datadir' => $this->tmpDir]);
- }
- protected function tearDown(): void {
- \OC_Helper::rmdirr($this->tmpDir);
- $this->restoreService(IFilenameValidator::class);
- parent::tearDown();
- }
- public function testVerifyPath(): void {
- $this->filenameValidator
- ->expects($this->once())
- ->method('validateFilename')
- ->with('invalid:char.txt')
- ->willThrowException(new InvalidCharacterInPathException());
- $this->expectException(InvalidPathException::class);
- $this->instance->verifyPath('/', 'invalid:char.txt');
- }
- public function testVerifyPathSucceed(): void {
- $this->filenameValidator
- ->expects($this->once())
- ->method('validateFilename')
- ->with('valid-char.txt');
- $this->instance->verifyPath('/', 'valid-char.txt');
- }
- public function testMoveFromStorageWrapped(): void {
- /** @var \OC\Files\Storage\CommonTest|MockObject $instance */
- $instance = $this->getMockBuilder(\OC\Files\Storage\CommonTest::class)
- ->onlyMethods(['copyFromStorage', 'rmdir', 'unlink'])
- ->setConstructorArgs([['datadir' => $this->tmpDir]])
- ->getMock();
- $instance->method('copyFromStorage')
- ->willThrowException(new \Exception('copy'));
- $source = new Wrapper([
- 'storage' => $instance,
- ]);
- $instance->file_put_contents('foo.txt', 'bar');
- $instance->moveFromStorage($source, 'foo.txt', 'bar.txt');
- $this->assertTrue($instance->file_exists('bar.txt'));
- }
- public function testMoveFromStorageJailed(): void {
- /** @var \OC\Files\Storage\CommonTest|MockObject $instance */
- $instance = $this->getMockBuilder(\OC\Files\Storage\CommonTest::class)
- ->onlyMethods(['copyFromStorage', 'rmdir', 'unlink'])
- ->setConstructorArgs([['datadir' => $this->tmpDir]])
- ->getMock();
- $instance->method('copyFromStorage')
- ->willThrowException(new \Exception('copy'));
- $source = new Jail([
- 'storage' => $instance,
- 'root' => 'foo'
- ]);
- $source = new Wrapper([
- 'storage' => $source
- ]);
- $instance->mkdir('foo');
- $instance->file_put_contents('foo/foo.txt', 'bar');
- $instance->moveFromStorage($source, 'foo.txt', 'bar.txt');
- $this->assertTrue($instance->file_exists('bar.txt'));
- }
- public function testMoveFromStorageNestedJail(): void {
- /** @var \OC\Files\Storage\CommonTest|MockObject $instance */
- $instance = $this->getMockBuilder(\OC\Files\Storage\CommonTest::class)
- ->onlyMethods(['copyFromStorage', 'rmdir', 'unlink'])
- ->setConstructorArgs([['datadir' => $this->tmpDir]])
- ->getMock();
- $instance->method('copyFromStorage')
- ->willThrowException(new \Exception('copy'));
- $source = new Jail([
- 'storage' => $instance,
- 'root' => 'foo'
- ]);
- $source = new Wrapper([
- 'storage' => $source
- ]);
- $source = new Jail([
- 'storage' => $source,
- 'root' => 'bar'
- ]);
- $source = new Wrapper([
- 'storage' => $source
- ]);
- $instance->mkdir('foo');
- $instance->mkdir('foo/bar');
- $instance->file_put_contents('foo/bar/foo.txt', 'bar');
- $instance->moveFromStorage($source, 'foo.txt', 'bar.txt');
- $this->assertTrue($instance->file_exists('bar.txt'));
- }
- }
|