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

Merge pull request #10 from SimSync/test_title2sef

added tests for `eHelper::title2sef()`
This commit is contained in:
Nick L 2018-08-11 14:50:56 -05:00 committed by GitHub
commit f3acf43dd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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()
{