diff options
author | Joas Schilling <coding@schilljs.com> | 2017-06-07 11:24:00 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-06-07 11:24:00 +0200 |
commit | b6d6f3c521ac119b56c045a2379bbe4c4f416d6c (patch) | |
tree | 628cd57bc6b80864bc2a960ee96778d7fd972e61 /apps/dav/tests/unit/Connector | |
parent | d0c614a322566003205d3599a4215836da19dde5 (diff) | |
download | nextcloud-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.php | 9 |
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(); |