Skip to content
Snippets Groups Projects
Commit 20507dcc authored by kaloyane's avatar kaloyane
Browse files

bugfix: listMatchingNodes() should also return matching directories to be...

bugfix: listMatchingNodes() should also return matching directories to be compatible with the results coming from the PathInfoDB

SVN: 21135
parent 43972653
No related branches found
No related tags found
No related merge requests found
......@@ -207,15 +207,13 @@ class DefaultFileBasedHierarchicalContent implements IHierarchicalContent
assert dirNode.isDirectory() : "expected a directory node, got: " + dirNode;
for (IHierarchicalContentNode childNode : dirNode.getChildNodes())
{
if (filter.accept(childNode))
{
result.add(childNode);
}
if (childNode.isDirectory())
{
findMatchingNodes(childNode, filter, result);
} else
{
if (filter.accept(childNode))
{
result.add(childNode);
}
}
}
}
......
......@@ -343,12 +343,13 @@ public class DefaultFileBasedHierarchicalContentTest extends AbstractFileSystemT
// matches in levels > 1
List<IHierarchicalContentNode> matchingSubDirFiles =
rootContent.listMatchingNodes("subDir/.*");
assertEquals(4, matchingSubDirFiles.size());
assertEquals(5, matchingSubDirFiles.size());
sortNodes(matchingSubDirFiles);
checkNodeMatchesFile(matchingSubDirFiles.get(0), subFile1);
checkNodeMatchesFile(matchingSubDirFiles.get(1), subFile2);
checkNodeMatchesFile(matchingSubDirFiles.get(2), subFile3);
checkNodeMatchesFile(matchingSubDirFiles.get(3), subSubFile);
checkNodeMatchesFile(matchingSubDirFiles.get(0), subSubDir);
checkNodeMatchesFile(matchingSubDirFiles.get(1), subFile1);
checkNodeMatchesFile(matchingSubDirFiles.get(2), subFile2);
checkNodeMatchesFile(matchingSubDirFiles.get(3), subFile3);
checkNodeMatchesFile(matchingSubDirFiles.get(4), subSubFile);
context.assertIsSatisfied();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment