]> git.mxchange.org Git - friendica.git/blob - tests/src/Content/Text/HTMLTest.php
Merge pull request #8272 from MrPetovan/bug/8254-regex-url-img
[friendica.git] / tests / src / Content / Text / HTMLTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\HTML;
25 use Friendica\Test\MockedTest;
26 use Friendica\Test\Util\AppMockTrait;
27 use Friendica\Test\Util\VFSTrait;
28
29 class HTMLTest extends MockedTest
30 {
31         use VFSTrait;
32         use AppMockTrait;
33
34         protected function setUp()
35         {
36                 parent::setUp();
37                 $this->setUpVfsDir();
38                 $this->mockApp($this->root);
39         }
40
41         public function dataHTML()
42         {
43                 $inputFiles = glob(__DIR__ . '/../../../datasets/content/text/html/*.html');
44
45                 $data = [];
46
47                 foreach ($inputFiles as $file) {
48                         $data[str_replace('.html', '', $file)] = [
49                                 'input'    => file_get_contents($file),
50                                 'expected' => file_get_contents(str_replace('.html', '.txt', $file))
51                         ];
52                 }
53
54                 return $data;
55         }
56
57         /**
58          * Test convert different input Markdown text into HTML
59          *
60          * @dataProvider dataHTML
61          *
62          * @param string $input    The Markdown text to test
63          * @param string $expected The expected HTML output
64          * @throws \Exception
65          */
66         public function testToPlaintext($input, $expected)
67         {
68                 $output = HTML::toPlaintext($input, 0);
69
70                 $this->assertEquals($expected, $output);
71         }
72
73         public function dataHTMLText()
74         {
75                 return [
76                         'bug-7665-audio-tag' => [
77                                 'expectedBBCode' => '[audio]http://www.cendrones.fr/colloque2017/jonathanbocquet.mp3[/audio]',
78                                 '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>',
79                         ],
80                         'bug-8075-html-tags' => [
81                                 'expectedBBCode' => "<big rant here> I don't understand tests",
82                                 'html' => "&lt;big rant here&gt; I don't understand tests",
83                         ],
84                 ];
85         }
86
87         /**
88          * Test convert bbcodes to HTML
89          *
90          * @dataProvider dataHTMLText
91          *
92          * @param string $expectedBBCode Expected BBCode output
93          * @param string $html           HTML text
94          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
95          */
96         public function testToBBCode($expectedBBCode, $html)
97         {
98                 $actual = HTML::toBBCode($html);
99
100                 $this->assertEquals($expectedBBCode, $actual);
101         }
102 }