5 require_once(__DIR__ .
"/../../../../libs/composer/vendor/autoload.php");
6 require_once(__DIR__ .
"/../../Base.php");
8 use \ILIAS\UI\Component as
C;
9 use \ILIAS\UI\Implementation\Component\Signal;
22 return new \ILIAS\UI\Implementation\Component\Image\Factory();
30 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Image\\Factory",
$f);
31 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Image\\Image",
$f->standard(
"source",
"alt"));
32 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Image\\Image",
$f->responsive(
"source",
"alt"));
38 $i =
$f->standard(
"source",
"alt");
40 $this->assertEquals($i::STANDARD,
$i->getType());
46 $i =
$f->standard(
"source",
"alt");
48 $this->assertEquals(
"source",
$i->getSource());
54 $i =
$f->standard(
"source",
"alt");
56 $this->assertEquals(
"alt",
$i->getAlt());
63 $i =
$f->standard(
"source",
"alt");
64 $i =
$i->withSource(
"newSource");
65 $this->assertEquals(
"newSource",
$i->getSource());
71 $i =
$f->standard(
"source",
"alt");
72 $i =
$i->withAlt(
"newAlt");
73 $this->assertEquals(
"newAlt",
$i->getAlt());
79 $i =
$f->standard(
"source",
"alt");
80 $i =
$i->withAction(
"newAction");
81 $this->assertEquals(
"newAction",
$i->getAction());
87 $signal = $this->createMock(
C\Signal::class);
88 $i =
$f->standard(
"source",
"alt");
89 $i =
$i->withAction($signal);
90 $this->assertEquals([$signal],
$i->getAction());
95 $this->expectException(\InvalidArgumentException::class);
97 $f->standard(1,
"alt");
102 $this->expectException(\InvalidArgumentException::class);
104 $f->standard(
"source", 1);
111 $i =
$f->standard(
"source",
"alt");
115 $expected =
"<img src=\"source\" class=\"img-standard\" alt=\"alt\" />";
117 $this->assertEquals($expected, $html);
124 $i =
$f->responsive(
"source",
"alt");
128 $expected =
"<img src=\"source\" class=\"img-responsive\" alt=\"alt\" />";
130 $this->assertEquals($expected, $html);
137 $i =
$f->responsive(
"source",
"\"=test;\")(blah\"");
141 $expected =
"<img src=\"source\" class=\"img-responsive\" alt=\""=test;")(blah"\" />";
143 $this->assertEquals($expected, $html);
150 $i =
$f->standard(
"source",
"alt")->withAction(
"action");
154 $expected =
"<a href=\"action\"><img src=\"source\" class=\"img-standard\" alt=\"alt\" /></a>";
156 $this->assertEquals($expected, $html);
163 $signal = $this->createMock(Signal::class);
165 $i =
$f->standard(
"source",
"alt")->withAction($signal);
169 $expected =
"<a href=\"#\" id=\"id_1\"><img src=\"source\" class=\"img-standard\" alt=\"alt\" /></a>";
171 $this->assertEquals($expected, $html);
179 $i =
$f->standard(
"source",
"alt")->withAction(
"#");
183 $expected =
"<a href=\"#\"><img src=\"source\" class=\"img-standard\" alt=\"alt\" /></a>";
185 $this->assertEquals($expected, $html);
193 $i =
$f->standard(
"source",
"alt")->withAction(
"#")->withOnLoadCode(
function ($id) {
199 $expected =
"<a href=\"#\"><img src=\"source\" class=\"img-standard\" id='id_1' alt=\"alt\" /></a>";
201 $this->assertEquals($expected, $html);
test_render_with_signal_action()
test_with_empty_action_and_no_additional_on_load_code()
Test on button implementation.
getDefaultRenderer(JavaScriptBinding $js_binding=null)
test_render_with_string_action()
Provides common functionality for UI tests.
test_implements_factory_interface()
test_render_alt_escaping()
test_with_additional_on_load_code()