diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-18 16:29:36 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-10-18 16:29:36 -0700 |
commit | d55fcd055d878d29864bdf609f6e3f26e24837d0 (patch) | |
tree | d29747f3b2fba12d686084c91136a4dc7b9f52a9 /tests/unit/AntiXSSTest.php | |
parent | 9e3032e919e4778aff99c2fac7b1bb102aa6c934 (diff) | |
parent | c2e299440380f04c55dc4cd77ea8e0ac6d09af53 (diff) | |
download | volse-hubzilla-d55fcd055d878d29864bdf609f6e3f26e24837d0.tar.gz volse-hubzilla-d55fcd055d878d29864bdf609f6e3f26e24837d0.tar.bz2 volse-hubzilla-d55fcd055d878d29864bdf609f6e3f26e24837d0.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'tests/unit/AntiXSSTest.php')
-rw-r--r-- | tests/unit/AntiXSSTest.php | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/tests/unit/AntiXSSTest.php b/tests/unit/AntiXSSTest.php new file mode 100644 index 000000000..b45042a1e --- /dev/null +++ b/tests/unit/AntiXSSTest.php @@ -0,0 +1,73 @@ +<?php +/** + * tests several functions which are used to prevent xss attacks + * + * @package test.util + */ + +use PHPUnit\Framework\TestCase; + +require_once('include/text.php'); + +class AntiXSSTest extends TestCase { + + /** + * test, that tags are escaped + */ + public function testEscapeTags() { + $invalidstring='<submit type="button" onclick="alert(\'failed!\');" />'; + + $validstring=notags($invalidstring); + $escapedString=escape_tags($invalidstring); + + $this->assertEquals('[submit type="button" onclick="alert(\'failed!\');" /]', $validstring); + $this->assertEquals("<submit type="button" onclick="alert('failed!');" />", $escapedString); + } + + /** + *xmlify and unxmlify + */ + public function testXmlify() { + $text="<tag>I want to break\n this!11!<?hard?></tag>"; + $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 + */ + public function testHex2Bin() { + $this->assertEquals(-3, hex2bin(bin2hex(-3))); + $this->assertEquals(0, hex2bin(bin2hex(0))); + $this->assertEquals(12, hex2bin(bin2hex(12))); + $this->assertEquals(PHP_INT_MAX, hex2bin(bin2hex(PHP_INT_MAX))); + } + + //function qp, quick and dirty?? + //get_mentions + //get_contact_block, bis Zeile 538 +} +?> |