Fixed failing problems
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
parent
b78dcae1d4
commit
02de82df91
2 changed files with 5 additions and 5 deletions
|
@ -410,7 +410,7 @@ trait WebDav {
|
|||
public function reportFolder($user, $path, $properties = null){
|
||||
$client = $this->getSabreClient($user);
|
||||
|
||||
$body = [ 'body' => '<?xml version="1.0" encoding="utf-8" ?>
|
||||
$body = '<?xml version="1.0" encoding="utf-8" ?>
|
||||
<oc:filter-files xmlns:a="DAV:" xmlns:oc="http://owncloud.org/ns" >
|
||||
<a:prop>
|
||||
<oc:id/>
|
||||
|
@ -433,11 +433,11 @@ trait WebDav {
|
|||
<oc:filter-rules>
|
||||
<oc:favorite>1</oc:favorite>
|
||||
</oc:filter-rules>
|
||||
</oc:filter-files>'];
|
||||
</oc:filter-files>';
|
||||
|
||||
$response = $client->request('REPORT', $this->makeSabrePath($user, $path), $body);
|
||||
|
||||
return $response;
|
||||
$parsedResponse = $client->parseMultistatus($response['body']);
|
||||
return $parsedResponse;
|
||||
}
|
||||
|
||||
public function makeSabrePath($user, $path) {
|
||||
|
|
|
@ -86,7 +86,7 @@ Feature: favorite
|
|||
And user "user0" favorites element "/textfile0.txt"
|
||||
And user "user0" favorites element "/textfile1.txt"
|
||||
Then user "user0" in folder "/" should have favorited the following elements
|
||||
| /FOLDER |
|
||||
| /FOLDER |
|
||||
| /textfile0.txt |
|
||||
| /textfile1.txt |
|
||||
|
||||
|
|
Loading…
Reference in a new issue