format('Y-m-d'), Directory::created($dirPath)->format('Y-m-d')); \rmdir($dirPath); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('The directories last change date can be returned')] public function testStaticChangedAt() : void { $dirPath = __DIR__ . '/test'; self::assertTrue(Directory::create($dirPath)); $now = new \DateTime('now'); self::assertEquals($now->format('Y-m-d'), Directory::changed($dirPath)->format('Y-m-d')); \rmdir($dirPath); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('A directory can be deleted')] public function testStaticDelete() : void { $dirPath = __DIR__ . '/test'; self::assertTrue(Directory::create($dirPath)); self::assertTrue(Directory::delete($dirPath)); self::assertFalse(Directory::exists($dirPath)); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('A none-existing directory cannot be deleted')] public function testInvalidStaticDelete() : void { $dirPath = __DIR__ . '/test'; self::assertFalse(Directory::delete($dirPath)); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('The size of a directory can be returned')] public function testStaticSizeRecursive() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertGreaterThan(0, Directory::size($dirTestPath)); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('The size of a none-existing directory is negative')] public function testInvalidStaticSizeRecursive() : void { $dirTestPath = __DIR__ . '/invalid/test/here'; self::assertEquals(-1, Directory::size($dirTestPath)); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('The recursive size of a directory is equals or greater than the size of the same directory none-recursive')] public function testStaticSize() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertGreaterThan(Directory::size($dirTestPath, false), Directory::size($dirTestPath)); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('The permission of a directory can be returned')] public function testStaticPermission() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertGreaterThan(0, Directory::permission($dirTestPath)); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('The permission of a none-existing directory is negative')] public function testInvalidStaticPermission() : void { $dirTestPath = __DIR__ . '/invalid/test/here'; self::assertEquals(-1, Directory::permission($dirTestPath)); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('A directory can be copied recursively')] public function testStaticCopy() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertTrue(Directory::copy($dirTestPath, __DIR__ . '/newdirtest')); self::assertFileExists(__DIR__ . '/newdirtest/sub/path/test3.txt'); Directory::delete(__DIR__ . '/newdirtest'); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('A directory can be forced to be copied to a different location even if the destination already exists')] public function testStaticCopyOverwrite() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertTrue(Directory::copy($dirTestPath, __DIR__ . '/newdirtest')); self::assertFalse(Directory::copy($dirTestPath, __DIR__ . '/newdirtest', false)); self::assertTrue(Directory::copy($dirTestPath, __DIR__ . '/newdirtest', true)); self::assertFileExists(__DIR__ . '/newdirtest/sub/path/test3.txt'); Directory::delete(__DIR__ . '/newdirtest'); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('By default a directory is not overwritten on copy')] public function testStaticInvalidCopyOverwrite() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertTrue(Directory::copy($dirTestPath, __DIR__ . '/newdirtest')); self::assertFalse(Directory::copy($dirTestPath, __DIR__ . '/newdirtest', false)); Directory::delete(__DIR__ . '/newdirtest'); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('A directory can be moved/renamed to a different path')] public function testStaticMove() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertTrue(Directory::move($dirTestPath, __DIR__ . '/parent/newdirtest')); self::assertFileExists(__DIR__ . '/parent/newdirtest/sub/path/test3.txt'); Directory::move(__DIR__ . '/parent/newdirtest', $dirTestPath); \rmdir(__DIR__ . '/parent'); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('By default a directory is not overwritten on move')] public function testStaticInvalidMoveOverwrite() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertTrue(Directory::move($dirTestPath, __DIR__ . '/newdirtest')); self::assertFalse(Directory::move(__DIR__ . '/newdirtest', __DIR__ . '/newdirtest', false)); Directory::move(__DIR__ . '/newdirtest', $dirTestPath); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('A directory can be forced to be moved/renamed to a different path even if the destination already exists')] public function testStaticMoveOverwrite() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertTrue(Directory::move($dirTestPath, __DIR__ . '/newdirtest')); self::assertTrue(Directory::copy(__DIR__ . '/newdirtest', $dirTestPath)); self::assertFalse(Directory::move($dirTestPath, __DIR__ . '/newdirtest', false)); self::assertTrue(Directory::move($dirTestPath, __DIR__ . '/newdirtest', true)); Directory::move(__DIR__ . '/newdirtest', $dirTestPath); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('The amount of files in a directory can be returned recursively')] public function testStaticCountRecursive() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertEquals(4, Directory::count($dirTestPath)); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('The amount of files in a directory can be returned none-recursively')] public function testStaticCount() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertEquals(1, Directory::count($dirTestPath, false)); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('The amount of files of a none-existing directory is negative')] public function testInvalidStaticCount() : void { $dirTestPath = __DIR__ . '/invalid/path/here'; self::assertEquals(-1, Directory::count($dirTestPath, false)); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('All files and sub-directories of a directory can be listed')] public function testStaticListFiles() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertCount(6, Directory::list($dirTestPath, '*', true)); self::assertEquals([], \array_diff(['sub/test2.txt', 'sub/test4.md', 'sub/path/test3.txt'], Directory::list($dirTestPath, 'test[0-9]+.*', true))); self::assertCount(2, Directory::list($dirTestPath, '*', false)); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('All files of a directory can be listed by file extension')] public function testStaticListFilesByExtension() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertCount(3, Directory::listByExtension($dirTestPath, 'txt')); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('The owner of a directory can be returned')] public function testStaticOwner() : void { $dirTestPath = __DIR__ . '/dirtest'; self::assertNotEmpty(Directory::owner($dirTestPath)); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('Invalid directory names and paths can be sanitized')] public function testDirectoryNameSanitizing() : void { self::assertEquals(':/some/test/[path', Directory::sanitize(':#&^$/some%/test/[path!')); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('A none-existing directory returns a empty list of files and sub-directories')] public function testInvalidListPath() : void { self::assertEquals([], Directory::list(__DIR__ . '/invalid/path/here')); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('A none-existing directory returns a empty list of files for the extension')] public function testInvalidListFilesByExtension() : void { self::assertEquals([], Directory::listByExtension(__DIR__ . '/invalid/path/here', 'txt')); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('A invalid directory cannot be copied to a new destination')] public function testInvalidCopyPath() : void { self::assertFalse(Directory::copy(__DIR__ . '/invalid', __DIR__ . '/invalid2')); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('A invalid directory cannot be moved to a new destination')] public function testInvalidMovePath() : void { self::assertFalse(Directory::move(__DIR__ . '/invalid', __DIR__ . '/invalid2')); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('Reading the creation date of a none-existing directory throws a PathException')] public function testInvalidCreatedPath() : void { $this->expectException(\phpOMS\System\File\PathException::class); Directory::created(__DIR__ . '/invalid'); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('Reading the last change date of a none-existing directory throws a PathException')] public function testInvalidChangedPath() : void { $this->expectException(\phpOMS\System\File\PathException::class); Directory::changed(__DIR__ . '/invalid'); } #[\PHPUnit\Framework\Attributes\Group('framework')] #[\PHPUnit\Framework\Attributes\TestDox('Reading the owner of a none-existing directory throws a PathException')] public function testInvalidOwnerPath() : void { $this->expectException(\phpOMS\System\File\PathException::class); Directory::owner(__DIR__ . '/invalid'); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testList() : void { $dirTestPath = __DIR__ . '/dirtest'; $dir = new Directory($dirTestPath); self::assertEquals([ 'sub', 'test.txt', ], $dir->getList()); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeOutput() : void { $dirTestPath = __DIR__ . '/dirtest'; $dir = new Directory($dirTestPath); self::assertInstanceOf(Directory::class, $dir->getNode('sub')); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeCreate() : void { $dir = new Directory(__DIR__); $dir->addNode(new Directory(__DIR__ . '/nodedir')); self::assertTrue(\is_dir(__DIR__ . '/nodedir')); \rmdir(__DIR__ . '/nodedir'); $dir = new Directory(__DIR__ . '/nodedir2'); $dir->createNode(); self::assertTrue(\is_dir(__DIR__ . '/nodedir2')); \rmdir(__DIR__ . '/nodedir2'); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeDelete() : void { $dir = new Directory(__DIR__); $dir->addNode(new Directory(__DIR__ . '/nodedir')); self::assertTrue(\is_dir(__DIR__ . '/nodedir')); self::assertTrue($dir->getNode('nodedir')->deleteNode()); self::assertFalse(\is_dir(__DIR__ . '/nodedir')); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeCopy() : void { $dir = new Directory(__DIR__); $dir->addNode(new Directory(__DIR__ . '/nodedir')); $dir->getNode('nodedir')->copyNode(__DIR__ . '/nodedir2'); self::assertTrue(\is_dir(__DIR__ . '/nodedir2')); \rmdir(__DIR__ . '/nodedir'); \rmdir(__DIR__ . '/nodedir2'); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeMove() : void { $dir = new Directory(__DIR__); $dir->addNode(new Directory(__DIR__ . '/nodedir')); $dir->getNode('nodedir')->moveNode(__DIR__ . '/nodedir2'); self::assertFalse(\is_dir(__DIR__ . '/nodedir')); self::assertTrue(\is_dir(__DIR__ . '/nodedir2')); \rmdir(__DIR__ . '/nodedir2'); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeExists() : void { $dir = new Directory(__DIR__); self::assertTrue($dir->isExisting()); self::assertTrue($dir->isExisting('dirtest')); self::assertFalse($dir->isExisting('invalid')); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testParentOutput() : void { $dir = new Directory(__DIR__ . '/dirtest'); self::assertEquals(__DIR__, $dir->getParent()->getPath()); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeNext() : void { $dir = new Directory(__DIR__ . '/dirtest'); $dir->next(); self::assertEquals(__DIR__ . '/dirtest/test.txt', $dir->current()->getPath()); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeCurrent() : void { $dir = new Directory(__DIR__ . '/dirtest'); self::assertEquals(__DIR__ . '/dirtest/sub', $dir->current()->getPath()); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeKey() : void { $dir = new Directory(__DIR__ . '/dirtest'); self::assertEquals('sub', $dir->key()); $dir->next(); self::assertEquals('test.txt', $dir->key()); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeArrayRead() : void { $dir = new Directory(__DIR__ . '/dirtest'); self::assertEquals('test', $dir['test.txt']->getName()); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeArraySet() : void { $dir = new Directory(__DIR__); $dir[] = new Directory(__DIR__ . '/nodedir'); self::assertTrue(\is_dir(__DIR__ . '/nodedir')); \rmdir(__DIR__ . '/nodedir'); $dir['nodedir'] = new Directory(__DIR__ . '/nodedir'); self::assertTrue(\is_dir(__DIR__ . '/nodedir')); \rmdir(__DIR__ . '/nodedir'); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeArrayRemove() : void { $dir = new Directory(__DIR__); $dir->addNode(new Directory(__DIR__ . '/nodedir')); self::assertTrue(\is_dir(__DIR__ . '/nodedir')); unset($dir['nodedir']); self::assertFalse(\is_dir(__DIR__ . '/nodedir')); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeArrayExists() : void { $dir = new Directory(__DIR__); self::assertTrue(isset($dir['dirtest'])); self::assertFalse(isset($dir['invalid'])); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeCreatedAt() : void { $dirPath = __DIR__ . '/test'; $dir = new Directory($dirPath); self::assertTrue($dir->createNode()); $now = new \DateTime('now'); self::assertEquals($now->format('Y-m-d'), $dir->getCreatedAt()->format('Y-m-d')); \rmdir($dirPath); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeChangedAt() : void { $dirPath = __DIR__ . '/test'; $dir = new Directory($dirPath); self::assertTrue($dir->createNode()); $now = new \DateTime('now'); self::assertEquals($now->format('Y-m-d'), $dir->getChangedAt()->format('Y-m-d')); \rmdir($dirPath); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodeOwner() : void { $dir = new Directory(__DIR__ . '/dirtest'); self::assertNotEmpty($dir->getOwner()); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testNodePermission() : void { $dir = new Directory(__DIR__ . '/dirtest'); self::assertGreaterThan(0, $dir->getPermission()); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testDirname() : void { $dir = new Directory(__DIR__ . '/dirtest'); $dir->next(); self::assertEquals('dirtest', $dir->current()->getDirName()); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testName() : void { $dir = new Directory(__DIR__ . '/dirtest'); $dir->next(); self::assertEquals('test', $dir->current()->getName()); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testBaseame() : void { $dir = new Directory(__DIR__ . '/dirtest'); $dir->next(); self::assertEquals('test.txt', $dir->current()->getBasename()); } #[\PHPUnit\Framework\Attributes\Group('framework')] public function testDirpath() : void { $dir = new Directory(__DIR__ . '/dirtest'); $dir->next(); self::assertEquals(__DIR__ . '/dirtest', $dir->current()->getDirPath()); } }