Files
Chamilo/vendor/knplabs/gaufrette/tests/Gaufrette/Functional/FileStream/LocalTest.php
T
Xes 73154ae174
Behat tests 1.11.x 🐞 / PHP 7.4 Test on ubuntu-latest (push) Canceled after 0s
PHP-CS-Fixer / composer_install (7.4) (push) Canceled after 0s
Chamilo 1.11.40 (ZIP oficial v1.11.40)
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.
2026-08-06 17:59:45 +02:00

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');
}
}