5 \Hamcrest\Util::registerGlobalFunctions();
60 protected function setUp(): void
64 $this->filesystemMock = Mockery::mock(FilesystemInterface::class);
65 $this->fileAccessMock = Mockery::mock(FlySystemFileAccess::class);
76 $path =
'/path/to/dir';
80 'timestamp' => 10_000_000
84 ->shouldReceive(
'has')
88 ->shouldReceive(
'getMetadata')
90 ->andReturn($metadata);
92 $exists = $this->subject->hasDir(
$path);
93 $this->assertTrue($exists);
102 $path =
'/path/to/file';
106 'timestamp' => 10_000_000
109 $this->filesystemMock
110 ->shouldReceive(
'has')
114 ->shouldReceive(
'getMetadata')
116 ->andReturn($metadata);
118 $exists = $this->subject->hasDir(
$path);
119 $this->assertFalse($exists);
128 $path =
'/path/to/file';
131 'timestamp' => 10_000_000
134 $this->filesystemMock
135 ->shouldReceive(
'has')
139 ->shouldReceive(
'getMetadata')
141 ->andReturn($metadata);
143 $this->expectException(IOException::class);
144 $this->expectExceptionMessage(
"Could not evaluate path type: \"$path\"");
146 $exists = $this->subject->hasDir(
$path);
147 $this->assertFalse($exists);
156 $path =
'/path/to/dir';
158 $this->filesystemMock
159 ->shouldReceive(
'has')
163 $exists = $this->subject->hasDir(
$path);
164 $this->assertFalse($exists);
171 public function testListContentsWhichShouldSucceed():
void 173 $path =
'/path/to/dir';
174 $file = [
'type' =>
'file',
'path' =>
$path];
175 $dir = [
'type' =>
'dir',
'path' =>
$path];
182 $this->filesystemMock
183 ->shouldReceive(
'listContents')
185 ->withArgs([
$path, \boolValue()])
186 ->andReturn($contentList)
188 ->shouldReceive(
'has')
193 ->shouldReceive(
'getMetadata')
201 $content = $this->subject->listContents(
$path);
203 $this->assertSame($contentList[0][
'type'], $content[0]->getType());
204 $this->assertSame($contentList[0][
'path'], $content[0]->getPath());
205 $this->assertTrue($content[0]->isFile());
206 $this->assertFalse($content[0]->isDir());
207 $this->assertSame($contentList[1][
'type'], $content[1]->getType());
208 $this->assertSame($contentList[1][
'path'], $content[1]->getPath());
209 $this->assertTrue($content[1]->isDir());
210 $this->assertFalse($content[1]->isFile());
219 $path =
'/path/to/dir';
221 $this->filesystemMock
222 ->shouldReceive(
'has')
226 $this->expectException(DirectoryNotFoundException::class);
227 $this->expectExceptionMessage(
"Directory \"$path\" not found.");
229 $this->subject->listContents(
$path);
238 $path =
'/path/to/dir';
239 $file = [
'type' =>
'file',
'path' =>
$path];
240 $dir = [
'type' =>
'dir'];
248 $this->filesystemMock
249 ->shouldReceive(
'listContents')
251 ->andReturn($contentList)
253 ->shouldReceive(
'has')
257 ->shouldReceive(
'getMetadata')
261 $this->expectException(IOException::class);
262 $this->expectExceptionMessage(
"Invalid metadata received for path \"$path\"");
264 $this->subject->listContents(
$path);
273 $path =
'/path/to/dir';
276 $this->filesystemMock
277 ->shouldReceive(
'createDir')
279 ->withArgs([
$path, [
'visibility' => $access]])
282 $this->subject->createDir(
$path, $access);
291 $path =
'/path/to/dir';
294 $this->filesystemMock
295 ->shouldReceive(
'createDir')
297 ->withArgs([
$path, [
'visibility' => $access]])
300 $this->expectException(IOException::class);
301 $this->expectExceptionMessage(
"Could not create directory \"$path\"");
303 $this->subject->createDir(
$path, $access);
312 $path =
'/path/to/dir';
315 $this->expectException(\InvalidArgumentException::class);
316 $this->expectExceptionMessage(
"Invalid visibility expected public or private but got \"$access\".");
318 $this->subject->createDir(
$path, $access);
325 public function testCopyDirWhichShouldSucceed():
void 327 $srcPath =
'/source/path/to/dir';
328 $destPath =
'/dest/path/to/dir';
343 $fileDestinationList = [];
345 $subjectMock = Mockery::mock(
346 FlySystemDirectoryAccess::class .
'[listContents, hasDir]',
347 [$this->filesystemMock, $this->fileAccessMock]
350 ->shouldReceive(
'listContents')
351 ->withArgs([$srcPath,
true])
353 ->andReturn($fileSourceList)
355 ->shouldReceive(
'listContents')
356 ->withArgs([$destPath,
true])
358 ->andReturn($fileDestinationList);
361 ->shouldReceive(
'hasDir')
366 $this->fileAccessMock
367 ->shouldReceive(
'copy')
368 ->withArgs([$fileSourceList[0]->getPath(),
"$destPath/hello1"])
371 ->shouldReceive(
'copy')
372 ->withArgs([$fileSourceList[2]->getPath(),
"$destPath/hello2"])
375 ->shouldReceive(
'copy')
376 ->withArgs([$fileSourceList[3]->getPath(),
"$destPath/hello/subhello1"])
379 ->shouldReceive(
'copy')
380 ->withArgs([$fileSourceList[5]->getPath(),
"$destPath/hello3"])
383 ->shouldReceive(
'copy')
384 ->withArgs([$fileSourceList[6]->getPath(),
"$destPath/hello/subhello2"])
388 $subjectMock->copyDir($srcPath, $destPath);
395 public function testCopyDirWithDestinationListContentErrorWhichShouldSucceed():
void 397 $srcPath =
'/source/path/to/dir';
398 $destPath =
'/dest/path/to/dir';
413 $subjectMock = Mockery::mock(
414 FlySystemDirectoryAccess::class .
'[listContents, hasDir]',
415 [$this->filesystemMock, $this->fileAccessMock]
418 ->shouldReceive(
'listContents')
419 ->withArgs([$srcPath,
true])
421 ->andReturn($fileSourceList)
423 ->shouldReceive(
'listContents')
424 ->withArgs([$destPath,
true])
426 ->andThrow(DirectoryNotFoundException::class);
429 ->shouldReceive(
'hasDir')
434 $this->fileAccessMock
435 ->shouldReceive(
'copy')
436 ->withArgs([$fileSourceList[0]->getPath(),
"$destPath/hello1"])
439 ->shouldReceive(
'copy')
440 ->withArgs([$fileSourceList[2]->getPath(),
"$destPath/hello2"])
443 ->shouldReceive(
'copy')
444 ->withArgs([$fileSourceList[3]->getPath(),
"$destPath/hello/subhello1"])
447 ->shouldReceive(
'copy')
448 ->withArgs([$fileSourceList[5]->getPath(),
"$destPath/hello3"])
451 ->shouldReceive(
'copy')
452 ->withArgs([$fileSourceList[6]->getPath(),
"$destPath/hello/subhello2"])
456 $subjectMock->copyDir($srcPath, $destPath);
463 public function testCopyDirWithFullDestinationDirWhichShouldFail():
void 465 $srcPath =
'/source/path/to/dir';
466 $destPath =
'/dest/path/to/dir';
471 $fileDestinationList = [
481 $subjectMock = Mockery::mock(
482 FlySystemDirectoryAccess::class .
'[listContents, hasDir]',
483 [$this->filesystemMock, $this->fileAccessMock]
486 ->shouldReceive(
'listContents')
487 ->withArgs([$destPath,
true])
489 ->andReturn($fileDestinationList);
492 ->shouldReceive(
'hasDir')
497 $this->expectException(IOException::class);
498 $this->expectExceptionMessage(
"Destination \"$destPath\" is not empty can not copy files.");
500 $subjectMock->copyDir($srcPath, $destPath);
509 $srcPath =
'/source/path/to/dir';
510 $destPath =
'/dest/path/to/dir';
512 $subjectMock = Mockery::mock(
513 FlySystemDirectoryAccess::class .
'[hasDir]',
514 [$this->filesystemMock, $this->fileAccessMock]
517 ->shouldReceive(
'hasDir')
522 $this->expectException(DirectoryNotFoundException::class);
523 $this->expectExceptionMessage(
"Directory \"$srcPath\" not found");
525 $subjectMock->copyDir($srcPath, $destPath);
534 $path =
'/directory/which/should/be/removed';
536 $this->filesystemMock
537 ->shouldReceive(
'deleteDir')
542 $this->subject->deleteDir(
$path);
553 $this->filesystemMock
554 ->shouldReceive(
'deleteDir')
557 ->andThrow(RootViolationException::class);
559 $this->expectException(IOException::class);
560 $this->expectExceptionMessage(
'The filesystem root must not be deleted.');
562 $this->subject->deleteDir(
$path);
571 $path =
'/directory/which/should/be/removed';
573 $this->filesystemMock
574 ->shouldReceive(
'deleteDir')
579 $this->expectException(IOException::class);
580 $this->expectExceptionMessage(
"Could not delete directory \"$path\".");
582 $this->subject->deleteDir(
$path);
testListContentsWithInvalidMetadataWhichShouldFail()
testListContentsWithMissingRootDirectoryWhichShouldFail()
testHasDirWhichShouldSucceed()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testHasDirWithMissingDirWhichShouldSucceed()
const PRIVATE_ACCESS
Private file visibility.
testCreateDirWithGeneralErrorWhichShouldFail()
testCreateDirWithInvalidVisibilityWhichShouldFail()
testCreateDirWhichShouldSucceed()
testDeleteDirWithRootViolationWhichShouldFail()
testDeleteDirWithGeneralErrorWhichShouldFail()
testCopyDirWithMissingSourceDirWhichShouldFail()
Class FlySystemDirectoryAccessTest.
testHasDirWithFileTargetWhichShouldFail()
Class FlySystemDirectoryAccess.
testHasDirWithoutTypeInformationWhichShouldFail()
testDeleteDirWhichShouldSucceed()