File: test_invalidxmlparse.phpt

package info (click to toggle)
php-pear 1%3A1.10.16%2Bsubmodules%2Bnotgz-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,576 kB
  • sloc: php: 52,994; ansic: 39,986; xml: 33,278; yacc: 677; pascal: 452; makefile: 122; sh: 114
file content (36 lines) | stat: -rw-r--r-- 1,176 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
--TEST--
PEAR_PackageFile_Parser_v1->parse() invalid xml
--SKIPIF--
<?php
if (!getenv('PHP_PEAR_RUNTESTS')) {
    echo 'skip';
}
?>
--FILE--
<?php
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'setup.php.inc';
$pathtopackagexml = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'package.xml';
$result = &$parser->parse('<xmlbad', PEAR_VALIDATE_NORMAL, $pathtopackagexml);
/*
if (version_compare(phpversion(), '5.0.0', '<')) {
    $message = 'XML error: unclosed token at line 1';
} elseif (version_compare(phpversion(), '5.0.3', '<')) {
    $message = 'XML error: XML_ERR_GT_REQUIRED at line 1';
} else {
    $message = 'XML error: > required at line 1';
}
*/
// Ubuntu used by Github Actions seems to have the above difference backported, mostly
$message = 'XML error: > required at line 1'; 		// got this on 5.6 and up
if (version_compare(phpversion(), '5.6.0', '<')) {
    $message = 'XML error: unclosed token at line 1'; 	// got this on 5.5 & 5.4
}
$phpunit->assertErrors(array(
    'message' => $message,
    'package' => 'PEAR_Error',
),'invalid xml parse');
$phpunit->assertPEARError($result, 'return of invalid parse');
echo 'tests done';
?>
--EXPECT--
tests done