]> granicus.if.org Git - php/commitdiff
DOM tests from TestFest
authorAnt Phillips <ant@php.net>
Tue, 27 May 2008 12:44:53 +0000 (12:44 +0000)
committerAnt Phillips <ant@php.net>
Tue, 27 May 2008 12:44:53 +0000 (12:44 +0000)
ext/dom/tests/dom_comment_basic.phpt [new file with mode: 0644]
ext/dom/tests/dom_comment_variation.phpt [new file with mode: 0644]

diff --git a/ext/dom/tests/dom_comment_basic.phpt b/ext/dom/tests/dom_comment_basic.phpt
new file mode 100644 (file)
index 0000000..cb029ed
--- /dev/null
@@ -0,0 +1,46 @@
+--TEST--
+DOM Comment : Basic Functionality
+--SKIPIF--
+<?php
+require_once('skipif.inc');
+?>
+--FILE--
+<?php
+
+$xml = <<< EOXML
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<courses>
+       <!-- Hello World! -->
+</courses>
+EOXML;
+
+$dom = new DOMDocument();
+$dom->loadXML($xml);
+$root = $dom->documentElement;
+var_dump($root->hasChildNodes());
+$children = $root->childNodes;
+
+for ($index = 0; $index < $children->length; $index++) {
+       echo "--- child $index ---\n";
+       $current = $children->item($index);
+       var_dump($current);
+       var_dump($current->textContent);
+}
+
+--EXPECTF--
+bool(true)
+--- child 0 ---
+object(DOMText)#%d (0) {
+}
+string(2) "
+       "
+--- child 1 ---
+object(DOMComment)#%d (0) {
+}
+string(14) " Hello World! "
+--- child 2 ---
+object(DOMText)#%d (0) {
+}
+string(1) "
+"
+
diff --git a/ext/dom/tests/dom_comment_variation.phpt b/ext/dom/tests/dom_comment_variation.phpt
new file mode 100644 (file)
index 0000000..bef0ef1
--- /dev/null
@@ -0,0 +1,33 @@
+--TEST--
+DOM Comment : Variation
+--SKIPIF--
+<?php
+require_once('skipif.inc');
+?>
+--FILE--
+<?php
+
+$xml = <<< EOXML
+<?xml version="1.0" encoding="ISO-8859-1"?><courses><!-- Hello World! --></courses>
+EOXML;
+
+$dom = new DOMDocument();
+$dom->loadXML($xml);
+$root = $dom->documentElement;
+var_dump($root->hasChildNodes());
+$children = $root->childNodes;
+
+for ($index = 0; $index < $children->length; $index++) {
+       echo "--- child $index ---\n";
+       $current = $children->item($index);
+       var_dump($current);
+       var_dump($current->textContent);
+}
+
+--EXPECTF--
+bool(true)
+--- child 0 ---
+object(DOMComment)#%d (0) {
+}
+string(14) " Hello World! "
+