3 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
35 $field_factory = $this->createMock(FieldFactory::class);
36 return new class ($field_factory) extends
NoUIFactory {
43 public function modal(): C\Modal\Factory
45 return new I\Component\Modal\Factory(
new I\
Component\SignalGenerator(), $this->factory);
47 public function button(): C\Button\Factory
49 return new I\Component\Button\Factory();
56 return new I\Component\Player\Factory();
63 $audio =
$f->audio(
"/foo",
"bar");
65 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Player\\Audio", $audio);
72 $audio =
$f->audio(
"/foo");
74 $this->assertEquals(
"/foo", $audio->getSource());
81 $audio =
$f->audio(
"/foo",
"bar");
83 $this->assertEquals(
"bar", $audio->getTranscription());
91 $audio =
$f->audio(
"/foo");
93 $html = $r->render($audio);
96 <div
class=
"il-audio-container">
97 <audio
class=
"il-audio-player" id=
"id_1" src=
"/foo" preload=
"metadata"></audio>
111 $audio =
$f->audio(
"/foo",
"x*123");
113 $html = $r->render($audio);
117 is_int(strpos($html,
"ui_transcription</button>"))
121 is_int(strpos($html,
"il-modal-lightbox"))
125 is_int(strpos($html,
"x*123"))
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
test_implements_factory_interface()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
test_get_title_get_transcript()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
test_get_title_get_source()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
brutallyTrimHTML(string $html)
A more radical version of normalizeHTML.
assertHTMLEquals(string $expected_html_as_string, string $html_as_string)
test_render_with_transcript()
Provides common functionality for UI tests.
__construct(Container $dic, ilPlugin $plugin)