]> granicus.if.org Git - php/commitdiff
No need to fetch external files and endless amount of DTDs for this test
authorHannes Magnusson <bjori@php.net>
Sun, 5 Jun 2011 11:31:18 +0000 (11:31 +0000)
committerHannes Magnusson <bjori@php.net>
Sun, 5 Jun 2011 11:31:18 +0000 (11:31 +0000)
ext/dom/examples/note.dtd
ext/dom/tests/DOMDocument_validate_on_parse_variation.phpt

index 4016eb58111cd5d694e5641d344b0c59ee05b2f8..c2d558eee4eb5c6b7ee5be540e9ffdcf00858b34 100644 (file)
@@ -1,6 +1,6 @@
-<?xml version="1.0" ?>
+<?xml version="1.0" encoding="utf-8" ?>
 <!ELEMENT note (to,from,heading,body)>
 <!ELEMENT to (#PCDATA)>
 <!ELEMENT from (#PCDATA)>
 <!ELEMENT heading (#PCDATA)>
-<!ELEMENT body (#PCDATA)>
\ No newline at end of file
+<!ELEMENT body (#PCDATA)>
index 2395b0134433a77a6c23240dbfc12b2870de262d..403e01aa76bfb90420bf173d2df68253bd90cd2a 100644 (file)
@@ -6,17 +6,14 @@ Hans Zaunere
 --SKIPIF--
 <?php
 require_once('skipif.inc');
-
-// need external DTD/XML docs
-if( @file_get_contents('http://www.php.net/docs.php') === FALSE )
-    exit('skip network not available');
 ?>
 --FILE--
 <?php
 
 require_once('dom_test.inc');
 
-$XMLStringGood = file_get_contents('http://www.php.net/docs.php');
+chdir(__DIR__ . "/../examples");
+$XMLStringGood = file_get_contents('note.xml');
 
 $dom = new DOMDocument;
 $dom->resolveExternals = TRUE;
@@ -27,7 +24,7 @@ $dom->loadXML($XMLStringGood);
 echo "No Error Report Above\n";
 
 $BogusElement = $dom->createElement('NYPHP','DOMinatrix');
-$Body = $dom->getElementsByTagName('body')->item(0);
+$Body = $dom->getElementsByTagName('from')->item(0);
 $Body->appendChild($BogusElement);
 $XMLStringBad = $dom->saveXML();
 
@@ -44,6 +41,6 @@ validateOnParse set to TRUE:
 
 Warning: DOMDocument::loadXML(): No declaration for element NYPHP in Entity, line: %d in %s on line %d
 
-Warning: DOMDocument::loadXML(): Element body content does not follow the DTD, expecting (p | h1 | h2 | h3 | h4 | h5 | h6 | div | ul | ol | dl | pre | hr | blockquote | address | fieldset | table | form | noscript | ins | del | script)*, got (div div div div div NYPHP) in Entity, line: %d in %s on line %d
+Warning: DOMDocument::loadXML(): Element from was declared #PCDATA but contains non text nodes in Entity, line: %d in %s on line %d
 Error Report Above