diff options
author | Antonio Diaz Ruiz <dejalatele@gmail.com> | 2013-06-14 23:11:08 +0200 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2013-08-10 18:01:54 -0700 |
commit | 24f36934ad4b9d00a4c96da252497a4091bb28e6 (patch) | |
tree | 502647d53f2e096cd058f225bfe8ebfda3c74838 /ext/dom/tests/domdocumentload_test_method_savexml.php | |
parent | 473d66553d64f1b76ba969eabb105b1fdc7497b1 (diff) | |
download | php-git-24f36934ad4b9d00a4c96da252497a4091bb28e6.tar.gz |
Adds files: error 1 to 5 and variation 1 to 4
tests for error1: not well formed xml
tests for error2: not well formed xml attribute without colon
tests for error2: not well formed xml, typo
tests for error4: wrong xml version
tests for error5: extra content at the end of the doc
tests libxml_dtd_load
tests libxml_dtd_valid
tests for libdtd_noerror
tests for LIBXML_DTDATTR, LIBXML_NOCDATA, LIBXML_NOENT and LIBXML_NOBLANKS
the basic behavior
fix comments
Diffstat (limited to 'ext/dom/tests/domdocumentload_test_method_savexml.php')
-rw-r--r-- | ext/dom/tests/domdocumentload_test_method_savexml.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ext/dom/tests/domdocumentload_test_method_savexml.php b/ext/dom/tests/domdocumentload_test_method_savexml.php new file mode 100644 index 0000000000..8ffd944524 --- /dev/null +++ b/ext/dom/tests/domdocumentload_test_method_savexml.php @@ -0,0 +1,14 @@ +<?php +include(dirname(__FILE__) . '/domdocumentload_utilities.php'); + +$doc = new DOMDocument(); + +$libxml_options = libxml_options_to_int(getenv('LOAD_OPTIONS')); + +$result = $doc->load(dirname(__FILE__) . getenv('XML_FILE'), $libxml_options); + +$expectedResult = (bool) getenv('EXPECTED_RESULT'); +assert('$result === $expectedResult'); + +echo $doc->saveXML(); +?> |