initial commit

This commit is contained in:
Milos Stojanovic
2019-06-13 18:52:40 +02:00
commit 261607e1d3
160 changed files with 41704 additions and 0 deletions

View File

@@ -0,0 +1,146 @@
<?php
/*
* This file is part of the FileGator package.
*
* (c) Milos Stojanovic <alcalbg@gmail.com>
*
* For the full copyright and license information, please view the LICENSE file
*/
namespace Tests\Unit;
use Filegator\Services\Tmpfs\Adapters\Tmpfs;
use Tests\TestCase;
/**
* @internal
*/
class TmpfsTest extends TestCase
{
protected $service;
public function setUp(): void
{
$this->resetTempDir();
rmdir(TEST_TMP_PATH);
$this->service = new Tmpfs();
$this->service->init([
'path' => TEST_TMP_PATH,
'gc_probability_perc' => 100,
'gc_older_than' => 60 * 60 * 24 * 2, // 2 days
]);
parent::setUp();
}
public function testWriteContentToTmpFile()
{
$this->service->write('a.txt', 'lorem');
$this->assertFileExists(TEST_TMP_PATH.'/a.txt');
}
public function testWriteContentToTmpFileUsingStream()
{
$stream = fopen(TEST_FILE, 'r');
$this->service->write('a.txt', $stream);
$this->assertFileEquals(TEST_TMP_PATH.'/a.txt', TEST_FILE);
}
public function testReadingTmpFileContents()
{
$this->service->write('a.txt', 'lorem');
$contents = $this->service->read('a.txt');
$this->assertEquals($contents, 'lorem');
}
public function testReadingTmpFileContentsUsingStream()
{
$this->service->write('a.txt', 'lorem');
$ret = $this->service->readStream('a.txt');
$this->assertEquals($ret['filename'], 'a.txt');
$contents = stream_get_contents($ret['stream']);
$this->assertEquals($contents, 'lorem');
}
public function testRemovingTmpFile()
{
$this->service->write('a.txt', 'lorem');
$this->assertFileExists(TEST_TMP_PATH.'a.txt');
$this->service->remove('a.txt');
$this->assertFileNotExists(TEST_TMP_PATH.'a.txt');
}
public function testCheckExistingFile()
{
$this->service->write('a.txt', 'lorem');
$this->assertTrue($this->service->exists('a.txt'));
$this->assertFalse($this->service->exists('nothere.txt'));
}
public function testFindingAllFilesMatchingPatters()
{
$this->service->write('a.txt', 'lorem');
$this->service->write('b.txt', 'lorem');
$this->service->write('b.zip', 'lorem');
$this->assertCount(2, $this->service->findAll('*.txt'));
$this->assertCount(2, $this->service->findAll('b*'));
$this->assertCount(3, $this->service->findAll('*'));
$this->assertCount(0, $this->service->findAll('1*2'));
}
public function testCleaningFilesOlderThan()
{
$this->service->write('a.txt', 'lorem');
$this->service->write('b.txt', 'lorem');
$this->service->write('b.zip', 'lorem');
$this->service->clean(10000);
$this->assertCount(3, $this->service->findAll('*'));
$this->service->clean(0);
$this->assertCount(0, $this->service->findAll('*'));
}
public function testDeleteOldFilesAutomaticaly()
{
touch(TEST_TMP_PATH.'fresh.txt', time());
touch(TEST_TMP_PATH.'old.txt', time() - 60 * 60 * 24 * 10); // 10 days old
$this->service->init([
'path' => TEST_TMP_PATH,
'gc_probability_perc' => 100,
'gc_older_than' => 60 * 60 * 24 * 2, // 2 days
]);
$this->assertFileExists(TEST_TMP_PATH.'fresh.txt');
$this->assertFileNotExists(TEST_TMP_PATH.'old.txt');
}
public function testGarbageIsNotDeletedEveryTime()
{
touch(TEST_TMP_PATH.'old.txt', time() - 60 * 60 * 24 * 10); // 10 days old
$this->service->init([
'path' => TEST_TMP_PATH,
'gc_probability_perc' => 0,
'gc_older_than' => 60 * 60 * 24 * 2, // 2 days
]);
$this->assertFileExists(TEST_TMP_PATH.'old.txt');
}
}