1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-04 20:52:34 +02:00

added tests for eHelper::title2sef()

The tests are based on my PR e107inc/e107#3370
This commit is contained in:
Achim Ennenbach 2018-08-10 21:39:38 +02:00
parent d73bcacaaa
commit 7c37b4ba6f

View File

@ -58,12 +58,40 @@
{
}
public function testTitle2sef()
*/
public function testTitle2sefFromPlainText()
{
$actual = $this->hp->title2sef('Plain text test');
$expected = 'plain-text-test';
$this->assertEquals($expected, $actual);
}
public function testTitle2sefFromPlainTextStripSpecialChars()
{
$actual = $this->hp->title2sef('Plain text test with special chars !()+*+#"\'\\');
$expected = 'plain-text-test-with-special-chars';
$this->assertEquals($expected, $actual);
}
public function testTitle2sefFromBbcodeText()
{
$actual = $this->hp->title2sef('BBCode [b]text[/b] test [img]logo.png[/img]');
$expected = 'bbcode-text-test';
$this->assertEquals($expected, $actual);
}
public function testTitle2sefFromHtmlText()
{
$actual = $this->hp->title2sef('HTML <b>text</b> test <img src="logo.png" />');
$expected = 'html-text-test';
$this->assertEquals($expected, $actual);
}
/*
public function testCamelize()
{