summaryrefslogtreecommitdiffstats
path: root/apps/dav/tests/unit/Connector
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-06-07 11:24:00 +0200
committerJoas Schilling <coding@schilljs.com>2017-06-07 11:24:00 +0200
commitb6d6f3c521ac119b56c045a2379bbe4c4f416d6c (patch)
tree628cd57bc6b80864bc2a960ee96778d7fd972e61 /apps/dav/tests/unit/Connector
parentd0c614a322566003205d3599a4215836da19dde5 (diff)
downloadnextcloud-server-b6d6f3c521ac119b56c045a2379bbe4c4f416d6c.tar.gz
nextcloud-server-b6d6f3c521ac119b56c045a2379bbe4c4f416d6c.zip
Fix unit test
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav/tests/unit/Connector')
-rw-r--r--apps/dav/tests/unit/Connector/Sabre/FilesPluginTest.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/apps/dav/tests/unit/Connector/Sabre/FilesPluginTest.php b/apps/dav/tests/unit/Connector/Sabre/FilesPluginTest.php
index 739c8f62540..885f3c23c24 100644
--- a/apps/dav/tests/unit/Connector/Sabre/FilesPluginTest.php
+++ b/apps/dav/tests/unit/Connector/Sabre/FilesPluginTest.php
@@ -341,11 +341,12 @@ class FilesPluginTest extends TestCase {
$this->assertEquals('my_fingerprint', $propFind->get(self::DATA_FINGERPRINT_PROPERTYNAME));
}
- /**
- * @expectedException \Sabre\DAV\Exception\NotFound
- */
public function testGetPropertiesWhenNoPermission() {
- /** @var \OCA\DAV\Connector\Sabre\Directory | \PHPUnit_Framework_MockObject_MockObject $node */
+ // No read permissions can be caused by files access control.
+ // But we still want to load the directory list, so this is okay for us.
+ // $this->expectException(\Sabre\DAV\Exception\NotFound::class);
+
+ /** @var \OCA\DAV\Connector\Sabre\Directory|\PHPUnit_Framework_MockObject_MockObject $node */
$node = $this->getMockBuilder('\OCA\DAV\Connector\Sabre\Directory')
->disableOriginalConstructor()
->getMock();