3 declare(strict_types=1);
21 require_once(
"libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
49 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Toast\\Factory",
$f);
51 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Toast\\Toast",
$f->standard(
'', $this->getIconFactory()->standard(
'',
'')));
52 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Toast\\Container",
$f->container());
58 public function test_toast(
string $title,
string $description,
int $vanish_time,
int $delay_time,
string $action): void
61 ->withDescription($description)
62 ->withVanishTime($vanish_time)
63 ->withDelayTime($delay_time)
67 $this->assertNotNull($toast);
68 $this->assertEquals($title, $toast->getTitle());
69 $this->assertEquals($description, $toast->getDescription());
70 $this->assertEquals($vanish_time, $toast->getVanishTime());
71 $this->assertEquals($delay_time, $toast->getDelayTime());
72 $this->assertEquals($action, $toast->getAction());
73 $this->assertCount(1, $toast->getLinks());
74 $this->assertInstanceOf(Link::class, $toast->getLinks()[0]);
75 $this->assertCount(0, $toast->withoutLinks()->getLinks());
76 $this->assertInstanceOf(Icon::class, $toast->getIcon());
89 $this->assertCount(1,
$container->getToasts());
90 $this->assertInstanceOf(Toast::class,
$container->getToasts()[0]);
91 $this->assertCount(0,
$container->withoutToasts()->getToasts());
97 [
'title',
'description', 5000, 500,
'test.php'],
98 [
'',
'', -5000, -500,
''],
99 [
'"/><script>alert("hack")</script>',
'"/><script>alert("hack")</script>', PHP_INT_MAX, PHP_INT_MIN,
'test.php']
standard()
This is an example, of how the Notification Slate is generated by assigning Notification Items to it...
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This implements commonalities between Links.
test_toast(string $title, string $description, int $vanish_time, int $delay_time, string $action)
toast_provider
Provides common functionality for UI tests.
This is how the factory for UI elements looks.
test_implements_factory_interface()
test_toast_container(string $title, string $description, int $vanish_time)
toast_provider