diff --git a/tests/include/TextTest.php b/tests/include/TextTest.php index ac1b7d7757..1422ee2ae2 100644 --- a/tests/include/TextTest.php +++ b/tests/include/TextTest.php @@ -249,45 +249,6 @@ class TextTest extends TestCase ); } - /** - *xmlify and unxmlify - */ - public function testXmlify() - { - $text="I want to break\n this!11!"; - $xml=xmlify($text); - $retext=unxmlify($text); - - $this->assertEquals($text, $retext); - } - - /** - * xmlify and put in a document - */ - public function testXmlifyDocument() - { - $tag="I want to break"; - $xml=xmlify($tag); - $text=''.$xml.''; - - $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 */ diff --git a/tests/src/Util/StringsTest.php b/tests/src/Util/StringsTest.php new file mode 100644 index 0000000000..eb5e707a70 --- /dev/null +++ b/tests/src/Util/StringsTest.php @@ -0,0 +1,49 @@ +I want to break\n this!11!"; + $xml=XML::escape($text); + $retext=XML::unescape($text); + $this->assertEquals($text, $retext); + } + + /** + * escape and put in a document + */ + public function testEscapeDocument() + { + $tag="I want to break"; + $xml=XML::escape($tag); + $text=''.$xml.''; + $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); + } +}