mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Test fixes for libxml2 2.12.0
This commit is contained in:
parent
706e51ad8a
commit
061058a9b1
11 changed files with 128 additions and 7 deletions
1
NEWS
1
NEWS
|
@ -23,6 +23,7 @@ PHP NEWS
|
||||||
|
|
||||||
- LibXML:
|
- LibXML:
|
||||||
. Fixed bug GH-12702 (libxml2 2.12.0 issue building from src). (nono303)
|
. Fixed bug GH-12702 (libxml2 2.12.0 issue building from src). (nono303)
|
||||||
|
. Fixed test failures for libxml2 2.12.0. (nielsdos)
|
||||||
|
|
||||||
- MySQLnd:
|
- MySQLnd:
|
||||||
. Avoid using uninitialised struct. (mikhainin)
|
. Avoid using uninitialised struct. (mikhainin)
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
--TEST--
|
--TEST--
|
||||||
Test DOMDocument::loadXML() detects not-well formed XML
|
Test DOMDocument::loadXML() detects not-well formed XML
|
||||||
|
--SKIPIF--
|
||||||
|
<?php
|
||||||
|
if (LIBXML_VERSION >= 21200) die('skip libxml2 test variant for version < 2.12');
|
||||||
|
?>
|
||||||
--DESCRIPTION--
|
--DESCRIPTION--
|
||||||
This test verifies the method detects an opening and ending tag mismatch
|
This test verifies the method detects an opening and ending tag mismatch
|
||||||
Environment variables used in the test:
|
Environment variables used in the test:
|
||||||
|
|
26
ext/dom/tests/DOMDocument_loadXML_error1_gte2_12.phpt
Normal file
26
ext/dom/tests/DOMDocument_loadXML_error1_gte2_12.phpt
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
--TEST--
|
||||||
|
Test DOMDocument::loadXML() detects not-well formed XML
|
||||||
|
--SKIPIF--
|
||||||
|
<?php
|
||||||
|
if (LIBXML_VERSION < 21200) die('skip libxml2 test variant for version >= 2.12');
|
||||||
|
?>
|
||||||
|
--DESCRIPTION--
|
||||||
|
This test verifies the method detects an opening and ending tag mismatch
|
||||||
|
Environment variables used in the test:
|
||||||
|
- XML_FILE: the xml file to load
|
||||||
|
- LOAD_OPTIONS: the second parameter to pass to the method
|
||||||
|
- EXPECTED_RESULT: the expected result
|
||||||
|
--CREDITS--
|
||||||
|
Antonio Diaz Ruiz <dejalatele@gmail.com>
|
||||||
|
--EXTENSIONS--
|
||||||
|
dom
|
||||||
|
--ENV--
|
||||||
|
XML_FILE=/not_well_formed.xml
|
||||||
|
LOAD_OPTIONS=0
|
||||||
|
EXPECTED_RESULT=0
|
||||||
|
--FILE_EXTERNAL--
|
||||||
|
domdocumentloadxml_test_method.inc
|
||||||
|
--EXPECTF--
|
||||||
|
Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book %s
|
||||||
|
|
||||||
|
Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book line (4|5) and books%r %s
|
|
@ -2,7 +2,7 @@
|
||||||
Test DOMDocument::loadXML() detects not-well formed XML
|
Test DOMDocument::loadXML() detects not-well formed XML
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
if (LIBXML_VERSION < 21100) die('skip libxml2 test variant for version >= 2.11');
|
if (LIBXML_VERSION < 21100 || LIBXML_VERSION >= 21200) die('skip libxml2 test variant for version >= 2.11 && <= 2.12');
|
||||||
?>
|
?>
|
||||||
--DESCRIPTION--
|
--DESCRIPTION--
|
||||||
This test verifies the method detects attributes values not closed between " or '
|
This test verifies the method detects attributes values not closed between " or '
|
||||||
|
|
30
ext/dom/tests/DOMDocument_loadXML_error2_gte2_12.phpt
Normal file
30
ext/dom/tests/DOMDocument_loadXML_error2_gte2_12.phpt
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
--TEST--
|
||||||
|
Test DOMDocument::loadXML() detects not-well formed XML
|
||||||
|
--SKIPIF--
|
||||||
|
<?php
|
||||||
|
if (LIBXML_VERSION < 21200) die('skip libxml2 test variant for version >= 2.12');
|
||||||
|
?>
|
||||||
|
--DESCRIPTION--
|
||||||
|
This test verifies the method detects attributes values not closed between " or '
|
||||||
|
Environment variables used in the test:
|
||||||
|
- XML_FILE: the xml file to load
|
||||||
|
- LOAD_OPTIONS: the second parameter to pass to the method
|
||||||
|
- EXPECTED_RESULT: the expected result
|
||||||
|
--CREDITS--
|
||||||
|
Antonio Diaz Ruiz <dejalatele@gmail.com>
|
||||||
|
--EXTENSIONS--
|
||||||
|
dom
|
||||||
|
--ENV--
|
||||||
|
XML_FILE=/not_well_formed2.xml
|
||||||
|
LOAD_OPTIONS=0
|
||||||
|
EXPECTED_RESULT=0
|
||||||
|
--FILE_EXTERNAL--
|
||||||
|
domdocumentloadxml_test_method.inc
|
||||||
|
--EXPECTF--
|
||||||
|
Warning: DOMDocument::loadXML(): AttValue: " or ' expected in Entity, line: 4 in %s on line %d
|
||||||
|
|
||||||
|
Warning: DOMDocument::loadXML(): internal error: xmlParseStartTag: problem parsing attributes in Entity, line: 4 in %s on line %d
|
||||||
|
|
||||||
|
Warning: DOMDocument::loadXML(): Couldn't find end of Start Tag book line 4 in Entity, line: 4 in %s on line %d
|
||||||
|
|
||||||
|
Warning: DOMDocument::loadXML(): Opening and ending tag mismatch: books line 3 and book in Entity, line: 7 in %s on line %d
|
|
@ -1,5 +1,9 @@
|
||||||
--TEST--
|
--TEST--
|
||||||
Test DOMDocument::load() detects not-well formed XML
|
Test DOMDocument::load() detects not-well formed XML
|
||||||
|
--SKIPIF--
|
||||||
|
<?php
|
||||||
|
if (LIBXML_VERSION >= 21200) die('skip libxml2 test variant for version < 2.12');
|
||||||
|
?>
|
||||||
--DESCRIPTION--
|
--DESCRIPTION--
|
||||||
This test verifies the method detects an opening and ending tag mismatch
|
This test verifies the method detects an opening and ending tag mismatch
|
||||||
Environment variables used in the test:
|
Environment variables used in the test:
|
||||||
|
|
26
ext/dom/tests/DOMDocument_load_error1_gte2_12.phpt
Normal file
26
ext/dom/tests/DOMDocument_load_error1_gte2_12.phpt
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
--TEST--
|
||||||
|
Test DOMDocument::load() detects not-well formed XML
|
||||||
|
--SKIPIF--
|
||||||
|
<?php
|
||||||
|
if (LIBXML_VERSION < 21200) die('skip libxml2 test variant for version >= 2.12');
|
||||||
|
?>
|
||||||
|
--DESCRIPTION--
|
||||||
|
This test verifies the method detects an opening and ending tag mismatch
|
||||||
|
Environment variables used in the test:
|
||||||
|
- XML_FILE: the xml file to load
|
||||||
|
- LOAD_OPTIONS: the second parameter to pass to the method
|
||||||
|
- EXPECTED_RESULT: the expected result
|
||||||
|
--CREDITS--
|
||||||
|
Antonio Diaz Ruiz <dejalatele@gmail.com>
|
||||||
|
--EXTENSIONS--
|
||||||
|
dom
|
||||||
|
--ENV--
|
||||||
|
XML_FILE=/not_well_formed.xml
|
||||||
|
LOAD_OPTIONS=0
|
||||||
|
EXPECTED_RESULT=0
|
||||||
|
--FILE_EXTERNAL--
|
||||||
|
domdocumentload_test_method.inc
|
||||||
|
--EXPECTF--
|
||||||
|
Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book %s
|
||||||
|
|
||||||
|
Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book line (4|5) and books%r %s
|
|
@ -2,7 +2,7 @@
|
||||||
Test DOMDocument::load() detects not-well formed
|
Test DOMDocument::load() detects not-well formed
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
if (LIBXML_VERSION < 21100) die('skip libxml2 test variant for version >= 2.11');
|
if (LIBXML_VERSION < 21100 || LIBXML_VERSION >= 21200) die('skip libxml2 test variant for version >= 2.11 && <= 2.12');
|
||||||
?>
|
?>
|
||||||
--DESCRIPTION--
|
--DESCRIPTION--
|
||||||
This test verifies the method detects attributes values not closed between " or '
|
This test verifies the method detects attributes values not closed between " or '
|
||||||
|
|
30
ext/dom/tests/DOMDocument_load_error2_gte2_12.phpt
Normal file
30
ext/dom/tests/DOMDocument_load_error2_gte2_12.phpt
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
--TEST--
|
||||||
|
Test DOMDocument::load() detects not-well formed
|
||||||
|
--SKIPIF--
|
||||||
|
<?php
|
||||||
|
if (LIBXML_VERSION < 21200) die('skip libxml2 test variant for version >= 2.12');
|
||||||
|
?>
|
||||||
|
--DESCRIPTION--
|
||||||
|
This test verifies the method detects attributes values not closed between " or '
|
||||||
|
Environment variables used in the test:
|
||||||
|
- XML_FILE: the xml file to load
|
||||||
|
- LOAD_OPTIONS: the second parameter to pass to the method
|
||||||
|
- EXPECTED_RESULT: the expected result
|
||||||
|
--CREDITS--
|
||||||
|
Antonio Diaz Ruiz <dejalatele@gmail.com>
|
||||||
|
--EXTENSIONS--
|
||||||
|
dom
|
||||||
|
--ENV--
|
||||||
|
XML_FILE=/not_well_formed2.xml
|
||||||
|
LOAD_OPTIONS=0
|
||||||
|
EXPECTED_RESULT=0
|
||||||
|
--FILE_EXTERNAL--
|
||||||
|
domdocumentload_test_method.inc
|
||||||
|
--EXPECTF--
|
||||||
|
Warning: DOMDocument::load(): AttValue: " or ' expected in %s on line %d
|
||||||
|
|
||||||
|
Warning: DOMDocument::load(): internal error: xmlParseStartTag: problem parsing attributes in %s on line %d
|
||||||
|
|
||||||
|
Warning: DOMDocument::load(): Couldn't find end of Start Tag book line 4 in %s on line %d
|
||||||
|
|
||||||
|
Warning: DOMDocument::load(): Opening and ending tag mismatch: books line 3 and book in %s on line %d
|
|
@ -21,6 +21,6 @@ $code = xml_get_error_code($parser);
|
||||||
$error = xml_error_string($code);
|
$error = xml_error_string($code);
|
||||||
echo "xml_parse returned $success, xml_get_error_code = $code, xml_error_string = $error\r\n";
|
echo "xml_parse returned $success, xml_get_error_code = $code, xml_error_string = $error\r\n";
|
||||||
?>
|
?>
|
||||||
--EXPECT--
|
--EXPECTF--
|
||||||
xml_parse returned 1, xml_get_error_code = 0, xml_error_string = No error
|
xml_parse returned 1, xml_get_error_code = 0, xml_error_string = No error
|
||||||
xml_parse returned 0, xml_get_error_code = 5, xml_error_string = Invalid document end
|
%rxml_parse returned 0, xml_get_error_code = 5, xml_error_string = Invalid document end|xml_parse returned 0, xml_get_error_code = 77, xml_error_string = Tag not finished%r
|
||||||
|
|
|
@ -21,9 +21,9 @@ foreach ($xmls as $xml) {
|
||||||
xml_parser_free($xml_parser);
|
xml_parser_free($xml_parser);
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
--EXPECT--
|
--EXPECTF--
|
||||||
int(5)
|
int(%r5|77%r)
|
||||||
string(20) "Invalid document end"
|
string(%d) %r"Invalid document end"|"Tag not finished"%r
|
||||||
int(47)
|
int(47)
|
||||||
string(35) "Processing Instruction not finished"
|
string(35) "Processing Instruction not finished"
|
||||||
int(57)
|
int(57)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue