]> git.mxchange.org Git - friendica.git/blob - tests/src/Content/Text/BBCodeTest.php
Some tests added / ensure to have paragraphs
[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' => '<ul class="listdecimal" style="list-style-type:decimal;"><li> <a href="http://example.com/" target="_blank" rel="noopener noreferrer">http://example.com/</a></li></ul>',
162                                 'text' => '[ol][*] http://example.com/[/ol]',
163                         ],
164                         'bug-7271-condensed-nospace' => [
165                                 'expectedHtml' => '<ul class="listdecimal" style="list-style-type:decimal;"><li><a href="http://example.com/" target="_blank" rel="noopener noreferrer">http://example.com/</a></li></ul>',
166                                 'text' => '[ol][*]http://example.com/[/ol]',
167                         ],
168                         'bug-7271-indented-space' => [
169                                 'expectedHtml' => '<ul class="listbullet" style="list-style-type:circle;"><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 class="listbullet" style="list-style-type:circle;"><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 class="listbullet" style="list-style-type:circle;"><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, $try_oembed = false, int $simpleHtml = 0, bool $forPlaintext = false)
286         {
287                 $actual = BBCode::convert($text, $try_oembed, $simpleHtml, $forPlaintext);
288
289                 self::assertEquals($expectedHtml, $actual);
290         }
291
292         public function dataBBCodesToMarkdown()
293         {
294                 return [
295                         'bug-7808-gt' => [
296                                 'expected' => '&gt;`>`',
297                                 'text' => '>[code]>[/code]',
298                         ],
299                         'bug-7808-lt' => [
300                                 'expected' => '&lt;`<`',
301                                 'text' => '<[code]<[/code]',
302                         ],
303                         'bug-7808-amp' => [
304                                 'expected' => '&amp;`&`',
305                                 'text' => '&[code]&[/code]',
306                         ],
307                 ];
308         }
309
310         /**
311          * Test convert bbcodes to Markdown
312          *
313          * @dataProvider dataBBCodesToMarkdown
314          *
315          * @param string $expected Expected Markdown output
316          * @param string $text     BBCode text
317          * @param bool   $for_diaspora
318          *
319          * @throws InternalServerErrorException
320          */
321         public function testToMarkdown(string $expected, string $text, $for_diaspora = false)
322         {
323                 $actual = BBCode::toMarkdown($text, $for_diaspora);
324
325                 self::assertEquals($expected, $actual);
326         }
327
328         public function dataExpandTags()
329         {
330                 return [
331                         'bug-10692-non-word' => [
332                                 '[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]',
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                         ],
335                         'bug-10692-start-line' => [
336                                 '#[url=https://friendica.local/search?tag=L160]L160[/url]',
337                                 '#L160',
338                         ]
339                 ];
340         }
341
342         /**
343          * @dataProvider dataExpandTags
344          *
345          * @param string $expected Expected BBCode output
346          * @param string $text     Input text
347          */
348         public function testExpandTags(string $expected, string $text)
349         {
350                 $actual = BBCode::expandTags($text);
351
352                 self::assertEquals($expected, $actual);
353         }
354
355         public function dataGetAbstract(): array
356         {
357                 return [
358                         'no-abstract' => [
359                                 'expected' => '',
360                                 '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.',
361                                 'addon' => '',
362                         ],
363                         'no-abstract-addon' => [
364                                 'expected' => '',
365                                 '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.',
366                                 'addon' => 'dfrn',
367                         ],
368                         'abstract' => [
369                                 'expected' => 'Abstract at the beginning of the text',
370                                 '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.',
371                                 'addon' => '',
372                         ],
373                         'abstract-addon-not-present' => [
374                                 'expected' => 'Abstract at the beginning of the text',
375                                 '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.',
376                                 'addon' => '',
377                         ],
378                         'abstract-addon-present' => [
379                                 'expected' => 'Abstract DFRN in the middle of the text',
380                                 '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.',
381                                 'addon' => 'dfrn',
382                         ],
383                         'abstract-multiple-addon-present' => [
384                                 'expected' => 'Abstract DFRN at the end of the text',
385                                 '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]',
386                                 'addon' => 'dfrn',
387                         ],
388                         'bug-11445-code-abstract' => [
389                                 'expected' => '',
390                                 'text' => '[code][abstract]This should not be converted[/abstract][/code]',
391                                 'addon' => '',
392                         ],
393                         'bug-11445-noparse-abstract' => [
394                                 'expected' => '',
395                                 'text' => '[noparse][abstract]This should not be converted[/abstract][/noparse]',
396                                 'addon' => '',
397                         ],
398                         'bug-11445-nobb-abstract' => [
399                                 'expected' => '',
400                                 'text' => '[nobb][abstract]This should not be converted[/abstract][/nobb]',
401                                 'addon' => '',
402                         ],
403                         'bug-11445-pre-abstract' => [
404                                 'expected' => '',
405                                 'text' => '[pre][abstract]This should not be converted[/abstract][/pre]',
406                                 'addon' => '',
407                         ],
408                 ];
409         }
410
411         /**
412          * @dataProvider dataGetAbstract
413          *
414          * @param string $expected Expected abstract text
415          * @param string $text     Input text
416          * @param string $addon    Optional addon we're searching the abstract for
417          */
418         public function testGetAbstract(string $expected, string $text, string $addon)
419         {
420                 $actual = BBCode::getAbstract($text, $addon);
421
422                 self::assertEquals($expected, $actual);
423         }
424
425
426         public function dataStripAbstract(): array
427         {
428                 return [
429                         'no-abstract' => [
430                                 '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.',
431                                 '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.',
432                         ],
433                         'abstract' => [
434                                 '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.',
435                                 '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.',
436                         ],
437                         'abstract-addon' => [
438                                 '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.',
439                                 '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.',
440                         ],
441                         'abstract-multiple-addon-present' => [
442                                 '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. ',
443                                 '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]',
444                         ],
445                         'bug-11445-code-abstract' => [
446                                 'expected' => '[code][abstract]This should not be converted[/abstract][/code]',
447                                 'text' => '[code][abstract]This should not be converted[/abstract][/code]',
448                         ],
449                         'bug-11445-noparse-abstract' => [
450                                 'expected' => '[noparse][abstract]This should not be converted[/abstract][/noparse]',
451                                 'text' => '[noparse][abstract]This should not be converted[/abstract][/noparse]',
452                         ],
453                         'bug-11445-nobb-abstract' => [
454                                 'expected' => '[nobb][abstract]This should not be converted[/abstract][/nobb]',
455                                 'text' => '[nobb][abstract]This should not be converted[/abstract][/nobb]',
456                         ],
457                         'bug-11445-pre-abstract' => [
458                                 'expected' => '[pre][abstract]This should not be converted[/abstract][/pre]',
459                                 'text' => '[pre][abstract]This should not be converted[/abstract][/pre]',
460                         ],
461                 ];
462         }
463
464         /**
465          * @dataProvider dataStripAbstract
466          *
467          * @param string $expected Expected text without abstracts
468          * @param string $text     Input text
469          */
470         public function testStripAbstract(string $expected, string $text)
471         {
472                 $actual = BBCode::stripAbstract($text);
473
474                 self::assertEquals($expected, $actual);
475         }
476
477         public function dataFetchShareAttributes(): array
478         {
479                 return [
480                         'no-tag' => [
481                                 'expected' => [],
482                                 '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.',
483                         ],
484                         'just-open' => [
485                                 'expected' => [],
486                                 'text' => '[share]',
487                         ],
488                         'empty-tag' => [
489                                 'expected' => [
490                                         'author' => '',
491                                         'profile' => '',
492                                         'avatar' => '',
493                                         'link' => '',
494                                         'posted' => '',
495                                         'guid' => '',
496                                         'message_id' => '',
497                                         'comment' => '',
498                                         'shared' => '',
499                                 ],
500                                 'text' => '[share][/share]',
501                         ],
502                         'comment-shared' => [
503                                 'expected' => [
504                                         'author' => '',
505                                         'profile' => '',
506                                         'avatar' => '',
507                                         'link' => '',
508                                         'posted' => '',
509                                         'guid' => '',
510                                         'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
511                                         'comment' => 'comment',
512                                         'shared' => '',
513                                 ],
514                                 'text' => ' comment
515                                 [share]https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243[/share]',
516                         ],
517                         'all-attributes' => [
518                                 'expected' => [
519                                         'author' => 'Hypolite Petovan',
520                                         'profile' => 'https://friendica.mrpetovan.com/profile/hypolite',
521                                         'avatar' => 'https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png',
522                                         'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
523                                         'posted' => '2022-06-16 12:34:10',
524                                         'guid' => '735a2029-1062-ab23-42e4-f9c631220243',
525                                         'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
526                                         'comment' => '',
527                                         'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
528 Disney: So a morally grey “choose your side” story, right?
529 Lucas: For the right price, yes.',
530                                 ],
531                                 'text' => "[share
532                                         author='Hypolite Petovan'
533                                         profile='https://friendica.mrpetovan.com/profile/hypolite'
534                                         avatar='https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png'
535                                         link='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
536                                         posted='2022-06-16 12:34:10'
537                                         guid='735a2029-1062-ab23-42e4-f9c631220243'
538                                         message_id='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
539                                 ]George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
540 Disney: So a morally grey “choose your side” story, right?
541 Lucas: For the right price, yes.[/share]",
542                         ],
543                         'optional-attributes' => [
544                                 'expected' => [
545                                         'author' => 'Hypolite Petovan',
546                                         'profile' => 'https://friendica.mrpetovan.com/profile/hypolite',
547                                         'avatar' => 'https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png',
548                                         'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
549                                         'posted' => '2022-06-16 12:34:10',
550                                         'guid' => '',
551                                         'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
552                                         'comment' => '',
553                                         'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
554 Disney: So a morally grey “choose your side” story, right?
555 Lucas: For the right price, yes.',
556                                 ],
557                                 'text' => "[share
558                                         author='Hypolite Petovan'
559                                         profile='https://friendica.mrpetovan.com/profile/hypolite'
560                                         avatar='https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png'
561                                         link='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
562                                         posted='2022-06-16 12:34:10'
563                                         message_id='https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243'
564                                 ]George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
565 Disney: So a morally grey “choose your side” story, right?
566 Lucas: For the right price, yes.[/share]",
567                         ],
568                         'double-quotes' => [
569                                 'expected' => [
570                                         'author' => 'Hypolite Petovan',
571                                         'profile' => 'https://friendica.mrpetovan.com/profile/hypolite',
572                                         'avatar' => 'https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png',
573                                         'link' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
574                                         'posted' => '2022-06-16 12:34:10',
575                                         'guid' => '',
576                                         'message_id' => 'https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243',
577                                         'comment' => '',
578                                         'shared' => 'George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
579 Disney: So a morally grey “choose your side” story, right?
580 Lucas: For the right price, yes.',
581                                 ],
582                                 'text' => '[share
583                                         author="Hypolite Petovan"
584                                         profile="https://friendica.mrpetovan.com/profile/hypolite"
585                                         avatar="https://friendica.mrpetovan.com/photo/20682437145daa4e85f019a278584494-5.png"
586                                         link="https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243"
587                                         message_id="https://friendica.mrpetovan.com/display/735a2029-1062-ab23-42e4-f9c631220243"
588                                         posted="2022-06-16 12:34:10"
589                                 ]George Lucas: I made a science-fiction universe with a straightforward anti-authoritarianism plot where even the libertarian joins the rebellion.
590 Disney: So a morally grey “choose your side” story, right?
591 Lucas: For the right price, yes.[/share]',
592                         ],
593                 ];
594         }
595
596         /**
597          * @dataProvider dataFetchShareAttributes
598          *
599          * @param array $expected Expected attribute array
600          * @param string $text    Input text
601          */
602         public function testFetchShareAttributes(array $expected, string $text)
603         {
604                 $actual = BBCode::fetchShareAttributes($text);
605
606                 self::assertEquals($expected, $actual);
607         }
608 }