]> git.mxchange.org Git - friendica.git/blob - tests/src/Content/Text/MarkdownTest.php
Merge pull request #8302 from annando/allowed-chars
[friendica.git] / tests / src / Content / Text / MarkdownTest.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\Markdown;
25 use Friendica\Test\MockedTest;
26 use Friendica\Test\Util\AppMockTrait;
27 use Friendica\Test\Util\VFSTrait;
28
29 class MarkdownTest 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 dataMarkdown()
42         {
43                 $inputFiles = glob(__DIR__ . '/../../../datasets/content/text/markdown/*.md');
44
45                 $data = [];
46
47                 foreach ($inputFiles as $file) {
48                         $data[str_replace('.md', '', $file)] = [
49                                 'input'    => file_get_contents($file),
50                                 'expected' => file_get_contents(str_replace('.md', '.html', $file))
51                         ];
52                 }
53
54                 return $data;
55         }
56
57         /**
58          * Test convert different input Markdown text into HTML
59          * @dataProvider dataMarkdown
60          *
61          * @param string $input    The Markdown text to test
62          * @param string $expected The expected HTML output
63          * @throws \Exception
64          */
65         public function testConvert($input, $expected)
66         {
67                 $output = Markdown::convert($input);
68
69                 $this->assertEquals($expected, $output);
70         }
71 }