X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests%2FUtilsTest.php;h=c885f552350b62cf003921c5b36673b3224eea14;hb=65e56cbe49a7eb2a0cb09dda85daab3b921472ee;hp=3073b5eb45ca2736f7ed8cf649ad9997392e1287;hpb=25d88c90aa74ea05162dfc59f47843df639beb75;p=github%2Fshaarli%2FShaarli.git diff --git a/tests/UtilsTest.php b/tests/UtilsTest.php index 3073b5eb..c885f552 100644 --- a/tests/UtilsTest.php +++ b/tests/UtilsTest.php @@ -253,41 +253,33 @@ class UtilsTest extends PHPUnit_Framework_TestCase is_session_id_valid('c0ZqcWF3VFE2NmJBdm1HMVQ0ZHJ3UmZPbTFsNGhkNHI=') ); } - + /** - * Test text2clickable without a redirector being set. + * Test generateSecretApi. */ - public function testText2clickableWithoutRedirector() + public function testGenerateSecretApi() { - $text = 'stuff http://hello.there/is=someone#here otherstuff'; - $expectedText = 'stuff http://hello.there/is=someone#here otherstuff'; - $processedText = text2clickable($text, ''); - $this->assertEquals($expectedText, $processedText); + $this->assertEquals(12, strlen(generate_api_secret('foo', 'bar'))); } /** - * Test text2clickable a redirector set. + * Test generateSecretApi with invalid parameters. */ - public function testText2clickableWithRedirector() + public function testGenerateSecretApiInvalid() { - $text = 'stuff http://hello.there/is=someone#here otherstuff'; - $redirector = 'http://redirector.to'; - $expectedText = 'stuff http://hello.there/is=someone#here otherstuff'; - $processedText = text2clickable($text, $redirector); - $this->assertEquals($expectedText, $processedText); + $this->assertFalse(generate_api_secret('', '')); + $this->assertFalse(generate_api_secret(false, false)); } /** - * Test testSpace2nbsp. + * Test normalize_spaces. */ - public function testSpace2nbsp() + public function testNormalizeSpace() { - $text = ' Are you thrilled by flags ?'. PHP_EOL .' Really?'; - $expectedText = '  Are you   thrilled  by flags   ?'. PHP_EOL .' Really?'; - $processedText = space2nbsp($text); - $this->assertEquals($expectedText, $processedText); + $str = ' foo bar is important '; + $this->assertEquals('foo bar is important', normalize_spaces($str)); + $this->assertEquals('foo', normalize_spaces('foo')); + $this->assertEquals('', normalize_spaces('')); + $this->assertEquals(null, normalize_spaces(null)); } }