Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
60 lines
1.5 KiB
PHP
60 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace Gaufrette\Functional\FileStream;
|
|
|
|
use Gaufrette\Filesystem;
|
|
use Gaufrette\Adapter\Local as LocalAdapter;
|
|
|
|
class LocalTest extends FunctionalTestCase
|
|
{
|
|
protected $directory;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->directory = __DIR__ . DIRECTORY_SEPARATOR . 'filesystem';
|
|
@mkdir($this->directory . DIRECTORY_SEPARATOR . 'subdir', 0777, true);
|
|
umask(0002);
|
|
$this->filesystem = new Filesystem(new LocalAdapter($this->directory, true, 0770));
|
|
|
|
$this->registerLocalFilesystemInStream();
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function shouldChmodDirectory(): void
|
|
{
|
|
if (strtolower(substr(PHP_OS, 0, 3)) === 'win') {
|
|
$this->markTestSkipped('Chmod and umask are not available on Windows.');
|
|
}
|
|
|
|
$r = fopen('gaufrette://filestream/foo/bar', 'a+');
|
|
fclose($r);
|
|
|
|
$perms = fileperms($this->directory . '/foo/');
|
|
$this->assertEquals('0770', substr(sprintf('%o', $perms), -4));
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
$adapter = $this->filesystem->getAdapter();
|
|
|
|
foreach ($this->filesystem->keys() as $key) {
|
|
$adapter->delete($key);
|
|
}
|
|
|
|
$this->filesystem = null;
|
|
|
|
rmdir($this->directory);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function shouldSupportsDirectory(): void
|
|
{
|
|
$this->assertFileExists('gaufrette://filestream/subdir');
|
|
$this->assertDirectoryExists('gaufrette://filestream/subdir');
|
|
}
|
|
}
|