]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Content/Text/BBCodeTest.php
Merge pull request #7666 from MrPetovan/bug/7665-audio-tag
[friendica.git] / tests / src / Content / Text / BBCodeTest.php
index f155eeee3d99a57cff3bcdf0034094f2981377aa..1ff653db917acd8bebf0f4a098122f4580a9fd18 100644 (file)
-<?php\r
-\r
-namespace Friendica\Test\src\Content\Text;\r
-\r
-use Friendica\Content\Text\BBCode;\r
-use Friendica\Test\MockedTest;\r
-use Friendica\Test\Util\AppMockTrait;\r
-use Friendica\Test\Util\L10nMockTrait;\r
-use Friendica\Test\Util\VFSTrait;\r
-\r
-/**\r
- * @runTestsInSeparateProcesses\r
- * @preserveGlobalState disabled\r
- */\r
-class BBCodeTest extends MockedTest\r
-{\r
-       use VFSTrait;\r
-       use AppMockTrait;\r
-       use L10nMockTrait;\r
-\r
-       protected function setUp()\r
-       {\r
-               parent::setUp();\r
-               $this->setUpVfsDir();\r
-               $this->mockApp($this->root);\r
-               $this->app->videowidth = 425;\r
-               $this->app->videoheight = 350;\r
-               $this->configMock->shouldReceive('get')\r
-                       ->with('system', 'remove_multiplicated_lines')\r
-                       ->andReturn(false);\r
-               $this->configMock->shouldReceive('get')\r
-                       ->with('system', 'no_oembed')\r
-                       ->andReturn(false);\r
-               $this->configMock->shouldReceive('get')\r
-                       ->with('system', 'allowed_link_protocols')\r
-                       ->andReturn(null);\r
-               $this->configMock->shouldReceive('get')\r
-                       ->with('system', 'itemcache_duration')\r
-                       ->andReturn(-1);\r
-               $this->mockL10nT();\r
-       }\r
-\r
-       public function dataLinks()\r
-       {\r
-               return [\r
-                       /** @see https://github.com/friendica/friendica/issues/2487 */\r
-                       'bug-2487-1' => [\r
-                               'data' => 'https://de.wikipedia.org/wiki/Juha_Sipilä',\r
-                               'assertHTML' => true,\r
-                       ],\r
-                       'bug-2487-2' => [\r
-                               'data' => 'https://de.wikipedia.org/wiki/Dnepr_(Motorradmarke)',\r
-                               'assertHTML' => true,\r
-                       ],\r
-                       'bug-2487-3' => [\r
-                               'data' => 'https://friendica.wäckerlin.ch/friendica',\r
-                               'assertHTML' => true,\r
-                       ],\r
-                       'bug-2487-4' => [\r
-                               'data' => 'https://mastodon.social/@morevnaproject',\r
-                               'assertHTML' => true,\r
-                       ],\r
-                       /** @see https://github.com/friendica/friendica/issues/5795 */\r
-                       'bug-5795' => [\r
-                               'data' => 'https://social.nasqueron.org/@liw/100798039015010628',\r
-                               'assertHTML' => true,\r
-                       ],\r
-                       /** @see https://github.com/friendica/friendica/issues/6095 */\r
-                       'bug-6095' => [\r
-                               'data' => 'https://en.wikipedia.org/wiki/Solid_(web_decentralization_project)',\r
-                               'assertHTML' => true,\r
-                       ],\r
-                       'no-protocol' => [\r
-                               'data' => 'example.com/path',\r
-                               'assertHTML' => false\r
-                       ],\r
-                       'wrong-protocol' => [\r
-                               'data' => 'ftp://example.com',\r
-                               'assertHTML' => false\r
-                       ],\r
-                       'wrong-domain-without-path' => [\r
-                               'data' => 'http://example',\r
-                               'assertHTML' => false\r
-                       ],\r
-                       'wrong-domain-with-path' => [\r
-                               'data' => 'http://example/path',\r
-                               'assertHTML' => false\r
-                       ],\r
-               ];\r
-       }\r
-\r
-       /**\r
-        * Test convert different links inside a text\r
-        * @dataProvider dataLinks\r
-        *\r
-        * @param string $data The data to text\r
-        * @param bool $assertHTML True, if the link is a HTML link (<a href...>...</a>)\r
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException\r
-        */\r
-       public function testAutoLinking($data, $assertHTML)\r
-       {\r
-               $output = BBCode::convert($data);\r
-               if ($assertHTML) {\r
-                       $assert = '<a href="' . $data . '" target="_blank">' . $data . '</a>';\r
-               } else {\r
-                       $assert = $data;\r
-               }\r
-\r
-               $this->assertEquals($assert, $output);\r
-       }\r
-}
\ No newline at end of file
+<?php
+
+namespace Friendica\Test\src\Content\Text;
+
+use Friendica\App\BaseURL;
+use Friendica\Content\Text\BBCode;
+use Friendica\Core\L10n\L10n;
+use Friendica\Test\MockedTest;
+use Friendica\Test\Util\AppMockTrait;
+use Friendica\Test\Util\VFSTrait;
+
+class BBCodeTest extends MockedTest
+{
+       use VFSTrait;
+       use AppMockTrait;
+
+       protected function setUp()
+       {
+               parent::setUp();
+               $this->setUpVfsDir();
+               $this->mockApp($this->root);
+               $this->app->videowidth = 425;
+               $this->app->videoheight = 350;
+               $this->configMock->shouldReceive('get')
+                       ->with('system', 'remove_multiplicated_lines')
+                       ->andReturn(false);
+               $this->configMock->shouldReceive('get')
+                       ->with('system', 'no_oembed')
+                       ->andReturn(false);
+               $this->configMock->shouldReceive('get')
+                       ->with('system', 'allowed_link_protocols')
+                       ->andReturn(null);
+               $this->configMock->shouldReceive('get')
+                       ->with('system', 'itemcache_duration')
+                       ->andReturn(-1);
+               $this->configMock->shouldReceive('get')
+                       ->with('system', 'url')
+                       ->andReturn('friendica.local');
+               $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()
+       {
+               return [
+                       /** @see https://github.com/friendica/friendica/issues/2487 */
+                       'bug-2487-1' => [
+                               'data' => 'https://de.wikipedia.org/wiki/Juha_Sipilä',
+                               'assertHTML' => true,
+                       ],
+                       'bug-2487-2' => [
+                               'data' => 'https://de.wikipedia.org/wiki/Dnepr_(Motorradmarke)',
+                               'assertHTML' => true,
+                       ],
+                       'bug-2487-3' => [
+                               'data' => 'https://friendica.wäckerlin.ch/friendica',
+                               'assertHTML' => true,
+                       ],
+                       'bug-2487-4' => [
+                               'data' => 'https://mastodon.social/@morevnaproject',
+                               'assertHTML' => true,
+                       ],
+                       /** @see https://github.com/friendica/friendica/issues/5795 */
+                       'bug-5795' => [
+                               'data' => 'https://social.nasqueron.org/@liw/100798039015010628',
+                               'assertHTML' => true,
+                       ],
+                       /** @see https://github.com/friendica/friendica/issues/6095 */
+                       'bug-6095' => [
+                               'data' => 'https://en.wikipedia.org/wiki/Solid_(web_decentralization_project)',
+                               'assertHTML' => true,
+                       ],
+                       'no-protocol' => [
+                               'data' => 'example.com/path',
+                               'assertHTML' => false
+                       ],
+                       'wrong-protocol' => [
+                               'data' => 'ftp://example.com',
+                               'assertHTML' => false
+                       ],
+                       'wrong-domain-without-path' => [
+                               'data' => 'http://example',
+                               'assertHTML' => false
+                       ],
+                       'wrong-domain-with-path' => [
+                               'data' => 'http://example/path',
+                               'assertHTML' => false
+                       ],
+                       'bug-6857-domain-start' => [
+                               'data' => "http://\nexample.com",
+                               'assertHTML' => false
+                       ],
+                       'bug-6857-domain-end' => [
+                               'data' => "http://example\n.com",
+                               'assertHTML' => false
+                       ],
+                       'bug-6857-tld' => [
+                               'data' => "http://example.\ncom",
+                               'assertHTML' => false
+                       ],
+                       'bug-6857-end' => [
+                               'data' => "http://example.com\ntest",
+                               'assertHTML' => false
+                       ],
+                       'bug-6901' => [
+                               'data' => "http://example.com<ul>",
+                               'assertHTML' => false
+                       ],
+                       'bug-7150' => [
+                               'data' => html_entity_decode('http://example.com&nbsp;', 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
+                       ],
+               ];
+       }
+
+       /**
+        * Test convert different links inside a text
+        * @dataProvider dataLinks
+        *
+        * @param string $data The data to text
+        * @param bool $assertHTML True, if the link is a HTML link (<a href...>...</a>)
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        */
+       public function testAutoLinking($data, $assertHTML)
+       {
+               $output = BBCode::convert($data);
+               $assert = '<a href="' . $data . '" target="_blank">' . $data . '</a>';
+               if ($assertHTML) {
+                       $this->assertEquals($assert, $output);
+               } else {
+                       $this->assertNotEquals($assert, $output);
+               }
+       }
+
+       public function dataBBCodes()
+       {
+               return [
+                       'bug-7271-condensed-space' => [
+                               'expectedHtml' => '<ul class="listdecimal" style="list-style-type: decimal;"><li> <a href="http://example.com/" target="_blank">http://example.com/</a></li></ul>',
+                               'text' => '[ol][*] http://example.com/[/ol]',
+                       ],
+                       'bug-7271-condensed-nospace' => [
+                               'expectedHtml' => '<ul class="listdecimal" style="list-style-type: decimal;"><li><a href="http://example.com/" target="_blank">http://example.com/</a></li></ul>',
+                               'text' => '[ol][*]http://example.com/[/ol]',
+                       ],
+                       'bug-7271-indented-space' => [
+                               'expectedHtml' => '<ul class="listbullet" style="list-style-type: circle;"><li> <a href="http://example.com/" target="_blank">http://example.com/</a></li></ul>',
+                               'text' => '[ul]
+[*] http://example.com/
+[/ul]',
+                       ],
+                       'bug-7271-indented-nospace' => [
+                               'expectedHtml' => '<ul class="listbullet" style="list-style-type: circle;"><li><a href="http://example.com/" target="_blank">http://example.com/</a></li></ul>',
+                               'text' => '[ul]
+[*]http://example.com/
+[/ul]',
+                       ],
+                       'bug-2199-named-size' => [
+                               'expectedHtml' => '<span style="font-size: xx-large; line-height: initial;">Test text</span>',
+                               'text' => '[size=xx-large]Test text[/size]',
+                       ],
+                       'bug-2199-numeric-size' => [
+                               'expectedHtml' => '<span style="font-size: 24px; line-height: initial;">Test text</span>',
+                               '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' => '<audio src="http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3" controls="controls"><a href="http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3">http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3</a></audio>',
+                               'text' => '[audio]http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3[/audio]',
+                               'try_oembed' => true,
+                       ],
+               ];
+       }
+
+       /**
+        * 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);
+       }
+}