Skip to content

Commit

Permalink
add test case for 405
Browse files Browse the repository at this point in the history
  • Loading branch information
gam6itko committed Oct 14, 2024
1 parent 3f81e20 commit 1eb13cb
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion src/WebDAV/WebDAVAdapterTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
use League\Flysystem\UnableToMoveFile;
use League\Flysystem\UnableToSetVisibility;
use League\Flysystem\Visibility;
use Sabre\DAV\Client;

abstract class WebDAVAdapterTestCase extends FilesystemAdapterTestCase
{
Expand Down Expand Up @@ -48,7 +49,7 @@ public function creating_a_directory_with_leading_and_trailing_slashes(): void
{
$this->runScenario(function () {
$adapter = $this->adapter();
$adapter->createDirectory('/some/directory/', new Config);
$adapter->createDirectory('/some/directory/', new Config());

self::assertTrue($adapter->directoryExists('/some/directory/'));
});
Expand Down Expand Up @@ -132,4 +133,28 @@ public function moving_a_file_that_does_not_exist(): void
$this->adapter()->move('source.txt', 'destination.txt', new Config());
});
}

/**
* @test
*/
public function part_of_prefix_already_exists(): void
{
$this->runScenario(function () {
$config = new Config();

$adapter1 = new WebDAVAdapter(
new Client(['baseUri' => 'http://localhost:4040/']),
'directory1/prefix1',
);
$adapter1->createDirectory('folder1', $config);
self::assertTrue($adapter1->directoryExists('/folder1'));

$adapter2 = new WebDAVAdapter(
new Client(['baseUri' => 'http://localhost:4040/']),
'directory1/prefix2',
);
$adapter2->createDirectory('folder2', $config);
self::assertTrue($adapter2->directoryExists('/folder2'));
});
}
}

0 comments on commit 1eb13cb

Please sign in to comment.