X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Finclude%2FTextTest.php;h=e516fe824ae3e8e23cfe24f2551fbfbee44ba2cd;hb=3aa77685fcccff9739384136b4894de43200fa8c;hp=89e1dfcbdb7defb6e87d77d30c386318451ab446;hpb=a0f65ca7a1b1fbc1a2d0f823940211377fc6e13e;p=friendica.git diff --git a/tests/include/TextTest.php b/tests/include/TextTest.php index 89e1dfcbdb..e516fe824a 100644 --- a/tests/include/TextTest.php +++ b/tests/include/TextTest.php @@ -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,23 +177,6 @@ class TextTest extends TestCase $this->assertEquals(array(1,3), expand_acl($text)); } - /** - * test, that tags are escaped - */ - public function testEscapeTags() - { - $invalidstring=''; - - $validstring = Friendica\Util\Strings::removeTags($invalidstring); - $escapedString=escape_tags($invalidstring); - - $this->assertEquals('[submit type="button" onclick="alert(\'failed!\');" /]', $validstring); - $this->assertEquals( - "<submit type="button" onclick="alert('failed!');" />", - $escapedString - ); - } - /** * test hex2bin and reverse */