mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-08 01:18:48 +00:00
WebDav Storage backend
This commit is contained in:
parent
020a1245fd
commit
15d77952ac
4 changed files with 517 additions and 0 deletions
98
webdav_storage/tests/WebDavTest.php
Normal file
98
webdav_storage/tests/WebDavTest.php
Normal file
|
@ -0,0 +1,98 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Addon\webdav_storage\tests;
|
||||
|
||||
use Friendica\Test\MockedTest;
|
||||
|
||||
class WebDavTest extends MockedTest
|
||||
{
|
||||
public function dataMultiStatus()
|
||||
{
|
||||
return [
|
||||
'nextcloud' => [
|
||||
'xml' => <<<EOF
|
||||
<?xml version="1.0"?>
|
||||
<d:multistatus xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns" xmlns:oc="http://owncloud.org/ns"
|
||||
xmlns:nc="http://nextcloud.org/ns">
|
||||
<d:response>
|
||||
<d:href>/remote.php/dav/files/admin/Friendica_test/97/18/</d:href>
|
||||
<d:propstat>
|
||||
<d:prop>
|
||||
<d:getlastmodified>Mon, 30 Aug 2021 12:58:54 GMT</d:getlastmodified>
|
||||
<d:resourcetype>
|
||||
<d:collection/>
|
||||
</d:resourcetype>
|
||||
<d:quota-used-bytes>45017</d:quota-used-bytes>
|
||||
<d:quota-available-bytes>59180834349</d:quota-available-bytes>
|
||||
<d:getetag>"612cd60ec9fd5"</d:getetag>
|
||||
</d:prop>
|
||||
<d:status>HTTP/1.1 200 OK</d:status>
|
||||
</d:propstat>
|
||||
</d:response>
|
||||
<d:response>
|
||||
<d:href>
|
||||
/remote.php/dav/files/admin/Friendica_test/97/18/4d9d36f614dc005756bdfb9abbf1d8d24aa9ae842e5d6b5e7eb1dafbe767
|
||||
</d:href>
|
||||
<d:propstat>
|
||||
<d:prop>
|
||||
<d:getlastmodified>Mon, 30 Aug 2021 12:58:54 GMT</d:getlastmodified>
|
||||
<d:getcontentlength>45017</d:getcontentlength>
|
||||
<d:resourcetype/>
|
||||
<d:getetag>"4f7a144092532141d0e6b925e50a896e"</d:getetag>
|
||||
<d:getcontenttype>application/octet-stream
|
||||
</d:getcontenttype>
|
||||
</d:prop>
|
||||
<d:status>HTTP/1.1 200 OK</d:status>
|
||||
</d:propstat>
|
||||
<d:propstat>
|
||||
<d:prop>
|
||||
<d:quota-used-bytes/>
|
||||
<d:quota-available-bytes/>
|
||||
</d:prop>
|
||||
<d:status>HTTP/1.1 404 Not Found
|
||||
</d:status>
|
||||
</d:propstat>
|
||||
</d:response>
|
||||
</d:multistatus>
|
||||
EOF,
|
||||
'assertionCount' => 2,
|
||||
],
|
||||
'onlyDir' => [
|
||||
'xml' => <<<EOF
|
||||
<d:multistatus xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns" xmlns:oc="http://owncloud.org/ns" xmlns:nc="http://nextcloud.org/ns">
|
||||
<d:response>
|
||||
<d:href>/remote.php/dav/files/admin/Friendica_test/34/cf/</d:href>
|
||||
<d:propstat>
|
||||
<d:prop>
|
||||
<d:getlastmodified>Sun, 05 Sep 2021 17:56:05 GMT</d:getlastmodified>
|
||||
<d:resourcetype>
|
||||
<d:collection/>
|
||||
</d:resourcetype>
|
||||
<d:quota-used-bytes>0</d:quota-used-bytes>
|
||||
<d:quota-available-bytes>59182800697</d:quota-available-bytes>
|
||||
<d:getetag>"613504b55db4f"</d:getetag>
|
||||
</d:prop>
|
||||
<d:status>HTTP/1.1 200 OK</d:status>
|
||||
</d:propstat>
|
||||
</d:response>
|
||||
</d:multistatus>
|
||||
EOF,
|
||||
'assertionCount' => 1,
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider dataMultiStatus
|
||||
*/
|
||||
public function testMultistatus(string $xml, int $assertionCount)
|
||||
{
|
||||
$responseDoc = new \DOMDocument();
|
||||
$responseDoc->loadXML($xml);
|
||||
|
||||
$xpath = new \DOMXPath($responseDoc);
|
||||
$xpath->registerNamespace('d', 'DAV');
|
||||
|
||||
self::assertCount($assertionCount, $xpath->query('//d:multistatus/d:response'));
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue