]> git.mxchange.org Git - friendica.git/blobdiff - tests/include/TextTest.php
BBCode - fixed syntax error
[friendica.git] / tests / include / TextTest.php
index ac1b7d7757b580eeccc38fa160b4cd983c4dcc1d..e516fe824ae3e8e23cfe24f2551fbfbee44ba2cd 100644 (file)
@@ -12,61 +12,6 @@ use PHPUnit\Framework\TestCase;
  */
 class TextTest extends TestCase
 {
-
-       /**
-        *autonames should be random, even length
-        */
-       public function testAutonameEven()
-       {
-               $autoname1=autoname(10);
-               $autoname2=autoname(10);
-
-               $this->assertNotEquals($autoname1, $autoname2);
-       }
-
-       /**
-        *autonames should be random, odd length
-        */
-       public function testAutonameOdd()
-       {
-               $autoname1=autoname(9);
-               $autoname2=autoname(9);
-
-               $this->assertNotEquals($autoname1, $autoname2);
-       }
-
-       /**
-        * try to fail autonames
-        */
-       public function testAutonameNoLength()
-       {
-               $autoname1=autoname(0);
-               $this->assertEquals(0, strlen($autoname1));
-       }
-
-       /**
-        * try to fail it with invalid input
-        *
-        * @todo What's corect behaviour here? An exception?
-        */
-       public function testAutonameNegativeLength()
-       {
-               $autoname1=autoname(-23);
-               $this->assertEquals(0, strlen($autoname1));
-       }
-
-       /**
-        * test with a length, that may be too short
-        */
-       public function testAutonameLength1()
-       {
-               $autoname1=autoname(1);
-               $this->assertEquals(1, strlen($autoname1));
-
-               $autoname2=autoname(1);
-               $this->assertEquals(1, strlen($autoname2));
-       }
-
        /**
         * test attribute contains
         */
@@ -232,62 +177,6 @@ class TextTest extends TestCase
                $this->assertEquals(array(1,3), expand_acl($text));
        }
 
-       /**
-        * 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(
-                       "&lt;submit type=&quot;button&quot; onclick=&quot;alert('failed!');&quot; /&gt;",
-                       $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
         */