tree = $this->getMockBuilder(Tree::class) ->disableOriginalConstructor() ->getMock(); $this->view = $this->getMockBuilder(View::class) ->disableOriginalConstructor() ->getMock(); $this->server = $this->getMockBuilder('\Sabre\DAV\Server') ->setConstructorArgs([$this->tree]) ->onlyMethods(['getRequestUri', 'getBaseUri']) ->getMock(); $this->server->expects($this->any()) ->method('getBaseUri') ->willReturn('http://example.com/owncloud/remote.php/dav'); $this->groupManager = $this->getMockBuilder(IGroupManager::class) ->disableOriginalConstructor() ->getMock(); $this->userFolder = $this->getMockBuilder(Folder::class) ->disableOriginalConstructor() ->getMock(); $this->previewManager = $this->getMockBuilder(IPreview::class) ->disableOriginalConstructor() ->getMock(); $this->appManager = $this->getMockBuilder(IAppManager::class) ->disableOriginalConstructor() ->getMock(); $this->tagManager = $this->createMock(ISystemTagManager::class); $this->tagMapper = $this->createMock(ISystemTagObjectMapper::class); $this->userSession = $this->createMock(IUserSession::class); $this->privateTags = $this->createMock(ITags::class); $this->privateTagManager = $this->createMock(ITagManager::class); $this->privateTagManager->expects($this->any()) ->method('load') ->with('files') ->willReturn($this->privateTags); $user = $this->getMockBuilder(IUser::class) ->disableOriginalConstructor() ->getMock(); $user->expects($this->any()) ->method('getUID') ->willReturn('testuser'); $this->userSession->expects($this->any()) ->method('getUser') ->willReturn($user); $this->plugin = new FilesReportPluginImplementation( $this->tree, $this->view, $this->tagManager, $this->tagMapper, $this->privateTagManager, $this->userSession, $this->groupManager, $this->userFolder, $this->appManager ); } public function testOnReportInvalidNode(): void { $path = 'totally/unrelated/13'; $this->tree->expects($this->any()) ->method('getNodeForPath') ->with('/' . $path) ->willReturn( $this->getMockBuilder(INode::class) ->disableOriginalConstructor() ->getMock() ); $this->server->expects($this->any()) ->method('getRequestUri') ->willReturn($path); $this->plugin->initialize($this->server); $this->assertNull($this->plugin->onReport(FilesReportPluginImplementation::REPORT_NAME, [], '/' . $path)); } public function testOnReportInvalidReportName(): void { $path = 'test'; $this->tree->expects($this->any()) ->method('getNodeForPath') ->with('/' . $path) ->willReturn( $this->getMockBuilder(INode::class) ->disableOriginalConstructor() ->getMock() ); $this->server->expects($this->any()) ->method('getRequestUri') ->willReturn($path); $this->plugin->initialize($this->server); $this->assertNull($this->plugin->onReport('{whoever}whatever', [], '/' . $path)); } public function testOnReport(): void { $path = 'test'; $parameters = [ [ 'name' => '{DAV:}prop', 'value' => [ ['name' => '{DAV:}getcontentlength', 'value' => ''], ['name' => '{http://owncloud.org/ns}size', 'value' => ''], ], ], [ 'name' => '{http://owncloud.org/ns}filter-rules', 'value' => [ ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '123'], ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '456'], ], ], ]; $this->groupManager->expects($this->any()) ->method('isAdmin') ->willReturn(true); $reportTargetNode = $this->getMockBuilder(Directory::class) ->disableOriginalConstructor() ->getMock(); $reportTargetNode->expects($this->any()) ->method('getPath') ->willReturn(''); $response = $this->getMockBuilder(ResponseInterface::class) ->disableOriginalConstructor() ->getMock(); $response->expects($this->once()) ->method('setHeader') ->with('Content-Type', 'application/xml; charset=utf-8'); $response->expects($this->once()) ->method('setStatus') ->with(207); $response->expects($this->once()) ->method('setBody'); $this->tree->expects($this->any()) ->method('getNodeForPath') ->with('/' . $path) ->willReturn($reportTargetNode); $filesNode1 = $this->createMock(File::class); $filesNode1->expects($this->any()) ->method('getSize') ->willReturn(12); $filesNode2 = $this->createMock(Folder::class); $filesNode2->expects($this->any()) ->method('getSize') ->willReturn(10); $tag123 = $this->createMock(ISystemTag::class); $tag123->expects($this->any()) ->method('getName') ->willReturn('OneTwoThree'); $tag123->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $tag456 = $this->createMock(ISystemTag::class); $tag456->expects($this->any()) ->method('getName') ->willReturn('FourFiveSix'); $tag456->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $this->tagManager->expects($this->once()) ->method('getTagsByIds') ->with(['123', '456']) ->willReturn([$tag123, $tag456]); $this->userFolder->expects($this->exactly(2)) ->method('searchBySystemTag') ->withConsecutive( ['OneTwoThree'], ['FourFiveSix'], ) ->willReturnOnConsecutiveCalls( [$filesNode1], [$filesNode2], ); $this->server->expects($this->any()) ->method('getRequestUri') ->willReturn($path); $this->server->httpResponse = $response; $this->plugin->initialize($this->server); $this->assertFalse($this->plugin->onReport(FilesReportPluginImplementation::REPORT_NAME, $parameters, '/' . $path)); } public function testFindNodesByFileIdsRoot(): void { $filesNode1 = $this->getMockBuilder(Folder::class) ->disableOriginalConstructor() ->getMock(); $filesNode1->expects($this->once()) ->method('getName') ->willReturn('first node'); $filesNode2 = $this->getMockBuilder(File::class) ->disableOriginalConstructor() ->getMock(); $filesNode2->expects($this->once()) ->method('getName') ->willReturn('second node'); $reportTargetNode = $this->getMockBuilder(Directory::class) ->disableOriginalConstructor() ->getMock(); $reportTargetNode->expects($this->any()) ->method('getPath') ->willReturn('/'); $this->userFolder->expects($this->exactly(2)) ->method('getFirstNodeById') ->withConsecutive( ['111'], ['222'], ) ->willReturnOnConsecutiveCalls( $filesNode1, $filesNode2, ); /** @var Directory&MockObject $reportTargetNode */ $result = $this->plugin->findNodesByFileIds($reportTargetNode, ['111', '222']); $this->assertCount(2, $result); $this->assertInstanceOf('\OCA\DAV\Connector\Sabre\Directory', $result[0]); $this->assertEquals('first node', $result[0]->getName()); $this->assertInstanceOf('\OCA\DAV\Connector\Sabre\File', $result[1]); $this->assertEquals('second node', $result[1]->getName()); } public function testFindNodesByFileIdsSubDir(): void { $filesNode1 = $this->getMockBuilder(Folder::class) ->disableOriginalConstructor() ->getMock(); $filesNode1->expects($this->once()) ->method('getName') ->willReturn('first node'); $filesNode2 = $this->getMockBuilder(File::class) ->disableOriginalConstructor() ->getMock(); $filesNode2->expects($this->once()) ->method('getName') ->willReturn('second node'); $reportTargetNode = $this->getMockBuilder(Directory::class) ->disableOriginalConstructor() ->getMock(); $reportTargetNode->expects($this->any()) ->method('getPath') ->willReturn('/sub1/sub2'); $subNode = $this->getMockBuilder(Folder::class) ->disableOriginalConstructor() ->getMock(); $this->userFolder->expects($this->once()) ->method('get') ->with('/sub1/sub2') ->willReturn($subNode); $subNode->expects($this->exactly(2)) ->method('getFirstNodeById') ->withConsecutive( ['111'], ['222'], ) ->willReturnOnConsecutiveCalls( $filesNode1, $filesNode2, ); /** @var Directory&MockObject $reportTargetNode */ $result = $this->plugin->findNodesByFileIds($reportTargetNode, ['111', '222']); $this->assertCount(2, $result); $this->assertInstanceOf('\OCA\DAV\Connector\Sabre\Directory', $result[0]); $this->assertEquals('first node', $result[0]->getName()); $this->assertInstanceOf('\OCA\DAV\Connector\Sabre\File', $result[1]); $this->assertEquals('second node', $result[1]->getName()); } public function testPrepareResponses(): void { $requestedProps = ['{DAV:}getcontentlength', '{http://owncloud.org/ns}fileid', '{DAV:}resourcetype']; $fileInfo = $this->createMock(FileInfo::class); $fileInfo->method('isReadable')->willReturn(true); $node1 = $this->getMockBuilder(Directory::class) ->disableOriginalConstructor() ->getMock(); $node2 = $this->getMockBuilder(\OCA\DAV\Connector\Sabre\File::class) ->disableOriginalConstructor() ->getMock(); $node1->expects($this->once()) ->method('getInternalFileId') ->willReturn('111'); $node1->expects($this->any()) ->method('getPath') ->willReturn('/node1'); $node1->method('getFileInfo')->willReturn($fileInfo); $node2->expects($this->once()) ->method('getInternalFileId') ->willReturn('222'); $node2->expects($this->once()) ->method('getSize') ->willReturn(1024); $node2->expects($this->any()) ->method('getPath') ->willReturn('/sub/node2'); $node2->method('getFileInfo')->willReturn($fileInfo); $config = $this->getMockBuilder(IConfig::class) ->disableOriginalConstructor() ->getMock(); $validator = $this->createMock(IFilenameValidator::class); $this->server->addPlugin( new FilesPlugin( $this->tree, $config, $this->createMock(IRequest::class), $this->previewManager, $this->createMock(IUserSession::class), $validator, ) ); $this->plugin->initialize($this->server); $responses = $this->plugin->prepareResponses('/files/username', $requestedProps, [$node1, $node2]); $this->assertCount(2, $responses); $this->assertEquals('http://example.com/owncloud/remote.php/dav/files/username/node1', $responses[0]->getHref()); $this->assertEquals('http://example.com/owncloud/remote.php/dav/files/username/sub/node2', $responses[1]->getHref()); $props1 = $responses[0]->getResponseProperties(); $this->assertEquals('111', $props1[200]['{http://owncloud.org/ns}fileid']); $this->assertNull($props1[404]['{DAV:}getcontentlength']); $this->assertInstanceOf('\Sabre\DAV\Xml\Property\ResourceType', $props1[200]['{DAV:}resourcetype']); $resourceType1 = $props1[200]['{DAV:}resourcetype']->getValue(); $this->assertEquals('{DAV:}collection', $resourceType1[0]); $props2 = $responses[1]->getResponseProperties(); $this->assertEquals('1024', $props2[200]['{DAV:}getcontentlength']); $this->assertEquals('222', $props2[200]['{http://owncloud.org/ns}fileid']); $this->assertInstanceOf('\Sabre\DAV\Xml\Property\ResourceType', $props2[200]['{DAV:}resourcetype']); $this->assertCount(0, $props2[200]['{DAV:}resourcetype']->getValue()); } public function testProcessFilterRulesSingle(): void { $this->groupManager->expects($this->any()) ->method('isAdmin') ->willReturn(true); $rules = [ ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '123'], ]; $filesNode1 = $this->createMock(File::class); $filesNode1->expects($this->any()) ->method('getSize') ->willReturn(12); $filesNode2 = $this->createMock(Folder::class); $filesNode2->expects($this->any()) ->method('getSize') ->willReturn(10); $tag123 = $this->createMock(ISystemTag::class); $tag123->expects($this->any()) ->method('getName') ->willReturn('OneTwoThree'); $tag123->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $this->tagManager->expects($this->once()) ->method('getTagsByIds') ->with(['123']) ->willReturn([$tag123]); $this->userFolder->expects($this->once()) ->method('searchBySystemTag') ->with('OneTwoThree') ->willReturn([$filesNode1, $filesNode2]); $this->assertEquals([$filesNode1, $filesNode2], $this->invokePrivate($this->plugin, 'processFilterRulesForFileNodes', [$rules, 0, 0])); } public function testProcessFilterRulesAndCondition(): void { $this->groupManager->expects($this->any()) ->method('isAdmin') ->willReturn(true); $filesNode1 = $this->createMock(File::class); $filesNode1->expects($this->any()) ->method('getSize') ->willReturn(12); $filesNode1->expects($this->any()) ->method('getId') ->willReturn(111); $filesNode2 = $this->createMock(Folder::class); $filesNode2->expects($this->any()) ->method('getSize') ->willReturn(10); $filesNode2->expects($this->any()) ->method('getId') ->willReturn(222); $filesNode3 = $this->createMock(File::class); $filesNode3->expects($this->any()) ->method('getSize') ->willReturn(14); $filesNode3->expects($this->any()) ->method('getId') ->willReturn(333); $tag123 = $this->createMock(ISystemTag::class); $tag123->expects($this->any()) ->method('getName') ->willReturn('OneTwoThree'); $tag123->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $tag456 = $this->createMock(ISystemTag::class); $tag456->expects($this->any()) ->method('getName') ->willReturn('FourFiveSix'); $tag456->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $this->tagManager->expects($this->once()) ->method('getTagsByIds') ->with(['123', '456']) ->willReturn([$tag123, $tag456]); $this->userFolder->expects($this->exactly(2)) ->method('searchBySystemTag') ->withConsecutive( ['OneTwoThree'], ['FourFiveSix'], ) ->willReturnOnConsecutiveCalls( [$filesNode1, $filesNode2], [$filesNode2, $filesNode3], ); $rules = [ ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '123'], ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '456'], ]; $this->assertEquals([$filesNode2], array_values($this->invokePrivate($this->plugin, 'processFilterRulesForFileNodes', [$rules, null, null]))); } public function testProcessFilterRulesAndConditionWithOneEmptyResult(): void { $this->groupManager->expects($this->any()) ->method('isAdmin') ->willReturn(true); $filesNode1 = $this->createMock(File::class); $filesNode1->expects($this->any()) ->method('getSize') ->willReturn(12); $filesNode1->expects($this->any()) ->method('getId') ->willReturn(111); $filesNode2 = $this->createMock(Folder::class); $filesNode2->expects($this->any()) ->method('getSize') ->willReturn(10); $filesNode2->expects($this->any()) ->method('getId') ->willReturn(222); $tag123 = $this->createMock(ISystemTag::class); $tag123->expects($this->any()) ->method('getName') ->willReturn('OneTwoThree'); $tag123->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $tag456 = $this->createMock(ISystemTag::class); $tag456->expects($this->any()) ->method('getName') ->willReturn('FourFiveSix'); $tag456->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $this->tagManager->expects($this->once()) ->method('getTagsByIds') ->with(['123', '456']) ->willReturn([$tag123, $tag456]); $this->userFolder->expects($this->exactly(2)) ->method('searchBySystemTag') ->withConsecutive( ['OneTwoThree'], ['FourFiveSix'], ) ->willReturnOnConsecutiveCalls( [$filesNode1, $filesNode2], [], ); $rules = [ ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '123'], ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '456'], ]; $this->assertEquals([], $this->invokePrivate($this->plugin, 'processFilterRulesForFileNodes', [$rules, null, null])); } public function testProcessFilterRulesAndConditionWithFirstEmptyResult(): void { $this->groupManager->expects($this->any()) ->method('isAdmin') ->willReturn(true); $filesNode1 = $this->createMock(File::class); $filesNode1->expects($this->any()) ->method('getSize') ->willReturn(12); $filesNode1->expects($this->any()) ->method('getId') ->willReturn(111); $filesNode2 = $this->createMock(Folder::class); $filesNode2->expects($this->any()) ->method('getSize') ->willReturn(10); $filesNode2->expects($this->any()) ->method('getId') ->willReturn(222); $tag123 = $this->createMock(ISystemTag::class); $tag123->expects($this->any()) ->method('getName') ->willReturn('OneTwoThree'); $tag123->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $tag456 = $this->createMock(ISystemTag::class); $tag456->expects($this->any()) ->method('getName') ->willReturn('FourFiveSix'); $tag456->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $this->tagManager->expects($this->once()) ->method('getTagsByIds') ->with(['123', '456']) ->willReturn([$tag123, $tag456]); $this->userFolder->expects($this->once()) ->method('searchBySystemTag') ->with('OneTwoThree') ->willReturnOnConsecutiveCalls( [], [$filesNode1, $filesNode2], ); $rules = [ ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '123'], ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '456'], ]; $this->assertEquals([], $this->invokePrivate($this->plugin, 'processFilterRulesForFileNodes', [$rules, null, null])); } public function testProcessFilterRulesAndConditionWithEmptyMidResult(): void { $this->groupManager->expects($this->any()) ->method('isAdmin') ->willReturn(true); $filesNode1 = $this->createMock(File::class); $filesNode1->expects($this->any()) ->method('getSize') ->willReturn(12); $filesNode1->expects($this->any()) ->method('getId') ->willReturn(111); $filesNode2 = $this->createMock(Folder::class); $filesNode2->expects($this->any()) ->method('getSize') ->willReturn(10); $filesNode2->expects($this->any()) ->method('getId') ->willReturn(222); $filesNode3 = $this->createMock(Folder::class); $filesNode3->expects($this->any()) ->method('getSize') ->willReturn(13); $filesNode3->expects($this->any()) ->method('getId') ->willReturn(333); $tag123 = $this->createMock(ISystemTag::class); $tag123->expects($this->any()) ->method('getName') ->willReturn('OneTwoThree'); $tag123->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $tag456 = $this->createMock(ISystemTag::class); $tag456->expects($this->any()) ->method('getName') ->willReturn('FourFiveSix'); $tag456->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $tag789 = $this->createMock(ISystemTag::class); $tag789->expects($this->any()) ->method('getName') ->willReturn('SevenEightNein'); $tag789->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $this->tagManager->expects($this->once()) ->method('getTagsByIds') ->with(['123', '456', '789']) ->willReturn([$tag123, $tag456, $tag789]); $this->userFolder->expects($this->exactly(2)) ->method('searchBySystemTag') ->withConsecutive(['OneTwoThree'], ['FourFiveSix'], ['SevenEightNein']) ->willReturnOnConsecutiveCalls( [$filesNode1, $filesNode2], [$filesNode3], [$filesNode1, $filesNode2], ); $rules = [ ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '123'], ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '456'], ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '789'], ]; $this->assertEquals([], array_values($this->invokePrivate($this->plugin, 'processFilterRulesForFileNodes', [$rules, null, null]))); } public function testProcessFilterRulesInvisibleTagAsAdmin(): void { $this->groupManager->expects($this->any()) ->method('isAdmin') ->willReturn(true); $filesNode1 = $this->createMock(File::class); $filesNode1->expects($this->any()) ->method('getSize') ->willReturn(12); $filesNode1->expects($this->any()) ->method('getId') ->willReturn(111); $filesNode2 = $this->createMock(Folder::class); $filesNode2->expects($this->any()) ->method('getSize') ->willReturn(10); $filesNode2->expects($this->any()) ->method('getId') ->willReturn(222); $filesNode3 = $this->createMock(Folder::class); $filesNode3->expects($this->any()) ->method('getSize') ->willReturn(13); $filesNode3->expects($this->any()) ->method('getId') ->willReturn(333); $tag123 = $this->createMock(ISystemTag::class); $tag123->expects($this->any()) ->method('getName') ->willReturn('OneTwoThree'); $tag123->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $tag456 = $this->createMock(ISystemTag::class); $tag456->expects($this->any()) ->method('getName') ->willReturn('FourFiveSix'); $tag456->expects($this->any()) ->method('isUserVisible') ->willReturn(false); $this->tagManager->expects($this->once()) ->method('getTagsByIds') ->with(['123', '456']) ->willReturn([$tag123, $tag456]); $this->userFolder->expects($this->exactly(2)) ->method('searchBySystemTag') ->withConsecutive(['OneTwoThree'], ['FourFiveSix']) ->willReturnOnConsecutiveCalls( [$filesNode1, $filesNode2], [$filesNode2, $filesNode3], ); $rules = [ ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '123'], ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '456'], ]; $this->assertEquals([$filesNode2], array_values($this->invokePrivate($this->plugin, 'processFilterRulesForFileNodes', [$rules, null, null]))); } public function testProcessFilterRulesInvisibleTagAsUser(): void { $this->expectException(TagNotFoundException::class); $this->groupManager->expects($this->any()) ->method('isAdmin') ->willReturn(false); $tag123 = $this->createMock(ISystemTag::class); $tag123->expects($this->any()) ->method('getName') ->willReturn('OneTwoThree'); $tag123->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $tag456 = $this->createMock(ISystemTag::class); $tag456->expects($this->any()) ->method('getName') ->willReturn('FourFiveSix'); $tag456->expects($this->any()) ->method('isUserVisible') ->willReturn(false); $this->tagManager->expects($this->once()) ->method('getTagsByIds') ->with(['123', '456']) ->willThrowException(new TagNotFoundException()); $this->userFolder->expects($this->never()) ->method('searchBySystemTag'); $rules = [ ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '123'], ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '456'], ]; $this->invokePrivate($this->plugin, 'processFilterRulesForFileNodes', [$rules, null, null]); } public function testProcessFilterRulesVisibleTagAsUser(): void { $this->groupManager->expects($this->any()) ->method('isAdmin') ->willReturn(false); $tag1 = $this->createMock(ISystemTag::class); $tag1->expects($this->any()) ->method('getId') ->willReturn('123'); $tag1->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $tag1->expects($this->any()) ->method('getName') ->willReturn('OneTwoThree'); $tag2 = $this->createMock(ISystemTag::class); $tag2->expects($this->any()) ->method('getId') ->willReturn('123'); $tag2->expects($this->any()) ->method('isUserVisible') ->willReturn(true); $tag2->expects($this->any()) ->method('getName') ->willReturn('FourFiveSix'); $this->tagManager->expects($this->once()) ->method('getTagsByIds') ->with(['123', '456']) ->willReturn([$tag1, $tag2]); $filesNode1 = $this->createMock(File::class); $filesNode1->expects($this->any()) ->method('getId') ->willReturn(111); $filesNode1->expects($this->any()) ->method('getSize') ->willReturn(12); $filesNode2 = $this->createMock(Folder::class); $filesNode2->expects($this->any()) ->method('getId') ->willReturn(222); $filesNode2->expects($this->any()) ->method('getSize') ->willReturn(10); $filesNode3 = $this->createMock(Folder::class); $filesNode3->expects($this->any()) ->method('getId') ->willReturn(333); $filesNode3->expects($this->any()) ->method('getSize') ->willReturn(33); $this->tagManager->expects($this->once()) ->method('getTagsByIds') ->with(['123', '456']) ->willReturn([$tag1, $tag2]); // main assertion: only user visible tags are being passed through. $this->userFolder->expects($this->exactly(2)) ->method('searchBySystemTag') ->withConsecutive(['OneTwoThree'], ['FourFiveSix']) ->willReturnOnConsecutiveCalls( [$filesNode1, $filesNode2], [$filesNode2, $filesNode3], ); $rules = [ ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '123'], ['name' => '{http://owncloud.org/ns}systemtag', 'value' => '456'], ]; $this->assertEquals([$filesNode2], array_values($this->invokePrivate($this->plugin, 'processFilterRulesForFileNodes', [$rules, null, null]))); } public function testProcessFavoriteFilter(): void { $rules = [ ['name' => '{http://owncloud.org/ns}favorite', 'value' => '1'], ]; $this->privateTags->expects($this->once()) ->method('getFavorites') ->willReturn(['456', '789']); $this->assertEquals(['456', '789'], array_values($this->invokePrivate($this->plugin, 'processFilterRulesForFileIDs', [$rules]))); } public function filesBaseUriProvider() { return [ ['', '', ''], ['files/username', '', '/files/username'], ['files/username/test', '/test', '/files/username'], ['files/username/test/sub', '/test/sub', '/files/username'], ['test', '/test', ''], ]; } /** * @dataProvider filesBaseUriProvider */ public function testFilesBaseUri($uri, $reportPath, $expectedUri): void { $this->assertEquals($expectedUri, $this->invokePrivate($this->plugin, 'getFilesBaseUri', [$uri, $reportPath])); } }