2014-02-09 18:53:58 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2014 Andreas Fischer <bantu@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test;
|
|
|
|
|
2020-08-20 15:08:18 +03:00
|
|
|
use bantu\IniGetWrapper\IniGetWrapper;
|
|
|
|
|
2014-02-09 18:53:58 +04:00
|
|
|
/**
|
2020-04-08 23:24:54 +03:00
|
|
|
* Tests whether LargeFileHelper is able to determine file size at all.
|
|
|
|
* Large files are not considered yet.
|
|
|
|
*/
|
2016-05-20 16:38:20 +03:00
|
|
|
class LargeFileHelperGetFileSizeTest extends TestCase {
|
2014-12-05 21:57:06 +03:00
|
|
|
/** @var string */
|
|
|
|
protected $filename;
|
|
|
|
/** @var int */
|
|
|
|
protected $fileSize;
|
2014-11-05 18:42:19 +03:00
|
|
|
/** @var \OC\LargeFileHelper */
|
2014-02-09 18:53:58 +04:00
|
|
|
protected $helper;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2014-02-09 18:53:58 +04:00
|
|
|
parent::setUp();
|
2014-11-05 18:42:19 +03:00
|
|
|
$this->helper = new \OC\LargeFileHelper();
|
2014-02-09 18:53:58 +04:00
|
|
|
}
|
|
|
|
|
2014-11-05 18:42:19 +03:00
|
|
|
public function dataFileNameProvider() {
|
|
|
|
$path = dirname(__DIR__) . DIRECTORY_SEPARATOR . 'data' . DIRECTORY_SEPARATOR;
|
|
|
|
|
2016-07-08 16:55:17 +03:00
|
|
|
return [
|
|
|
|
[ $path . 'lorem.txt', 446 ],
|
|
|
|
[ $path . 'strängé filename (duplicate #2).txt', 446 ],
|
|
|
|
];
|
2014-11-05 18:42:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataFileNameProvider
|
|
|
|
*/
|
2019-11-25 23:06:52 +03:00
|
|
|
public function XtestGetFileSizeViaCurl($filename, $fileSize) {
|
2014-02-09 18:53:58 +04:00
|
|
|
if (!extension_loaded('curl')) {
|
|
|
|
$this->markTestSkipped(
|
|
|
|
'The PHP curl extension is required for this test.'
|
|
|
|
);
|
|
|
|
}
|
2020-08-20 15:08:18 +03:00
|
|
|
if (\OC::$server->get(IniGetWrapper::class)->getString('open_basedir') !== '') {
|
2014-12-05 21:57:06 +03:00
|
|
|
$this->markTestSkipped(
|
|
|
|
'The PHP curl extension does not work with the file:// protocol when open_basedir is enabled.'
|
|
|
|
);
|
|
|
|
}
|
2014-02-09 18:53:58 +04:00
|
|
|
$this->assertSame(
|
2014-11-05 18:42:19 +03:00
|
|
|
$fileSize,
|
|
|
|
$this->helper->getFileSizeViaCurl($filename)
|
2014-02-09 18:53:58 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-11-05 18:42:19 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataFileNameProvider
|
|
|
|
*/
|
|
|
|
public function testGetFileSizeViaExec($filename, $fileSize) {
|
2014-02-09 18:53:58 +04:00
|
|
|
if (!\OC_Helper::is_function_enabled('exec')) {
|
|
|
|
$this->markTestSkipped(
|
|
|
|
'The exec() function needs to be enabled for this test.'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$this->assertSame(
|
2014-11-05 18:42:19 +03:00
|
|
|
$fileSize,
|
|
|
|
$this->helper->getFileSizeViaExec($filename)
|
2014-02-09 18:53:58 +04:00
|
|
|
);
|
|
|
|
}
|
2014-02-18 15:57:44 +04:00
|
|
|
|
2014-11-05 18:42:19 +03:00
|
|
|
/**
|
|
|
|
* @dataProvider dataFileNameProvider
|
|
|
|
*/
|
|
|
|
public function testGetFileSizeNative($filename, $fileSize) {
|
2014-02-18 15:57:44 +04:00
|
|
|
$this->assertSame(
|
2014-11-05 18:42:19 +03:00
|
|
|
$fileSize,
|
|
|
|
$this->helper->getFileSizeNative($filename)
|
2014-02-18 15:57:44 +04:00
|
|
|
);
|
|
|
|
}
|
2014-02-09 18:53:58 +04:00
|
|
|
}
|