ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
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
21
use
PHPUnit\Framework\TestCase
;
22
use
ILIAS\Data\Text\Shape\Markdown
;
23
use
ILIAS\Data
;
24
use
ILIAS\Data\Text\HTML
;
25
use
ILIAS\Data\Text\PlainText
;
26
27
class
MarkdownShapeTest
extends
TestCase
28
{
29
protected
Markdown
$markdown_shape
;
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
}
MarkdownShapeTest
Definition:
MarkdownShapeTest.php:27
ILIAS\UI\examples\Layout\Page\Standard\$refinery
$refinery
Definition:
ui.php:137
MarkdownShapeTest\testToPlainText
testToPlainText(string $markdown_string, PlainText $expected_text)
stringToPlainDataProvider
Definition:
MarkdownShapeTest.php:81
MarkdownShapeTest\testToHTML
testToHTML(string $markdown_string, HTML $expected_html)
stringToHTMLDataProvider
Definition:
MarkdownShapeTest.php:72
ILIAS
Interface Observer Contains several chained tasks and infos about them.
Definition:
AccessControl.php:21
ILIAS\Data\Text\PlainText
This class currently is a stub only.
Definition:
PlainText.php:27
Markdown
ILIAS\Data\Text\Shape\Markdown
Definition:
Markdown.php:28
MarkdownShapeTest\stringToHTMLDataProvider
static stringToHTMLDataProvider()
Definition:
MarkdownShapeTest.php:39
Factory
PlainText
ILIAS\Data\Text\HTML
ILIAS\Data\Text\HTML
This class currently is a stub only.
Definition:
HTML.php:27
MarkdownShapeTest\stringToPlainDataProvider
static stringToPlainDataProvider()
Definition:
MarkdownShapeTest.php:54
MarkdownShapeTest\setUp
setUp()
Definition:
MarkdownShapeTest.php:31
TestCase
MarkdownShapeTest\$markdown_shape
Markdown $markdown_shape
Definition:
MarkdownShapeTest.php:29
ILIAS\Data
Definition:
Alphanumeric.php:24
TestCase
components
ILIAS
Data
tests
Text
Shape
MarkdownShapeTest.php
Generated on Thu Apr 3 2025 23:02:44 for ILIAS by
1.8.13 (using
Doxyfile
)