mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-12 18:18:41 +00:00
186 lines
5.4 KiB
PHP
186 lines
5.4 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.2
|
|
*
|
|
* @package TBD
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://website.orange-management.de
|
|
*/
|
|
|
|
namespace phpOMS\tests\System\File\Ftp;
|
|
|
|
use phpOMS\System\File\Ftp\File;
|
|
use phpOMS\System\File\ContentPutMode;
|
|
use phpOMS\System\File\PathException;
|
|
|
|
class FileTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
const TEST = false;
|
|
const BASE = 'ftp://user:password@localhost';
|
|
|
|
public function testStatic()
|
|
{
|
|
if (!self::TEST) {
|
|
return;
|
|
}
|
|
|
|
$testFile = self::BASE . '/test.txt';
|
|
self::assertFalse(File::put($testFile, 'test', ContentPutMode::REPLACE));
|
|
self::assertFalse(File::exists($testFile));
|
|
self::assertTrue(File::put($testFile, 'test', ContentPutMode::CREATE));
|
|
self::assertTrue(File::exists($testFile));
|
|
|
|
self::assertFalse(File::put($testFile, 'test', ContentPutMode::CREATE));
|
|
self::assertTrue(File::put($testFile, 'test2', ContentPutMode::REPLACE));
|
|
|
|
self::assertEquals('test2', File::get($testFile));
|
|
self::assertTrue(File::set($testFile, 'test3'));
|
|
self::assertTrue(File::append($testFile, 'test4'));
|
|
self::assertEquals('test3test4', File::get($testFile));
|
|
self::assertTrue(File::prepend($testFile, 'test5'));
|
|
self::assertEquals('test5test3test4', File::get($testFile));
|
|
|
|
self::assertEquals(str_replace('\\', '/', realpath(dirname($testFile) . '/../')), File::parent($testFile));
|
|
self::assertEquals('txt', File::extension($testFile));
|
|
self::assertEquals('test', File::name($testFile));
|
|
self::assertEquals('test.txt', File::basename($testFile));
|
|
self::assertEquals(basename(realpath(self::BASE)), File::dirname($testFile));
|
|
self::assertEquals(realpath(self::BASE), File::dirpath($testFile));
|
|
self::assertEquals(1, File::count($testFile));
|
|
|
|
$now = new \DateTime('now');
|
|
self::assertEquals($now->format('Y-m-d'), File::created($testFile)->format('Y-m-d'));
|
|
self::assertEquals($now->format('Y-m-d'), File::changed($testFile)->format('Y-m-d'));
|
|
|
|
self::assertGreaterThan(0, File::size($testFile));
|
|
self::assertGreaterThan(0, File::permission($testFile));
|
|
|
|
$newPath = self::BASE . '/sub/path/testing.txt';
|
|
self::assertTrue(File::copy($testFile, $newPath));
|
|
self::assertTrue(File::exists($newPath));
|
|
self::assertFalse(File::copy($testFile, $newPath));
|
|
self::assertTrue(File::copy($testFile, $newPath, true));
|
|
self::assertEquals('test5test3test4', File::get($newPath));
|
|
|
|
$newPath2 = self::BASE . '/sub/path/testing2.txt';
|
|
self::assertTrue(File::move($testFile, $newPath2));
|
|
self::assertTrue(File::exists($newPath2));
|
|
self::assertFalse(File::exists($testFile));
|
|
self::assertEquals('test5test3test4', File::get($newPath2));
|
|
|
|
self::assertTrue(File::delete($newPath2));
|
|
self::assertFalse(File::exists($newPath2));
|
|
self::assertFalse(File::delete($newPath2));
|
|
|
|
unlink($newPath);
|
|
rmdir(self::BASE . '/sub/path/');
|
|
rmdir(self::BASE . '/sub/');
|
|
|
|
self::assertTrue(File::create($testFile));
|
|
self::assertFalse(File::create($testFile));
|
|
self::assertEquals('', File::get($testFile));
|
|
|
|
unlink($testFile);
|
|
}
|
|
|
|
/**
|
|
* @expectedException \phpOMS\System\File\PathException
|
|
*/
|
|
public function testInvalidGetPath()
|
|
{
|
|
if (!self::TEST) {
|
|
throw new PathException('');
|
|
}
|
|
|
|
File::get(self::BASE . '/invalid.txt');
|
|
}
|
|
|
|
/**
|
|
* @expectedException \phpOMS\System\File\PathException
|
|
*/
|
|
public function testInvalidCopyPath()
|
|
{
|
|
if (!self::TEST) {
|
|
throw new PathException('');
|
|
}
|
|
|
|
File::copy(self::BASE . '/invalid.txt', self::BASE . '/invalid2.txt');
|
|
}
|
|
|
|
/**
|
|
* @expectedException \phpOMS\System\File\PathException
|
|
*/
|
|
public function testInvalidMovePath()
|
|
{
|
|
if (!self::TEST) {
|
|
throw new PathException('');
|
|
}
|
|
|
|
File::move(self::BASE . '/invalid.txt', self::BASE . '/invalid2.txt');
|
|
}
|
|
|
|
/**
|
|
* @expectedException \phpOMS\System\File\PathException
|
|
*/
|
|
public function testInvalidCreatedPath()
|
|
{
|
|
if (!self::TEST) {
|
|
throw new PathException('');
|
|
}
|
|
|
|
File::created(self::BASE . '/invalid.txt');
|
|
}
|
|
|
|
/**
|
|
* @expectedException \phpOMS\System\File\PathException
|
|
*/
|
|
public function testInvalidChangedPath()
|
|
{
|
|
if (!self::TEST) {
|
|
throw new PathException('');
|
|
}
|
|
|
|
File::changed(self::BASE . '/invalid.txt');
|
|
}
|
|
|
|
/**
|
|
* @expectedException \phpOMS\System\File\PathException
|
|
*/
|
|
public function testInvalidSizePath()
|
|
{
|
|
if (!self::TEST) {
|
|
throw new PathException('');
|
|
}
|
|
|
|
File::size(self::BASE . '/invalid.txt');
|
|
}
|
|
|
|
/**
|
|
* @expectedException \phpOMS\System\File\PathException
|
|
*/
|
|
public function testInvalidPermissionPath()
|
|
{
|
|
if (!self::TEST) {
|
|
throw new PathException('');
|
|
}
|
|
|
|
File::permission(self::BASE . '/invalid.txt');
|
|
}
|
|
|
|
/**
|
|
* @expectedException \phpOMS\System\File\PathException
|
|
*/
|
|
public function testInvalidOwnerPath()
|
|
{
|
|
if (!self::TEST) {
|
|
throw new PathException('');
|
|
}
|
|
|
|
File::owner(self::BASE . '/invalid.txt');
|
|
}
|
|
}
|