X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2Fsrc%2FContent%2FText%2FBBCodeTest.php;h=7db69eef3900c882e60039ef31b7768ca15fdac8;hb=ab8997f9db910ba70c592bf106a7f5fc41a55b2d;hp=864a3794d31f67a9588bd281125b34f6e8c8e984;hpb=cbca26d1852ff453e27587d6b11579bbccde4978;p=friendica.git diff --git a/tests/src/Content/Text/BBCodeTest.php b/tests/src/Content/Text/BBCodeTest.php index 864a3794d3..7db69eef39 100644 --- a/tests/src/Content/Text/BBCodeTest.php +++ b/tests/src/Content/Text/BBCodeTest.php @@ -2,21 +2,17 @@ namespace Friendica\Test\src\Content\Text; +use Friendica\App\BaseURL; use Friendica\Content\Text\BBCode; +use Friendica\Core\L10n; use Friendica\Test\MockedTest; use Friendica\Test\Util\AppMockTrait; -use Friendica\Test\Util\L10nMockTrait; use Friendica\Test\Util\VFSTrait; -/** - * @runTestsInSeparateProcesses - * @preserveGlobalState disabled - */ class BBCodeTest extends MockedTest { use VFSTrait; use AppMockTrait; - use L10nMockTrait; protected function setUp() { @@ -40,7 +36,21 @@ class BBCodeTest extends MockedTest $this->configMock->shouldReceive('get') ->with('system', 'url') ->andReturn('friendica.local'); - $this->mockL10nT(); + $this->configMock->shouldReceive('get') + ->with('system', 'no_smilies') + ->andReturn(false); + + $l10nMock = \Mockery::mock(L10n::class); + $l10nMock->shouldReceive('t')->withAnyArgs()->andReturnUsing(function ($args) { return $args; }); + $this->dice->shouldReceive('create') + ->with(L10n::class) + ->andReturn($l10nMock); + + $baseUrlMock = \Mockery::mock(BaseURL::class); + $baseUrlMock->shouldReceive('get')->withAnyArgs()->andReturn('friendica.local'); + $this->dice->shouldReceive('create') + ->with(BaseURL::class) + ->andReturn($baseUrlMock); } public function dataLinks() @@ -113,6 +123,14 @@ class BBCodeTest extends MockedTest 'data' => html_entity_decode('http://example.com ', ENT_QUOTES, 'UTF-8'), 'assertHTML' => false ], + 'bug-7271-query-string-brackets' => [ + 'data' => 'https://example.com/search?q=square+brackets+[url]', + 'assertHTML' => true + ], + 'bug-7271-path-brackets' => [ + 'data' => 'http://example.com/path/to/file[3].html', + 'assertHTML' => true + ], ]; } @@ -134,4 +152,123 @@ class BBCodeTest extends MockedTest $this->assertNotEquals($assert, $output); } } + + public function dataBBCodes() + { + return [ + 'bug-7271-condensed-space' => [ + 'expectedHtml' => '', + 'text' => '[ol][*] http://example.com/[/ol]', + ], + 'bug-7271-condensed-nospace' => [ + 'expectedHtml' => '', + 'text' => '[ol][*]http://example.com/[/ol]', + ], + 'bug-7271-indented-space' => [ + 'expectedHtml' => '', + 'text' => '[ul] +[*] http://example.com/ +[/ul]', + ], + 'bug-7271-indented-nospace' => [ + 'expectedHtml' => '', + 'text' => '[ul] +[*]http://example.com/ +[/ul]', + ], + 'bug-2199-named-size' => [ + 'expectedHtml' => 'Test text', + 'text' => '[size=xx-large]Test text[/size]', + ], + 'bug-2199-numeric-size' => [ + 'expectedHtml' => 'Test text', + 'text' => '[size=24]Test text[/size]', + ], + 'bug-2199-diaspora-no-named-size' => [ + 'expectedHtml' => 'Test text', + 'text' => '[size=xx-large]Test text[/size]', + 'try_oembed' => false, + // Triggers the diaspora compatible output + 'simpleHtml' => 3, + ], + 'bug-2199-diaspora-no-numeric-size' => [ + 'expectedHtml' => 'Test text', + 'text' => '[size=24]Test text[/size]', + 'try_oembed' => false, + // Triggers the diaspora compatible output + 'simpleHtml' => 3, + ], + 'bug-7665-audio-tag' => [ + 'expectedHtml' => '', + 'text' => '[audio]http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3[/audio]', + 'try_oembed' => true, + ], + 'bug-7808-code-lt' => [ + 'expectedHtml' => '<', + 'text' => '[code]<[/code]', + ], + 'bug-7808-code-gt' => [ + 'expectedHtml' => '>', + 'text' => '[code]>[/code]', + ], + 'bug-7808-code-amp' => [ + 'expectedHtml' => '&', + 'text' => '[code]&[/code]', + ] + ]; + } + + /** + * Test convert bbcodes to HTML + * + * @dataProvider dataBBCodes + * + * @param string $expectedHtml Expected HTML output + * @param string $text BBCode text + * @param bool $try_oembed Whether to convert multimedia BBCode tag + * @param int $simpleHtml BBCode::convert method $simple_html parameter value, optional. + * @param bool $forPlaintext BBCode::convert method $for_plaintext parameter value, optional. + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + */ + public function testConvert($expectedHtml, $text, $try_oembed = false, $simpleHtml = 0, $forPlaintext = false) + { + $actual = BBCode::convert($text, $try_oembed, $simpleHtml, $forPlaintext); + + $this->assertEquals($expectedHtml, $actual); + } + + public function dataBBCodesToMarkdown() + { + return [ + 'bug-7808-gt' => [ + 'expected' => '>`>`', + 'text' => '>[code]>[/code]', + ], + 'bug-7808-lt' => [ + 'expected' => '<`<`', + 'text' => '<[code]<[/code]', + ], + 'bug-7808-amp' => [ + 'expected' => '&`&`', + 'text' => '&[code]&[/code]', + ], + ]; + } + + /** + * Test convert bbcodes to Markdown + * + * @dataProvider dataBBCodesToMarkdown + * + * @param string $expected Expected Markdown output + * @param string $text BBCode text + * @param bool $for_diaspora + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + */ + public function testToMarkdown($expected, $text, $for_diaspora = false) + { + $actual = BBCode::toMarkdown($text, $for_diaspora); + + $this->assertEquals($expected, $actual); + } }