aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kampmann <programmer@nurfuerspam.de>2012-03-15 10:51:22 +0100
committerAlexander Kampmann <programmer@nurfuerspam.de>2012-03-15 10:51:22 +0100
commit29ade1d9b971bb14746bab5ec57db0e204c9e137 (patch)
tree0dd153d988402e448c772d54c07c9752c297eb9b
parent70709a882594250684c954a21d186877ea6f983c (diff)
downloadvolse-hubzilla-29ade1d9b971bb14746bab5ec57db0e204c9e137.tar.gz
volse-hubzilla-29ade1d9b971bb14746bab5ec57db0e204c9e137.tar.bz2
volse-hubzilla-29ade1d9b971bb14746bab5ec57db0e204c9e137.zip
another test for xmlify
-rw-r--r--tests/xss_filter_test.php23
1 files changed, 22 insertions, 1 deletions
diff --git a/tests/xss_filter_test.php b/tests/xss_filter_test.php
index d7dcf0472..3fb6ac310 100644
--- a/tests/xss_filter_test.php
+++ b/tests/xss_filter_test.php
@@ -27,11 +27,32 @@ class AntiXSSTest extends PHPUnit_Framework_TestCase {
*/
public function testXmlify() {
$text="<tag>I want to break\n this!11!<?hard?></tag>";
- $xml=xmlify($text); //test whether it actually may be part of a xml document
+ $xml=xmlify($text);
$retext=unxmlify($text);
$this->assertEquals($text, $retext);
}
+
+ /**
+ * xmlify and put in a document
+ */
+ public function testXmlifyDocument() {
+ $tag="<tag>I want to break</tag>";
+ $xml=xmlify($tag);
+ $text='<text>'.$xml.'</text>';
+
+ $xml_parser=xml_parser_create();
+ //should be possible to parse it
+ $values=array(); $index=array();
+ $this->assertEquals(1, xml_parse_into_struct($xml_parser, $text, $values, $index));
+
+ $this->assertEquals(array('TEXT'=>array(0)),
+ $index);
+ $this->assertEquals(array(array('tag'=>'TEXT', 'type'=>'complete', 'level'=>1, 'value'=>$tag)),
+ $values);
+
+ xml_parser_free($xml_parser);
+ }
/**
* test hex2bin and reverse