]> granicus.if.org Git - php/commitdiff
Tests from PHP London TestFest 2008
authorSteve Seear <stevseea@php.net>
Mon, 19 May 2008 12:22:23 +0000 (12:22 +0000)
committerSteve Seear <stevseea@php.net>
Mon, 19 May 2008 12:22:23 +0000 (12:22 +0000)
ext/dom/DOMComment_appendData_basic.phpt [new file with mode: 0644]
ext/dom/DOMElement_hasAttributes_basic.phpt [new file with mode: 0644]

diff --git a/ext/dom/DOMComment_appendData_basic.phpt b/ext/dom/DOMComment_appendData_basic.phpt
new file mode 100644 (file)
index 0000000..c756f16
--- /dev/null
@@ -0,0 +1,21 @@
+--TEST--
+Test adding data to a DOMComment
+--CREDITS--
+Andrew Larssen <al@larssen.org>
+London TestFest 2008
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
+--FILE--
+<?php
+
+$dom = new DomDocument();
+$comment = $dom->createComment('test-comment');
+$comment->appendData('-more-data');
+$dom->appendChild($comment);
+$dom->saveXML();
+echo $dom->saveXML();
+
+?>
+--EXPECTF--
+<?xml version="1.0"?>
+<!--test-comment-more-data-->
\ No newline at end of file
diff --git a/ext/dom/DOMElement_hasAttributes_basic.phpt b/ext/dom/DOMElement_hasAttributes_basic.phpt
new file mode 100644 (file)
index 0000000..f0d0c35
--- /dev/null
@@ -0,0 +1,49 @@
+--TEST--
+DOMNode: hasAttributes() 
+--CREDITS--
+James Lewis <james@s-1.com>
+#TestFest 2008
+--FILE--
+<?php
+require_once("dom_test.inc");
+
+$dom = new DOMDocument;
+$dom->loadXML($xmlstr);
+if(!$dom) {
+  echo "Error while parsing the document\n";
+  exit;
+}
+
+$element = $dom->documentElement;
+
+echo "Verify that we have a DOMElement object:\n";
+var_dump($element);
+
+echo "\nElement should have attributes:\n";
+var_dump($element->hasAttributes()); 
+
+$nodelist=$dom->getElementsByTagName('tbody') ; 
+$element = $nodelist->item(0);
+
+echo "\nVerify that we have a DOMElement object:\n";
+var_dump($element);
+
+echo "\nElement should have no attributes:\n"; 
+var_dump($element->hasAttributes()) 
+
+
+?>
+--EXPECTF--
+Verify that we have a DOMElement object:
+object(DOMElement)#%d (0) {
+}
+
+Element should have attributes:
+bool(true)
+
+Verify that we have a DOMElement object:
+object(DOMElement)#%d (0) {
+}
+
+Element should have no attributes:
+bool(false)