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