diff options
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/it_xml.t | 35 | 
1 files changed, 21 insertions, 14 deletions
diff --git a/tests/it_xml.t b/tests/it_xml.t index f74c54b..d74fadf 100755 --- a/tests/it_xml.t +++ b/tests/it_xml.t @@ -5,13 +5,14 @@  function match($xmldata, $expected, $name, $prefix = "", $p = array())  { -	$classname = $prefix ? ($prefix . "_xml") : "it_xml"; +	$classname = ($prefix ?: "it") . "_xml";  	$varname  = $prefix . "foo";  	$xmldata = "<root>$xmldata</root>";  	$xml = new $classname($xmldata, $p); +	$mod_utf8 = $p['encoding'] != "iso-8859-1" ? "u" : "";  	is( -		preg_replace('/[#\s]+/', " ", print_r($xml->$varname, true)), +		preg_replace('/[#\s]+/' . $mod_utf8, " ", print_r($xml->$varname, true)),  		$expected,  		"$name (string)"  	); @@ -24,11 +25,10 @@ function match($xmldata, $expected, $name, $prefix = "", $p = array())  	fclose($tmpfile);  	is( -		preg_replace('/[#\s]+/', " ", print_r($xml->$varname, true)), +		preg_replace('/[#\s]+/' . $mod_utf8, " ", print_r($xml->$varname, true)),  		$expected,  		"$name (file)"  	); -  }  match( @@ -44,8 +44,8 @@ match(  );  match( -	'<foo title="Zürich">Stüssihofstadt</foo>', -	'foo Object ( [attr] => Array ( [title] => Zürich ) [val] => Stüssihofstadt ) ', +	'<foo title="Zürich">Stüssihofstadt</foo>', +	'foo Object ( [attr] => Array ( [title] => Zürich ) [val] => Stüssihofstadt ) ',  	'simple tag with latin1 content and attribute'  ); @@ -62,26 +62,33 @@ match(  );  match( -	'<foo>&amp; <a> &amp; <b> &amp; <c> ü</foo>', -	'foo Object ( [val] => & <a> & <b> & <c> ü ) ', -	'Predecode illegal entities while keeping properly encoded ones' +	'<foo>x ü y</foo>', +	utf8_decode('foo Object ( [val] => x ü y ) '), +	'Manual encoding override', +	"", +	array('encoding' => "iso-8859-1")  );  match(  	'<foo>&amp; <a> &amp; <b> &amp; <c> ü</foo>', -	utf8_encode('foo Object ( [val] => & <a> & <b> & <c> ü ) '), -	'Predecode illegal entities while keeping properly encoded ones (UTF-8)', -	"", -	array('encoding' => "UTF-8") +	'foo Object ( [val] => & <a> & <b> & <c> ü ) ', +	'Predecode illegal entities while keeping properly encoded ones',  ); +match( +	'<foo>&amp; <a> &amp; <b> &amp; <c> ü</foo>', +	utf8_decode('foo Object ( [val] => & <a> & <b> & <c> ü ) '), +	'Predecode illegal entities while keeping properly encoded ones (iso-8859-1)', +	"", +	array('encoding' => "iso-8859-1") +);  match(  	"<foo>a\x05b</foo>",  	'foo Object ( [val] => a b ) ',  	'Illegal latin 1 character',  	"", -	array('encoding' => "ISO-8859-1") +	array('encoding' => "iso-8859-1")  );  # Test inheritance  |