ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MarkdownShapeTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 use ILIAS\Data;
26 
28 {
30 
31  protected function setUp(): void
32  {
33  $language = $this->createMock(ilLanguage::class);
34  $data_factory = new Data\Factory();
35  $refinery = new ILIAS\Refinery\Factory($data_factory, $language);
36  $this->markdown_shape = new Markdown(new \ILIAS\Refinery\String\MarkdownFormattingToHTML());
37  }
38 
39  public static function stringToHTMLDataProvider(): array
40  {
41  return [
42  ["lorem", new HTML("<p>lorem</p>\n")],
43  ["lorem **ipsum**", new HTML("<p>lorem <strong>ipsum</strong></p>\n")],
44  ["_lorem_ **ipsum**", new HTML("<p><em>lorem</em> <strong>ipsum</strong></p>\n")],
45  ["# Headline", new HTML("<h1>Headline</h1>\n")],
46  ["## Headline", new HTML("<h2>Headline</h2>\n")],
47  ["### Headline", new HTML("<h3>Headline</h3>\n")],
48  ["1. Lorem\n2. Ipsum", new HTML("<ol>\n<li>Lorem</li>\n<li>Ipsum</li>\n</ol>\n")],
49  ["- Lorem\n- Ipsum", new HTML("<ul>\n<li>Lorem</li>\n<li>Ipsum</li>\n</ul>\n")],
50  ["[Link Titel](https://www.ilias.de)", new HTML("<p><a href=\"https://www.ilias.de\">Link Titel</a></p>\n")]
51  ];
52  }
53 
54  public static function stringToPlainDataProvider(): array
55  {
56  return [
57  ["lorem", new PlainText("lorem")],
58  ["lorem **ipsum**", new PlainText("lorem **ipsum**")],
59  ["_lorem_ **ipsum**", new PlainText("_lorem_ **ipsum**")],
60  ["# Headline", new PlainText("# Headline")],
61  ["## Headline", new PlainText("## Headline")],
62  ["### Headline", new PlainText("### Headline")],
63  ["1. Lorem\n2. Ipsum", new PlainText("1. Lorem\n2. Ipsum")],
64  ["- Lorem\n- Ipsum", new PlainText("- Lorem\n- Ipsum")],
65  ["[Link Titel](https://www.ilias.de)", new PlainText("[Link Titel](https://www.ilias.de)")]
66  ];
67  }
68 
72  public function testToHTML(string $markdown_string, HTML $expected_html): void
73  {
74  $text = $this->markdown_shape->fromString($markdown_string);
75  $this->assertEquals($expected_html, $this->markdown_shape->toHTML($text));
76  }
77 
81  public function testToPlainText(string $markdown_string, PlainText $expected_text): void
82  {
83  $text = $this->markdown_shape->fromString($markdown_string);
84  $this->assertEquals($expected_text, $this->markdown_shape->toPlainText($text));
85  }
86 }
testToPlainText(string $markdown_string, PlainText $expected_text)
stringToPlainDataProvider
testToHTML(string $markdown_string, HTML $expected_html)
stringToHTMLDataProvider
Interface Observer Contains several chained tasks and infos about them.
This class currently is a stub only.
Definition: PlainText.php:27
static stringToHTMLDataProvider()
This class currently is a stub only.
Definition: HTML.php:27
static stringToPlainDataProvider()