]> git.mxchange.org Git - friendica.git/blob - tests/src/Content/Text/BBCodeTest.php
Normalize [ul] and [ol] BBCode output to <ul> and <ol> HTML tags
[friendica.git] / tests / src / Content / Text / BBCodeTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Test\src\Content\Text;
23
24 use Friendica\Content\Text\BBCode;
25 use Friendica\DI;
26 use Friendica\Network\HTTPException\InternalServerErrorException;
27 use Friendica\Test\FixtureTest;
28
29 class BBCodeTest extends FixtureTest
30 {
31         protected function setUp(): void
32         {
33                 parent::setUp();
34                 DI::config()->set('system', 'remove_multiplicated_lines', false);
35                 DI::config()->set('system', 'no_oembed', false);
36                 DI::config()->set('system', 'allowed_link_protocols', []);
37                 DI::config()->set('system', 'url', 'https://friendica.local');
38                 DI::config()->set('system', 'no_smilies', false);
39                 DI::config()->set('system', 'big_emojis', false);
40                 DI::config()->set('system', 'allowed_oembed', '');
41
42                 $config = \HTMLPurifier_HTML5Config::createDefault();
43                 $config->set('HTML.Doctype', 'HTML5');
44                 $config->set('Attr.AllowedRel', [
45                         'noreferrer' => true,
46                         'noopener' => true,
47                 ]);
48                 $config->set('Attr.AllowedFrameTargets', [
49                         '_blank' => true,
50                 ]);
51
52                 $this->HTMLPurifier = new \HTMLPurifier($config);
53         }
54
55         public function dataLinks()
56         {
57                 return [
58                         /** @see https://github.com/friendica/friendica/issues/2487 */
59                         'bug-2487-1' => [
60                                 'data' => 'https://de.wikipedia.org/wiki/Juha_Sipilä',
61                                 'assertHTML' => true,
62                         ],
63                         'bug-2487-2' => [
64                                 'data' => 'https://de.wikipedia.org/wiki/Dnepr_(Motorradmarke)',
65                                 'assertHTML' => true,
66                         ],
67                         'bug-2487-3' => [
68                                 'data' => 'https://friendica.wäckerlin.ch/friendica',
69                                 'assertHTML' => true,
70                         ],
71                         'bug-2487-4' => [
72                                 'data' => 'https://mastodon.social/@morevnaproject',
73                                 'assertHTML' => true,
74                         ],
75                         /** @see https://github.com/friendica/friendica/issues/5795 */
76                         'bug-5795' => [
77                                 'data' => 'https://social.nasqueron.org/@liw/100798039015010628',
78                                 'assertHTML' => true,
79                         ],
80                         /** @see https://github.com/friendica/friendica/issues/6095 */
81                         'bug-6095' => [
82                                 'data' => 'https://en.wikipedia.org/wiki/Solid_(web_decentralization_project)',
83                                 'assertHTML' => true,
84                         ],
85                         'no-protocol' => [
86                                 'data' => 'example.com/path',
87                                 'assertHTML' => false
88                         ],
89                         'wrong-protocol' => [
90                                 'data' => 'ftp://example.com',
91                                 'assertHTML' => false
92                         ],
93                         'wrong-domain-without-path' => [
94                                 'data' => 'http://example',
95                                 'assertHTML' => false
96                         ],
97                         'wrong-domain-with-path' => [
98                                 'data' => 'http://example/path',
99                                 'assertHTML' => false
100                         ],
101                         'bug-6857-domain-start' => [
102                                 'data' => "http://\nexample.com",
103                                 'assertHTML' => false
104                         ],
105                         'bug-6857-domain-end' => [
106                                 'data' => "http://example\n.com",
107                                 'assertHTML' => false
108                         ],
109                         'bug-6857-tld' => [
110                                 'data' => "http://example.\ncom",
111                                 'assertHTML' => false
112                         ],
113                         'bug-6857-end' => [
114                                 'data' => "http://example.com\ntest",
115                                 'assertHTML' => false
116                         ],
117                         'bug-6901' => [
118                                 'data' => "http://example.com<ul>",
119                                 'assertHTML' => false
120                         ],
121                         'bug-7150' => [
122                                 'data' => html_entity_decode('http://example.com&nbsp;', ENT_QUOTES, 'UTF-8'),
123                                 'assertHTML' => false
124                         ],
125                         'bug-7271-query-string-brackets' => [
126                                 'data' => 'https://example.com/search?q=square+brackets+[url]',
127                                 'assertHTML' => true
128                         ],
129                         'bug-7271-path-brackets' => [
130                                 'data' => 'http://example.com/path/to/file[3].html',
131                                 'assertHTML' => true
132                         ],
133                 ];
134         }
135
136         /**
137          * Test convert different links inside a text
138          *
139          * @dataProvider dataLinks
140          *
141          * @param string $data       The data to text
142          * @param bool   $assertHTML True, if the link is a HTML link (<a href...>...</a>)
143          *
144          * @throws InternalServerErrorException
145          */
146         public function testAutoLinking(string $data, bool $assertHTML)
147         {
148                 $output = BBCode::convert($data);
149                 $assert = $this->HTMLPurifier->purify('<a href="' . $data . '" target="_blank" rel="noopener noreferrer">' . $data . '</a>');
150                 if ($assertHTML) {
151                         self::assertEquals($assert, $output);
152                 } else {
153                         self::assertNotEquals($assert, $output);
154                 }
155         }
156
157         public function dataBBCodes()
158         {
159                 return [
160                         'bug-7271-condensed-space' => [
161                                 'expectedHtml' => '<ol><li> <a href="http://example.com/" target="_blank" rel="noopener noreferrer">http://example.com/</a></li></ol>',
162                                 'text' => '[ol][*] http://example.com/[/ol]',
163                         ],
164                         'bug-7271-condensed-nospace' => [
165                                 'expectedHtml' => '<ol><li><a href="http://example.com/" target="_blank" rel="noopener noreferrer">http://example.com/</a></li></ol>',
166                                 'text' => '[ol][*]http://example.com/[/ol]',
167                         ],
168                         'bug-7271-indented-space' => [
169                                 'expectedHtml' => '<ul><li> <a href="http://example.com/" target="_blank" rel="noopener noreferrer">http://example.com/</a></li></ul>',
170                                 'text' => '[ul]
171 [*] http://example.com/
172 [/ul]',
173                         ],
174                         'bug-7271-indented-nospace' => [
175                                 'expectedHtml' => '<ul><li><a href="http://example.com/" target="_blank" rel="noopener noreferrer">http://example.com/</a></li></ul>',
176                                 'text' => '[ul]
177 [*]http://example.com/
178 [/ul]',
179                         ],
180                         'bug-2199-named-size' => [
181                                 'expectedHtml' => '<span style="font-size:xx-large;line-height:normal;">Test text</span>',
182                                 'text' => '[size=xx-large]Test text[/size]',
183                         ],
184                         'bug-2199-numeric-size' => [
185                                 'expectedHtml' => '<span style="font-size:24px;line-height:normal;">Test text</span>',
186                                 'text' => '[size=24]Test text[/size]',
187                         ],
188                         'bug-2199-diaspora-no-named-size' => [
189                                 'expectedHtml' => 'Test text',
190                                 'text' => '[size=xx-large]Test text[/size]',
191                                 'try_oembed' => false,
192                                 // Triggers the diaspora compatible output
193                                 'simpleHtml' => BBCode::DIASPORA,
194                         ],
195                         'bug-2199-diaspora-no-numeric-size' => [
196                                 'expectedHtml' => 'Test text',
197                                 'text' => '[size=24]Test text[/size]',
198                                 'try_oembed' => false,
199                                 // Triggers the diaspora compatible output
200                                 'simpleHtml' => BBCode::DIASPORA,
201                         ],
202                         'bug-7665-audio-tag' => [
203                                 'expectedHtml' => '<audio src="http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3" controls><a href="http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3">http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3</a></audio>',
204                                 'text' => '[audio]http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3[/audio]',
205                                 'try_oembed' => true,
206                         ],
207                         'bug-7808-code-lt' => [
208                                 'expectedHtml' => '<code>&lt;</code>',
209                                 'text' => '[code]<[/code]',
210                         ],
211                         'bug-7808-code-gt' => [
212                                 'expectedHtml' => '<code>&gt;</code>',
213                                 'text' => '[code]>[/code]',
214                         ],
215                         'bug-7808-code-amp' => [
216                                 'expectedHtml' => '<code>&amp;</code>',
217                                 'text' => '[code]&[/code]',
218                         ],
219                         'task-8800-pre-spaces-notag' => [
220                                 'expectedHtml' => '[test] Space',
221                                 'text' => '[test] Space',
222                         ],
223                         'task-8800-pre-spaces' => [
224                                 'expectedHtml' => '    Spaces',
225                                 'text' => '[pre]    Spaces[/pre]',
226                         ],
227                         'bug-9611-purify-xss-nobb' => [
228                                 'expectedHTML' => '<span>dare to move your mouse here</span>',
229                                 'text' => '[nobb]<span onmouseover="alert(0)">dare to move your mouse here</span>[/nobb]'
230                         ],
231                         'bug-9611-purify-xss-noparse' => [
232                                 'expectedHTML' => '<span>dare to move your mouse here</span>',
233                                 'text' => '[noparse]<span onmouseover="alert(0)">dare to move your mouse here</span>[/noparse]'
234                         ],
235                         'bug-9611-purify-xss-attributes' => [
236                                 'expectedHTML' => '<span>dare to move your mouse here</span>',
237                                 'text' => '[color="onmouseover=alert(0) style="]dare to move your mouse here[/color]'
238                         ],
239                         'bug-9611-purify-attributes-correct' => [
240                                 'expectedHTML' => '<span style="color:#FFFFFF;">dare to move your mouse here</span>',
241                                 'text' => '[color=FFFFFF]dare to move your mouse here[/color]'
242                         ],
243                         'bug-9639-span-classes' => [
244                                 'expectedHTML' => '<span class="arbitrary classes">Test</span>',
245                                 'text' => '[class=arbitrary classes]Test[/class]',
246                         ],
247                         'bug-10772-duplicated-links' => [
248                                 'expectedHTML' => 'Jetzt wird mir klar, warum Kapitalisten jedes Mal durchdrehen wenn Marx und das Kapital ins Gespräch kommt. Soziopathen.<br>Karl Marx - Die ursprüngliche Akkumulation<br><a href="https://wohlstandfueralle.podigee.io/107-urspruengliche-akkumulation" target="_blank" rel="noopener noreferrer">https://wohlstandfueralle.podigee.io/107-urspruengliche-akkumulation</a><br>#Podcast #Kapitalismus',
249                                 'text' => "Jetzt wird mir klar, warum Kapitalisten jedes Mal durchdrehen wenn Marx und das Kapital ins Gespräch kommt. Soziopathen.
250 Karl Marx - Die ursprüngliche Akkumulation
251 [url=https://wohlstandfueralle.podigee.io/107-urspruengliche-akkumulation]https://wohlstandfueralle.podigee.io/107-urspruengliche-akkumulation[/url]
252 #[url=https://horche.demkontinuum.de/search?tag=Podcast]Podcast[/url] #[url=https://horche.demkontinuum.de/search?tag=Kapitalismus]Kapitalismus[/url]
253 [attachment type='link' url='https://wohlstandfueralle.podigee.io/107-urspruengliche-akkumulation' title='Ep. 107: Karl Marx #8 - Die urspr&uuml;ngliche Akkumulation' publisher_name='Wohlstand f&uuml;r Alle' preview='https://images.podigee-cdn.net/0x,s6LXshYO7uhG23H431B30t4hxj1bQuzlTsUlze0F_-H8=/https://cdn.podigee.com/uploads/u8126/bd5fe4f4-38b7-4f3f-b269-6a0080144635.jpg']Wie der Kapitalismus funktioniert und inwieweit Menschen darin ausgebeutet werden, haben wir bereits besprochen. Immer wieder verweisen wir auch darauf, dass der Kapitalismus nicht immer schon existierte, sondern historisiert werden muss.[/attachment]",
254                                 'try_oembed' => false,
255                                 'simpleHtml' => BBCode::TWITTER,
256                         ],
257                         'task-10886-deprecate-class' => [
258                                 'expectedHTML' => '<span class="mastodon emoji"><img src="https://fedi.underscore.world/emoji/custom/custom/heart_nb.png" alt=":heart_nb:" title=":heart_nb:"></span>',
259                                 'text' => '[emoji=https://fedi.underscore.world/emoji/custom/custom/heart_nb.png]:heart_nb:[/emoji]',
260                         ],
261                         'task-12900-multiple-paragraphs' => [
262                                 'expectedHTML' => '<h1>Header</h1><ul><li>One</li><li>Two</li></ul><p>This is a paragraph<br>with a line feed.</p><p>Second Chapter</p>',
263                                 'text' => "[h1]Header[/h1][ul][*]One[*]Two[/ul]\n\nThis is a paragraph\nwith a line feed.\n\nSecond Chapter",
264                         ],
265                         'task-12900-header-with-paragraphs' => [
266                                 'expectedHTML' => '<h1>Header</h1><p>Some Chapter</p>',
267                                 'text' => '[h1]Header[/h1]Some Chapter',
268                         ]
269                 ];
270         }
271
272         /**
273          * Test convert bbcodes to HTML
274          *
275          * @dataProvider dataBBCodes
276          *
277          * @param string $expectedHtml Expected HTML output
278          * @param string $text         BBCode text
279          * @param bool   $try_oembed   Whether to convert multimedia BBCode tag
280          * @param int    $simpleHtml   BBCode::convert method $simple_html parameter value, optional.
281          * @param bool   $forPlaintext BBCode::convert method $for_plaintext parameter value, optional.
282          *
283          * @throws InternalServerErrorException
284          */
285         public function testConvert(string $expectedHtml, string $text, bool $try_oembed = true, int $simpleHtml = BBCode::INTERNAL, bool $forPlaintext = false)
286         {
287                 // This assumes system.remove_multiplicated_lines = false
288                 $actual = BBCode::convert($text, $try_oembed, $simpleHtml, $forPlaintext);
289
290                 self::assertEquals($expectedHtml, $actual);
291         }
292
293         public function dataBBCodesToMarkdown()
294         {
295                 return [
296                         'bug-7808-gt' => [
297                                 'expected' => '&gt;`>`',
298                                 'text' => '>[code]>[/code]',
299                         ],
300                         'bug-7808-lt' => [
301                                 'expected' => '&lt;`<`',
302                                 'text' => '<[code]<[/code]',
303                         ],
304                         'bug-7808-amp' => [
305                                 'expected' => '&amp;`&`',
306                                 'text' => '&[code]&[/code]',
307                         ],
308                 ];
309         }
310
311         /**
312          * Test convert bbcodes to Markdown
313          *
314          * @dataProvider dataBBCodesToMarkdown
315          *
316          * @param string $expected Expected Markdown output
317          * @param string $text     BBCode text
318          * @param bool   $for_diaspora
319          *
320          * @throws InternalServerErrorException
321          */
322         public function testToMarkdown(string $expected, string $text, $for_diaspora = false)
323         {
324                 $actual = BBCode::toMarkdown($text, $for_diaspora);
325
326                 self::assertEquals($expected, $actual);
327         }
328
329         public function dataExpandTags()
330         {
331                 return [
332                         'bug-10692-non-word' => [
333                                 '[url=https://github.com/friendica/friendica/blob/2021.09-rc/src/Util/Logger/StreamLogger.php#L160]https://github.com/friendica/friendica/blob/2021.09-rc/src/Util/Logger/StreamLogger.php#L160[/url]',
334                                 '[url=https://github.com/friendica/friendica/blob/2021.09-rc/src/Util/Logger/StreamLogger.php#L160]https://github.com/friendica/friendica/blob/2021.09-rc/src/Util/Logger/StreamLogger.php#L160[/url]',
335                         ],
336                         'bug-10692-start-line' => [
337                                 '#[url=https://friendica.local/search?tag=L160]L160[/url]',
338                                 '#L160',
339                         ]
340                 ];
341         }
342
343         /**
344          * @dataProvider dataExpandTags
345          *
346          * @param string $expected Expected BBCode output
347          * @param string $text     Input text
348          */
349         public function testExpandTags(string $expected, string $text)
350         {
351                 $actual = BBCode::expandTags($text);
352
353                 self::assertEquals($expected, $actual);
354         }
355
356         public function dataGetAbstract(): array
357         {
358                 return [
359                         'no-abstract' => [
360                                 'expected' => '',
361                                 'text' => 'Venture the only home we\'ve ever known laws of physics tendrils of gossamer clouds a still more glorious dawn awaits Sea of Tranquility. With pretty stories for which there\'s little good evidence the ash of stellar alchemy corpus callosum preserve and cherish that pale blue dot descended from astronomers preserve and cherish that pale blue dot. A mote of dust suspended in a sunbeam paroxysm of global death two ghostly white figures in coveralls and helmets are softly dancing descended from astronomers star stuff harvesting star light gathered by gravity and billions upon billions upon billions upon billions upon billions upon billions upon billions.',
362                                 'addon' => '',
363                         ],
364                         'no-abstract-addon' => [
365                                 'expected' => '',
366                                 'text' => 'Tingling of the spine tendrils of gossamer clouds Flatland trillion rich in heavy atoms of brilliant syntheses. Extraordinary claims require extraordinary evidence a very small stage in a vast cosmic arena made in the interiors of collapsing stars kindling the energy hidden in matter vastness is bearable only through love kindling the energy hidden in matter? Dispassionate extraterrestrial observer preserve and cherish that pale blue dot vastness is bearable only through love emerged into consciousness encyclopaedia galactica a still more glorious dawn awaits and billions upon billions upon billions upon billions upon billions upon billions upon billions.',
367                                 'addon' => 'dfrn',
368                         ],
369                         'abstract' => [
370                                 'expected' => 'Abstract at the beginning of the text',
371                                 'text' => '[abstract]Abstract at the beginning of the text[/abstract]A very small stage in a vast cosmic arena the ash of stellar alchemy rich in heavy atoms a still more glorious dawn awaits are creatures of the cosmos Orion\'s sword. Brain is the seed of intelligence dream of the mind\'s eye inconspicuous motes of rock and gas extraordinary claims require extraordinary evidence vastness is bearable only through love quasar? Made in the interiors of collapsing stars the carbon in our apple pies cosmic ocean citizens of distant epochs paroxysm of global death dispassionate extraterrestrial observer and billions upon billions upon billions upon billions upon billions upon billions upon billions.',
372                                 'addon' => '',
373                         ],
374                         'abstract-addon-not-present' => [
375                                 'expected' => 'Abstract at the beginning of the text',
376                                 'text' => '[abstract]Abstract at the beginning of the text[/abstract]With pretty stories for which there\'s little good evidence rogue not a sunrise but a galaxyrise tingling of the spine birth cosmic fugue. Cosmos hundreds of thousands Apollonius of Perga network of wormholes rich in mystery globular star cluster. Another world vastness is bearable only through love encyclopaedia galactica something incredible is waiting to be known invent the universe hearts of the stars. Extraordinary claims require extraordinary evidence the sky calls to us the only home we\'ve ever known the sky calls to us the sky calls to us extraordinary claims require extraordinary evidence and billions upon billions upon billions upon billions upon billions upon billions upon billions.',
377                                 'addon' => '',
378                         ],
379                         'abstract-addon-present' => [
380                                 'expected' => 'Abstract DFRN in the middle of the text',
381                                 'text' => '[abstract]Abstract at the beginning of the text[/abstract][abstract=dfrn]Abstract DFRN in the middle of the text[/abstract]Kindling the energy hidden in matter hydrogen atoms at the edge of forever vanquish the impossible ship of the imagination take root and flourish. Tingling of the spine white dwarf as a patch of light the sky calls to us Drake Equation citizens of distant epochs. Concept of the number one dispassionate extraterrestrial observer citizens of distant epochs descended from astronomers extraordinary claims require extraordinary evidence something incredible is waiting to be known and billions upon billions upon billions upon billions upon billions upon billions upon billions.',
382                                 'addon' => 'dfrn',
383                         ],
384                         'abstract-multiple-addon-present' => [
385                                 'expected' => 'Abstract DFRN at the end of the text',
386                                 'text' => '[abstract]Abstract at the beginning of the text[/abstract][abstract=ap]Abstract AP in the middle of the text[/abstract]Cambrian explosion rich in heavy atoms take root and flourish radio telescope light years cosmic fugue. Dispassionate extraterrestrial observer white dwarf the sky calls to us another world courage of our questions two ghostly white figures in coveralls and helmets are softly dancing. Extraordinary claims require extraordinary evidence concept of the number one not a sunrise but a galaxyrise are creatures of the cosmos two ghostly white figures in coveralls and helmets are softly dancing white dwarf and billions upon billions upon billions upon billions upon billions upon billions upon billions.[abstract=dfrn]Abstract DFRN at the end of the text[/abstract]',
387                                 'addon' => 'dfrn',
388                         ],
389                         'bug-11445-code-abstract' => [
390                                 'expected' => '',
391                                 'text' => '[code][abstract]This should not be converted[/abstract][/code]',
392                                 'addon' => '',
393                         ],
394                         'bug-11445-noparse-abstract' => [
395                                 'expected' => '',
396                                 'text' => '[noparse][abstract]This should not be converted[/abstract][/noparse]',
397                                 'addon' => '',
398                         ],
399                         'bug-11445-nobb-abstract' => [
400                                 'expected' => '',
401                                 'text' => '[nobb][abstract]This should not be converted[/abstract][/nobb]',
402                                 'addon' => '',
403                         ],
404                         'bug-11445-pre-abstract' => [
405                                 'expected' => '',
406                                 'text' => '[pre][abstract]This should not be converted[/abstract][/pre]',
407                                 'addon' => '',
408                         ],
409                 ];
410         }
411
412         /**
413          * @dataProvider dataGetAbstract
414          *
415          * @param string $expected Expected abstract text
416          * @param string $text     Input text
417          * @param string $addon    Optional addon we're searching the abstract for
418          */
419         public function testGetAbstract(string $expected, string $text, string $addon)
420         {
421                 $actual = BBCode::getAbstract($text, $addon);
422
423                 self::assertEquals($expected, $actual);
424         }
425
426
427         public function dataStripAbstract(): array
428         {
429                 return [
430                         'no-abstract' => [
431                                 'expected' => 'Venture the only home we\'ve ever known laws of physics tendrils of gossamer clouds a still more glorious dawn awaits Sea of Tranquility. With pretty stories for which there\'s little good evidence the ash of stellar alchemy corpus callosum preserve and cherish that pale blue dot descended from astronomers preserve and cherish that pale blue dot. A mote of dust suspended in a sunbeam paroxysm of global death two ghostly white figures in coveralls and helmets are softly dancing descended from astronomers star stuff harvesting star light gathered by gravity and billions upon billions upon billions upon billions upon billions upon billions upon billions.',
432                                 'text' => 'Venture the only home we\'ve ever known laws of physics tendrils of gossamer clouds a still more glorious dawn awaits Sea of Tranquility. With pretty stories for which there\'s little good evidence the ash of stellar alchemy corpus callosum preserve and cherish that pale blue dot descended from astronomers preserve and cherish that pale blue dot. A mote of dust suspended in a sunbeam paroxysm of global death two ghostly white figures in coveralls and helmets are softly dancing descended from astronomers star stuff harvesting star light gathered by gravity and billions upon billions upon billions upon billions upon billions upon billions upon billions.',
433                         ],
434                         'abstract' => [
435                                 'expected' => ' A very small stage in a vast cosmic arena the ash of stellar alchemy rich in heavy atoms a still more glorious dawn awaits are creatures of the cosmos Orion\'s sword. Brain is the seed of intelligence dream of the mind\'s eye inconspicuous motes of rock and gas extraordinary claims require extraordinary evidence vastness is bearable only through love quasar? Made in the interiors of collapsing stars the carbon in our apple pies cosmic ocean citizens of distant epochs paroxysm of global death dispassionate extraterrestrial observer and billions upon billions upon billions upon billions upon billions upon billions upon billions.',
436                                 'text' => '[abstract]Abstract at the beginning of the text[/abstract]A very small stage in a vast cosmic arena the ash of stellar alchemy rich in heavy atoms a still more glorious dawn awaits are creatures of the cosmos Orion\'s sword. Brain is the seed of intelligence dream of the mind\'s eye inconspicuous motes of rock and gas extraordinary claims require extraordinary evidence vastness is bearable only through love quasar? Made in the interiors of collapsing stars the carbon in our apple pies cosmic ocean citizens of distant epochs paroxysm of global death dispassionate extraterrestrial observer and billions upon billions upon billions upon billions upon billions upon billions upon billions.',
437                         ],
438                         'abstract-addon' => [
439                                 'expected' => ' Kindling the energy hidden in matter hydrogen atoms at the edge of forever vanquish the impossible ship of the imagination take root and flourish. Tingling of the spine white dwarf as a patch of light the sky calls to us Drake Equation citizens of distant epochs. Concept of the number one dispassionate extraterrestrial observer citizens of distant epochs descended from astronomers extraordinary claims require extraordinary evidence something incredible is waiting to be known and billions upon billions upon billions upon billions upon billions upon billions upon billions.',
440                                 'text' => '[abstract]Abstract at the beginning of the text[/abstract][abstract=dfrn]Abstract DFRN in the middle of the text[/abstract]Kindling the energy hidden in matter hydrogen atoms at the edge of forever vanquish the impossible ship of the imagination take root and flourish. Tingling of the spine white dwarf as a patch of light the sky calls to us Drake Equation citizens of distant epochs. Concept of the number one dispassionate extraterrestrial observer citizens of distant epochs descended from astronomers extraordinary claims require extraordinary evidence something incredible is waiting to be known and billions upon billions upon billions upon billions upon billions upon billions upon billions.',
441                         ],
442                         'abstract-multiple-addon-present' => [
443                                 'expected' => ' Cambrian explosion rich in heavy atoms take root and flourish radio telescope light years cosmic fugue. Dispassionate extraterrestrial observer white dwarf the sky calls to us another world courage of our questions two ghostly white figures in coveralls and helmets are softly dancing. Extraordinary claims require extraordinary evidence concept of the number one not a sunrise but a galaxyrise are creatures of the cosmos two ghostly white figures in coveralls and helmets are softly dancing white dwarf and billions upon billions upon billions upon billions upon billions upon billions upon billions. ',
444                                 'text' => '[abstract]Abstract at the beginning of the text[/abstract][abstract=ap]Abstract AP in the middle of the text[/abstract]Cambrian explosion rich in heavy atoms take root and flourish radio telescope light years cosmic fugue. Dispassionate extraterrestrial observer white dwarf the sky calls to us another world courage of our questions two ghostly white figures in coveralls and helmets are softly dancing. Extraordinary claims require extraordinary evidence concept of the number one not a sunrise but a galaxyrise are creatures of the cosmos two ghostly white figures in coveralls and helmets are softly dancing white dwarf and billions upon billions upon billions upon billions upon billions upon billions upon billions.[abstract=dfrn]Abstract DFRN at the end of the text[/abstract]',
445                         ],
446                         'bug-11445-code-abstract' => [
447                                 'expected' => '[code][abstract]This should not be converted[/abstract][/code]',
448                                 'text' => '[code][abstract]This should not be converted[/abstract][/code]',
449                         ],
450                         'bug-11445-noparse-abstract' => [
451                                 'expected' => '[noparse][abstract]This should not be converted[/abstract][/noparse]',
452                                 'text' => '[noparse][abstract]This should not be converted[/abstract][/noparse]',
453                         ],
454                         'bug-11445-nobb-abstract' => [
455                                 'expected' => '[nobb][abstract]This should not be converted[/abstract][/nobb]',
456                                 'text' => '[nobb][abstract]This should not be converted[/abstract][/nobb]',
457                         ],
458                         'bug-11445-pre-abstract' => [
459                                 'expected' => '[pre][abstract]This should not be converted[/abstract][/pre]',
460                                 'text' => '[pre][abstract]This should not be converted[/abstract][/pre]',
461                         ],
462                 ];
463         }
464
465         /**
466          * @dataProvider dataStripAbstract
467          *
468          * @param string $expected Expected text without abstracts
469          * @param string $text     Input text
470          */
471         public function testStripAbstract(string $expected, string $text)
472         {
473                 $actual = BBCode::stripAbstract($text);
474
475                 self::assertEquals($expected, $actual);
476         }
477
478         public function dataFetchShareAttributes(): array
479         {
480                 return [
481                         'no-tag' => [
482                                 'expected' => [],
483                                 'text' => 'Venture the only home we\'ve ever known laws of physics tendrils of gossamer clouds a still more glorious dawn awaits Sea of Tranquility. With pretty stories for which there\'s little good evidence the ash of stellar alchemy corpus callosum preserve and cherish that pale blue dot descended from astronomers preserve and cherish that pale blue dot. A mote of dust suspended in a sunbeam paroxysm of global death two ghostly white figures in coveralls and helmets are softly dancing descended from astronomers star stuff harvesting star light gathered by gravity and billions upon billions upon billions upon billions upon billions upon billions upon billions.',
484                         ],
485                         'just-open' => [
486                                 'expected' => [],
487                                 'text' => '[share]',
488                         ],
489                         'empty-tag' => [
490                                 'expected' => [
491                                         'author' => '',
492                                         'profile' => '',
493                                         'avatar' => '',
494                                         'link' => '',
495                                         'posted' => '',
496                                         'guid' => '',
497                                         'message_id' => '',
498                                         'comment' => '',
499                                         'shared' => '',
500                                 ],
501                                 'text' => '[share][/share]',
502                         ],
503                         'comment-shared' => [
504                                 'expected' => [
505                                         'author' => '',
506                                         'profile' => '',
507                                         'avatar' => '',
508                                         'link' => '',
509                                         'posted' => '',
510                                         'guid' => '',
511                                         'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
512                                         'comment' => 'comment',
513                                         'shared' => '',
514                                 ],
515                                 'text' => ' comment
516                                 [share]https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243[/share]',
517                         ],
518                         'all-attributes' => [
519                                 'expected' => [
520                                         'author' => 'Hypolite Petovan',
521                                         'profile' => 'https://friendica.mrpetovan.com/profile/hypolite',
522                                         'avatar' => 'https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png',
523                                         'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
524                                         'posted' => '2022-06-16 12:34:10',
525                                         'guid' => '735a2029-1062-ab23-42e4-f9c631220243',
526                                         'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
527                                         'comment' => '',
528                                         'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
529 Disney: So a morally grey “choose your side” story, right?
530 Lucas: For the right price, yes.',
531                                 ],
532                                 'text' => "[share
533                                         author='Hypolite Petovan'
534                                         profile='https://friendica.mrpetovan.com/profile/hypolite'
535                                         avatar='https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png'
536                                         link='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
537                                         posted='2022-06-16 12:34:10'
538                                         guid='735a2029-1062-ab23-42e4-f9c631220243'
539                                         message_id='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
540                                 ]George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
541 Disney: So a morally grey “choose your side” story, right?
542 Lucas: For the right price, yes.[/share]",
543                         ],
544                         'optional-attributes' => [
545                                 'expected' => [
546                                         'author' => 'Hypolite Petovan',
547                                         'profile' => 'https://friendica.mrpetovan.com/profile/hypolite',
548                                         'avatar' => 'https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png',
549                                         'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
550                                         'posted' => '2022-06-16 12:34:10',
551                                         'guid' => '',
552                                         'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
553                                         'comment' => '',
554                                         'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
555 Disney: So a morally grey “choose your side” story, right?
556 Lucas: For the right price, yes.',
557                                 ],
558                                 'text' => "[share
559                                         author='Hypolite Petovan'
560                                         profile='https://friendica.mrpetovan.com/profile/hypolite'
561                                         avatar='https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png'
562                                         link='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
563                                         posted='2022-06-16 12:34:10'
564                                         message_id='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
565                                 ]George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
566 Disney: So a morally grey “choose your side” story, right?
567 Lucas: For the right price, yes.[/share]",
568                         ],
569                         'double-quotes' => [
570                                 'expected' => [
571                                         'author' => 'Hypolite Petovan',
572                                         'profile' => 'https://friendica.mrpetovan.com/profile/hypolite',
573                                         'avatar' => 'https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png',
574                                         'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
575                                         'posted' => '2022-06-16 12:34:10',
576                                         'guid' => '',
577                                         'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
578                                         'comment' => '',
579                                         'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
580 Disney: So a morally grey “choose your side” story, right?
581 Lucas: For the right price, yes.',
582                                 ],
583                                 'text' => '[share
584                                         author="Hypolite Petovan"
585                                         profile="https://friendica.mrpetovan.com/profile/hypolite"
586                                         avatar="https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png"
587                                         link="https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243"
588                                         message_id="https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243"
589                                         posted="2022-06-16 12:34:10"
590                                 ]George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
591 Disney: So a morally grey “choose your side” story, right?
592 Lucas: For the right price, yes.[/share]',
593                         ],
594                 ];
595         }
596
597         /**
598          * @dataProvider dataFetchShareAttributes
599          *
600          * @param array $expected Expected attribute array
601          * @param string $text    Input text
602          */
603         public function testFetchShareAttributes(array $expected, string $text)
604         {
605                 $actual = BBCode::fetchShareAttributes($text);
606
607                 self::assertEquals($expected, $actual);
608         }
609 }