]> git.mxchange.org Git - friendica.git/blob - tests/src/Content/Text/HTMLTest.php
"escapeTags" is finally removed
[friendica.git] / tests / src / Content / Text / HTMLTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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 Exception;
25 use Friendica\Content\Text\HTML;
26 use Friendica\Network\HTTPException\InternalServerErrorException;
27 use Friendica\Test\MockedTest;
28 use Friendica\Test\Util\AppMockTrait;
29 use Friendica\Test\Util\VFSTrait;
30
31 class HTMLTest extends MockedTest
32 {
33         use VFSTrait;
34         use AppMockTrait;
35
36         protected function setUp(): void
37         {
38                 parent::setUp();
39                 $this->setUpVfsDir();
40                 $this->mockApp($this->root);
41         }
42
43         public function dataHTML()
44         {
45                 $inputFiles = glob(__DIR__ . '/../../../datasets/content/text/html/*.html');
46
47                 $data = [];
48
49                 foreach ($inputFiles as $file) {
50                         $data[str_replace('.html', '', $file)] = [
51                                 'input'    => file_get_contents($file),
52                                 'expected' => file_get_contents(str_replace('.html', '.txt', $file))
53                         ];
54                 }
55
56                 return $data;
57         }
58
59         /**
60          * Test convert different input Markdown text into HTML
61          *
62          * @dataProvider dataHTML
63          *
64          * @param string $input    The Markdown text to test
65          * @param string $expected The expected HTML output
66          *
67          * @throws Exception
68          */
69         public function testToPlaintext(string $input, string $expected)
70         {
71                 $output = HTML::toPlaintext($input, 0);
72
73                 self::assertEquals($expected, $output);
74         }
75
76         public function dataHTMLText()
77         {
78                 return [
79                         'bug-7665-audio-tag' => [
80                                 'expectedBBCode' => '[audio]http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3[/audio]',
81                                 'html' => '<audio src="http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3" controls="controls"><a href="http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3">http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3</a></audio>',
82                         ],
83                         'bug-8075-html-tags' => [
84                                 'expectedBBCode' => "<big rant here> I don't understand tests",
85                                 'html' => "&lt;big rant here&gt; I don't understand tests",
86                         ],
87                         'bug-10877-code-entities' => [
88                                 'expectedBBCode' => "Now playing
89 [code]
90 echo \"main(i){for(i=0;;i++)putchar(((i*(i>>8|i>>9)&46&i>>8))^(i&i>>13|i>>6));}\" | gcc -o a.out -x c - 2> /dev/null
91 ./a.out | aplay -q 2> /dev/null
92 [/code]
93 its surprisingly good",
94                                 'html' => "<p>Now playing</p><pre><code>echo &quot;main(i){for(i=0;;i++)putchar(((i*(i&gt;&gt;8|i&gt;&gt;9)&amp;46&amp;i&gt;&gt;8))^(i&amp;i&gt;&gt;13|i&gt;&gt;6));}&quot; | gcc -o a.out -x c - 2&gt; /dev/null
95 ./a.out | aplay -q 2&gt; /dev/null</code></pre><p>its surprisingly good</p>",
96                         ],
97                 ];
98         }
99
100         /**
101          * Test convert bbcodes to HTML
102          *
103          * @dataProvider dataHTMLText
104          *
105          * @param string $expectedBBCode Expected BBCode output
106          * @param string $html           HTML text
107          *
108          * @throws InternalServerErrorException
109          */
110         public function testToBBCode(string $expectedBBCode, string $html)
111         {
112                 $actual = HTML::toBBCode($html);
113
114                 self::assertEquals($expectedBBCode, $actual);
115         }
116 }