diff options
author | Robin Appelman <robin@icewind.nl> | 2020-02-03 13:41:55 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2020-03-19 15:54:45 +0100 |
commit | d10883334554eb23f55b8de00dacafbf631b1cf3 (patch) | |
tree | c700e8aaa6bbe950a82699cb935a007003651cde /apps/dav | |
parent | 37150d0e734015d093200970453427f0cca3a243 (diff) | |
download | nextcloud-server-d10883334554eb23f55b8de00dacafbf631b1cf3.tar.gz nextcloud-server-d10883334554eb23f55b8de00dacafbf631b1cf3.zip |
fix tests
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/tests/unit/Connector/Sabre/CustomPropertiesBackendTest.php | 59 |
1 files changed, 2 insertions, 57 deletions
diff --git a/apps/dav/tests/unit/Connector/Sabre/CustomPropertiesBackendTest.php b/apps/dav/tests/unit/Connector/Sabre/CustomPropertiesBackendTest.php index 7b0c9b81e0f..1b6850534f3 100644 --- a/apps/dav/tests/unit/Connector/Sabre/CustomPropertiesBackendTest.php +++ b/apps/dav/tests/unit/Connector/Sabre/CustomPropertiesBackendTest.php @@ -143,16 +143,6 @@ class CustomPropertiesBackendTest extends \Test\TestCase { * Test that propFind on a missing file soft fails */ public function testPropFindMissingFileSoftFail() { - $this->tree->expects($this->at(0)) - ->method('getNodeForPath') - ->with('/dummypath') - ->will($this->throwException(new \Sabre\DAV\Exception\NotFound())); - - $this->tree->expects($this->at(1)) - ->method('getNodeForPath') - ->with('/dummypath') - ->will($this->throwException(new \Sabre\DAV\Exception\ServiceUnavailable())); - $propFind = new \Sabre\DAV\PropFind( '/dummypath', array( @@ -173,20 +163,14 @@ class CustomPropertiesBackendTest extends \Test\TestCase { $propFind ); - // no exception, soft fail - $this->addToAssertionCount(1); + // assert that the above didn't throw exceptions + $this->assertTrue(true); } /** * Test setting/getting properties */ public function testSetGetPropertiesForFile() { - $node = $this->createTestNode(File::class); - $this->tree->expects($this->any()) - ->method('getNodeForPath') - ->with('/dummypath') - ->will($this->returnValue($node)); - $this->applyDefaultProps(); $propFind = new \Sabre\DAV\PropFind( @@ -213,39 +197,6 @@ class CustomPropertiesBackendTest extends \Test\TestCase { * Test getting properties from directory */ public function testGetPropertiesForDirectory() { - $rootNode = $this->createTestNode(Directory::class); - - $nodeSub = $this->getMockBuilder(File::class) - ->disableOriginalConstructor() - ->getMock(); - $nodeSub->expects($this->any()) - ->method('getId') - ->will($this->returnValue(456)); - - $nodeSub->expects($this->any()) - ->method('getPath') - ->will($this->returnValue('/dummypath/test.txt')); - - $this->tree->expects($this->at(0)) - ->method('getNodeForPath') - ->with('/dummypath') - ->will($this->returnValue($rootNode)); - - $this->tree->expects($this->at(1)) - ->method('getNodeForPath') - ->with('/dummypath/test.txt') - ->will($this->returnValue($nodeSub)); - - $this->tree->expects($this->at(2)) - ->method('getNodeForPath') - ->with('/dummypath') - ->will($this->returnValue($rootNode)); - - $this->tree->expects($this->at(3)) - ->method('getNodeForPath') - ->with('/dummypath/test.txt') - ->will($this->returnValue($nodeSub)); - $this->applyDefaultProps('/dummypath'); $this->applyDefaultProps('/dummypath/test.txt'); @@ -293,12 +244,6 @@ class CustomPropertiesBackendTest extends \Test\TestCase { * Test delete property */ public function testDeleteProperty() { - $node = $this->createTestNode(File::class); - $this->tree->expects($this->any()) - ->method('getNodeForPath') - ->with('/dummypath') - ->will($this->returnValue($node)); - $this->applyDefaultProps(); $propPatch = new \Sabre\DAV\PropPatch(array( |