2014-02-09 15:53:58 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2024-05-10 15:09:14 +02:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2014-02-09 15:53:58 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test;
|
|
|
|
|
2020-08-20 14:08:18 +02:00
|
|
|
use bantu\IniGetWrapper\IniGetWrapper;
|
|
|
|
|
2014-02-09 15:53:58 +01:00
|
|
|
/**
|
2020-04-08 22:24:54 +02:00
|
|
|
* Tests whether LargeFileHelper is able to determine file size at all.
|
|
|
|
* Large files are not considered yet.
|
|
|
|
*/
|
2016-05-20 15:38:20 +02:00
|
|
|
class LargeFileHelperGetFileSizeTest extends TestCase {
|
2014-12-05 19:57:06 +01:00
|
|
|
/** @var string */
|
|
|
|
protected $filename;
|
|
|
|
/** @var int */
|
|
|
|
protected $fileSize;
|
2014-11-05 16:42:19 +01:00
|
|
|
/** @var \OC\LargeFileHelper */
|
2014-02-09 15:53:58 +01:00
|
|
|
protected $helper;
|
|
|
|
|
2019-11-21 16:40:38 +01:00
|
|
|
protected function setUp(): void {
|
2014-02-09 15:53:58 +01:00
|
|
|
parent::setUp();
|
2014-11-05 16:42:19 +01:00
|
|
|
$this->helper = new \OC\LargeFileHelper();
|
2014-02-09 15:53:58 +01:00
|
|
|
}
|
|
|
|
|
2014-11-05 16:42:19 +01:00
|
|
|
public function dataFileNameProvider() {
|
|
|
|
$path = dirname(__DIR__) . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR;
|
|
|
|
|
2016-07-08 15:55:17 +02:00
|
|
|
return [
|
|
|
|
[ $path . 'lorem.txt', 446 ],
|
|
|
|
[ $path . 'strängé filename (duplicate #2).txt', 446 ],
|
|
|
|
];
|
2014-11-05 16:42:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataFileNameProvider
|
|
|
|
*/
|
2019-11-25 21:06:52 +01:00
|
|
|
public function XtestGetFileSizeViaCurl($filename, $fileSize) {
|
2014-02-09 15:53:58 +01:00
|
|
|
if (!extension_loaded('curl')) {
|
|
|
|
$this->markTestSkipped(
|
|
|
|
'The PHP curl extension is required for this test.'
|
|
|
|
);
|
|
|
|
}
|
2020-08-20 14:08:18 +02:00
|
|
|
if (\OC::$server->get(IniGetWrapper::class)->getString('open_basedir') !== '') {
|
2014-12-05 19:57:06 +01:00
|
|
|
$this->markTestSkipped(
|
|
|
|
'The PHP curl extension does not work with the file:// protocol when open_basedir is enabled.'
|
|
|
|
);
|
|
|
|
}
|
2014-02-09 15:53:58 +01:00
|
|
|
$this->assertSame(
|
2014-11-05 16:42:19 +01:00
|
|
|
$fileSize,
|
|
|
|
$this->helper->getFileSizeViaCurl($filename)
|
2014-02-09 15:53:58 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-11-05 16:42:19 +01:00
|
|
|
/**
|
|
|
|
* @dataProvider dataFileNameProvider
|
|
|
|
*/
|
|
|
|
public function testGetFileSizeViaExec($filename, $fileSize): void {
|
2020-12-03 12:38:45 +01:00
|
|
|
if (escapeshellarg('strängé') !== '\'strängé\'') {
|
|
|
|
$this->markTestSkipped('Your escapeshell args removes accents');
|
|
|
|
}
|
2022-08-18 10:47:49 +02:00
|
|
|
if (!\OCP\Util::isFunctionEnabled('exec')) {
|
2014-02-09 15:53:58 +01:00
|
|
|
$this->markTestSkipped(
|
|
|
|
'The exec() function needs to be enabled for this test.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$this->assertSame(
|
2014-11-05 16:42:19 +01:00
|
|
|
$fileSize,
|
|
|
|
$this->helper->getFileSizeViaExec($filename)
|
2014-02-09 15:53:58 +01:00
|
|
|
);
|
|
|
|
}
|
2014-02-18 12:57:44 +01:00
|
|
|
|
2014-11-05 16:42:19 +01:00
|
|
|
/**
|
|
|
|
* @dataProvider dataFileNameProvider
|
|
|
|
*/
|
|
|
|
public function testGetFileSizeNative($filename, $fileSize): void {
|
2014-02-18 12:57:44 +01:00
|
|
|
$this->assertSame(
|
2014-11-05 16:42:19 +01:00
|
|
|
$fileSize,
|
|
|
|
$this->helper->getFileSizeNative($filename)
|
2014-02-18 12:57:44 +01:00
|
|
|
);
|
|
|
|
}
|
2014-02-09 15:53:58 +01:00
|
|
|
}
|