ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
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
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ItemNotificationClientHtmlTest.php
Go to the documentation of this file.
1
<?php
2
19
require_once(__DIR__ .
"/../../../../libs/composer/vendor/autoload.php"
);
20
require_once(__DIR__ .
"/../../Base.php"
);
21
22
use
ILIAS\UI\Component
as
C
;
23
use
ILIAS\UI\Implementation\Component
as
I
;
24
use
ILIAS\UI\Implementation\Component\MainControls\Slate\Notification
;
25
29
class
ItemNotificationClientHtmlTest
extends
ILIAS_UI_TestBase
30
{
34
protected
$sig_gen
;
35
36
public
function
setUp
(): void
37
{
38
$this->sig_gen =
new
I\SignalGenerator
();
39
}
40
41
public
function
getUIFactory
():
NoUIFactory
42
{
43
$factory
=
new
class
() extends
NoUIFactory
{
44
public
function
counter(): C\Counter\Factory
45
{
46
return
new
I\Counter\Factory();
47
}
48
public
function
button(): C\Button\Factory
49
{
50
return
new
I\Button\Factory($this->sig_gen);
51
}
52
public
function
symbol():
ILIAS\UI\Component\Symbol\Factory
53
{
54
return
new
I\Symbol\Factory(
55
new
I
\Symbol\Icon\
Factory
(),
56
new
I
\Symbol\Glyph\
Factory
(),
57
new
I
\Symbol\Avatar\
Factory
()
58
);
59
}
60
public
function
item(): C\Item\Factory
61
{
62
return
new
I\Item\Factory();
63
}
64
public
function
mainControls(): C\MainControls\Factory
65
{
66
return
new
I\MainControls\Factory(
67
$this->sig_gen,
68
new
I
\MainControls\Slate\
Factory
(
69
$this->sig_gen,
70
new
\
ILIAS
\
UI
\
Implementation
\
Component
\Counter\
Factory
(),
71
$this->symbol()
72
)
73
);
74
}
75
};
76
$factory
->sig_gen =
$this->sig_gen
;
77
78
return
$factory
;
79
}
80
81
public
function
testRenderClientHtml
(): void
82
{
83
$f
= $this->
getUIFactory
();
84
$expected_html = file_get_contents(__DIR__ .
"/../../Client/Item/Notification/NotificationItemTest.html"
);
85
86
$icon =
$f
->symbol()->icon()->standard(
"name"
,
"aria_label"
,
"small"
,
false
);
87
88
$item =
$f
->item()->notification(
"item title"
, $icon)
89
->withCloseAction(
"close_action"
);
90
91
$item2 = $item->withDescription(
"Existing Description"
)
92
->withProperties([
"Label 1"
=>
"Property Value 1"
,
"Label 2"
=>
"Property Value 2"
])
93
->withAggregateNotifications([$item]);
94
$notification_slate =
$f
->mainControls()->slate()->notification(
95
"slate title"
,
96
[$item,$item2]
97
);
98
99
$glyph =
$f
->symbol()->glyph()->notification()->withCounter($this->
getUIFactory
()->counter()->novelty(2));
100
$notification_center =
$f
->mainControls()->slate()->combined(
"notification center"
, $glyph)
101
->withAdditionalEntry($notification_slate);
102
103
$this->metabar =
$f
->mainControls()->metaBar()->withAdditionalEntry(
"Test Slate"
, $notification_center);
104
$rendered_html = $this->
getDefaultRenderer
()->render($this->metabar);
105
106
$this->assertEquals($this->
brutallyTrimHTML
($expected_html), $this->
brutallyTrimHTML
($rendered_html));
107
}
108
}
NoUIFactory
Definition:
Base.php:53
ILIAS_UI_TestBase\getDefaultRenderer
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
Definition:
Base.php:355
ItemNotificationClientHtmlTest
Checks if the HTML used for the Client tests is rendered as specified.
Definition:
ItemNotificationClientHtmlTest.php:29
ILIAS\UI\Component\Symbol\Factory
Definition:
Factory.php:28
ILIAS\UI\Implementation\Component
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
UI
Class Factory.
ILIAS\UI\Implementation
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS
Class ChatMainBarProvider .
ILIAS\UI\Component
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ItemNotificationClientHtmlTest\setUp
setUp()
Definition:
ItemNotificationClientHtmlTest.php:36
ILIAS_UI_TestBase\brutallyTrimHTML
brutallyTrimHTML(string $html)
A more radical version of normalizeHTML.
Definition:
Base.php:444
ItemNotificationClientHtmlTest\testRenderClientHtml
testRenderClientHtml()
Definition:
ItemNotificationClientHtmlTest.php:81
Factory
ILIAS_UI_TestBase
Provides common functionality for UI tests.
Definition:
Base.php:298
ILIAS\UI\Implementation\Component\Table\Action
Definition:
Action.php:21
Vendor\Package\$f
$f
Definition:
example_cleaned.php:49
Notification
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\UI\Implementation\Component\SignalGenerator
Definition:
SignalGenerator.php:29
ItemNotificationClientHtmlTest\$sig_gen
$sig_gen
Definition:
ItemNotificationClientHtmlTest.php:34
ItemNotificationClientHtmlTest\getUIFactory
getUIFactory()
Definition:
ItemNotificationClientHtmlTest.php:41
$factory
$factory
Definition:
metadata.php:75
tests
UI
Component
Item
ItemNotificationClientHtmlTest.php
Generated on Fri Apr 4 2025 22:03:21 for ILIAS by
1.8.13 (using
Doxyfile
)