ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
WordOnlyMarkdownShapeTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 use ILIAS\Data;
27 
29 {
31 
32  protected function setUp(): void
33  {
34  $markup = $this->createMock(Data\Text\Markup::class);
35  $language = $this->createMock(ilLanguage::class);
36  $data_factory = new Data\Factory();
37  $refinery = new ILIAS\Refinery\Factory($data_factory, $language);
38  $this->word_only_markdown_shape = new WordOnlyMarkdown(new \ILIAS\Refinery\String\MarkdownFormattingToHTML());
39  }
40 
41  public static function constructDataProvider(): array
42  {
43  return [
44  [Structure::BOLD, Structure::ITALIC]
45  ];
46  }
47 
48  public static function stringComplianceDataProvider(): array
49  {
50  return [
51  ["This text has **bold** and _italic_ content", true],
52  ["> Quote block is not allowed", false],
53  ["Paragraphs\n\nare not allowed.", false],
54  ["Line breaks\\\nare not allowed.", false],
55  ["Also these \nline breaks are not allowed.", false]
56  ];
57  }
58 
62  public function testGetSupportedStructure(Structure $dp_bold, Structure $dp_italic): void
63  {
64  $supported_structure = $this->word_only_markdown_shape->getSupportedStructure();
65  $exptected = [
66  $dp_bold,
67  $dp_italic
68  ];
69 
70  $this->assertEquals($exptected, $supported_structure);
71  }
72 
76  public function testIsRawStringCompliant(string $markdown_string, bool $compliance): void
77  {
78  $this->assertEquals($compliance, $this->word_only_markdown_shape->isRawStringCompliant($markdown_string));
79  }
80 }
Interface Observer Contains several chained tasks and infos about them.
testGetSupportedStructure(Structure $dp_bold, Structure $dp_italic)
constructDataProvider
testIsRawStringCompliant(string $markdown_string, bool $compliance)
stringComplianceDataProvider