Browse Source

Incorrect recursion in DOMUtil.listChildNodes()

Bugzilla 40918.



git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@472761 13f79535-47bb-0310-9956-ffa450edef68
master
Antoine Levy-Lambert 18 years ago
parent
commit
92b63d872f
4 changed files with 61 additions and 1 deletions
  1. +3
    -0
      WHATSNEW
  2. +8
    -0
      src/etc/testcases/taskdefs/optional/junit/matches.xml
  3. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/junit/DOMUtil.java
  4. +49
    -0
      src/tests/junit/org/apache/tools/ant/taskdefs/optional/junit/DOMUtilTest.java

+ 3
- 0
WHATSNEW View File

@@ -10,6 +10,9 @@ Fixed bugs:
* docletpath attribute of javadoc ignored. * docletpath attribute of javadoc ignored.
Bugzilla 40900. Bugzilla 40900.


* Incorrect recursion in DOMUtil.listChildNodes()
Bugzilla 40918.

Other changes: Other changes:
-------------- --------------




+ 8
- 0
src/etc/testcases/taskdefs/optional/junit/matches.xml View File

@@ -0,0 +1,8 @@
<matches>
<foo>
<abc>
<foo/>
<foo/>
</abc>
</foo>
</matches>

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/optional/junit/DOMUtil.java View File

@@ -73,7 +73,7 @@ public final class DOMUtil {
} }
if (recurse) { if (recurse) {
NodeList recmatches = listChildNodes(child, filter, recurse); NodeList recmatches = listChildNodes(child, filter, recurse);
final int reclength = matches.getLength();
final int reclength = recmatches.getLength();
for (int j = 0; j < reclength; j++) { for (int j = 0; j < reclength; j++) {
matches.addElement(recmatches.item(i)); matches.addElement(recmatches.item(i));
} }


+ 49
- 0
src/tests/junit/org/apache/tools/ant/taskdefs/optional/junit/DOMUtilTest.java View File

@@ -0,0 +1,49 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.tools.ant.taskdefs.optional.junit;
import junit.framework.TestCase;
import javax.xml.parsers.DocumentBuilder;
import org.apache.tools.ant.util.JAXPUtils;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
import org.w3c.dom.Node;
import org.xml.sax.SAXException;
import java.io.InputStream;
import java.io.IOException;
public class DOMUtilTest extends TestCase {
public void testListChildNodes() throws SAXException, IOException {
DocumentBuilder db = JAXPUtils.getDocumentBuilder();
InputStream is = this.getClass().getClassLoader().getResourceAsStream("taskdefs/optional/junit/matches.xml");
Document doc = db.parse(is);
NodeList nl = DOMUtil.listChildNodes(doc.getFirstChild(), new FooNodeFilter(), true);
assertEquals(nl.getLength(), 3);
}
public class FooNodeFilter implements DOMUtil.NodeFilter {
public boolean accept(Node node) {
if (node.getNodeName().equals("foo")) {
return true;
}
return false; //To change body of implemented methods use File | Settings | File Templates.
}
}
}

Loading…
Cancel
Save