diff --git a/ext/dom/tests/bug69846.phpt b/ext/dom/tests/bug69846.phpt new file mode 100644 index 00000000000..08e35cdcf6b --- /dev/null +++ b/ext/dom/tests/bug69846.phpt @@ -0,0 +1,162 @@ +--TEST-- +Bug #69846 Segmenation fault (access violation) when iterating over DOMNodeList +--SKIPIF-- + +--FILE-- + + + Value A + Value B + Value C + +'; + +$tmpDomDocument->loadXML($xml); + +$dataNodes = $tmpDomDocument->firstChild->childNodes->item(0)->childNodes; + +var_dump($dataNodes->length); +$datasetDom = new DOMDocument(); + +foreach ($dataNodes AS $node) { + $node = $datasetDom->importNode($node, true); + var_dump($node); +} + +?> +===DONE=== +--EXPECTF-- +int(3) +object(DOMText)#%d (18) { + ["wholeText"]=> + string(3) " + " + ["data"]=> + string(3) " + " + ["length"]=> + int(3) + ["nodeName"]=> + string(5) "#text" + ["nodeValue"]=> + string(3) " + " + ["nodeType"]=> + int(3) + ["parentNode"]=> + NULL + ["childNodes"]=> + NULL + ["firstChild"]=> + NULL + ["lastChild"]=> + NULL + ["previousSibling"]=> + NULL + ["attributes"]=> + NULL + ["ownerDocument"]=> + string(22) "(object value omitted)" + ["namespaceURI"]=> + NULL + ["prefix"]=> + string(0) "" + ["localName"]=> + NULL + ["baseURI"]=> + NULL + ["textContent"]=> + string(3) " + " +} +object(DOMElement)#%d (17) { + ["tagName"]=> + string(5) "form1" + ["schemaTypeInfo"]=> + NULL + ["nodeName"]=> + string(5) "form1" + ["nodeValue"]=> + string(39) " + Value A + Value B + Value C + " + ["nodeType"]=> + int(1) + ["parentNode"]=> + NULL + ["childNodes"]=> + string(22) "(object value omitted)" + ["firstChild"]=> + string(22) "(object value omitted)" + ["lastChild"]=> + string(22) "(object value omitted)" + ["previousSibling"]=> + NULL + ["attributes"]=> + string(22) "(object value omitted)" + ["ownerDocument"]=> + string(22) "(object value omitted)" + ["namespaceURI"]=> + NULL + ["prefix"]=> + string(0) "" + ["localName"]=> + string(5) "form1" + ["baseURI"]=> + NULL + ["textContent"]=> + string(39) " + Value A + Value B + Value C + " +} +object(DOMText)#%d (18) { + ["wholeText"]=> + string(1) " +" + ["data"]=> + string(1) " +" + ["length"]=> + int(1) + ["nodeName"]=> + string(5) "#text" + ["nodeValue"]=> + string(1) " +" + ["nodeType"]=> + int(3) + ["parentNode"]=> + NULL + ["childNodes"]=> + NULL + ["firstChild"]=> + NULL + ["lastChild"]=> + NULL + ["previousSibling"]=> + NULL + ["attributes"]=> + NULL + ["ownerDocument"]=> + string(22) "(object value omitted)" + ["namespaceURI"]=> + NULL + ["prefix"]=> + string(0) "" + ["localName"]=> + NULL + ["baseURI"]=> + NULL + ["textContent"]=> + string(1) " +" +} +===DONE===