19 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../../../vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
36 public function legacy(): I\Component\Legacy\Factory
38 return new I\Component\Legacy\Factory(
new I\
Component\SignalGenerator());
51 $image =
new I\Component\Image\Image(
"standard",
"src",
"alt");
53 return $cf->standard(
"Card Title", $image);
58 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Card\\Standard", $this->
getBaseCard());
63 $button_factory =
new I\Component\Button\Factory();
64 $button = $button_factory->shy(
"Card Title New",
"");
67 $image =
new I\Component\Image\Image(
"standard",
"src",
"alt");
69 $this->assertEquals($button, $cf->standard($button, $image)->getTitle());
76 $this->assertEquals(
"Card Title",
$c->getTitle());
82 $c =
$c->withTitle(
"Card Title New");
84 $this->assertEquals(
"Card Title New",
$c->getTitle());
90 $button_factory =
new I\Component\Button\Factory();
91 $button = $button_factory->shy(
"Card Title New",
"");
93 $c =
$c->withTitle($button);
94 $this->assertEquals($button,
$c->getTitle());
100 $c =
$c->withTitleAction(
"newAction");
101 $this->assertEquals(
"newAction",
$c->getTitleAction());
107 $signal = $this->createMock(
C\Signal::class);
108 $c =
$c->withTitleAction($signal);
109 $this->assertEquals([$signal],
$c->getTitleAction());
115 $c =
$c->withHighlight(
true);
116 $this->assertTrue(
$c->isHighlighted());
122 $image =
new I\Component\Image\Image(
"standard",
"src",
"alt");
124 $this->assertEquals($card->getImage(), $image);
130 $image_new =
new I\Component\Image\Image(
"standard",
"components/ILIAS/new",
"alt");
131 $c = $card->withImage($image_new);
133 $this->assertEquals(
$c->getImage(), $image_new);
140 $content =
$f->legacy()->content(
"Random Content");
141 $c =
$c->withSections(array($content));
143 $this->assertEquals(
$c->getSections(), array($content));
148 $r = $this->getDefaultRenderer();
150 $content = $this->getfactory()->legacy()->content(
"Random Content");
152 $c =
$c->withSections(array($content));
154 $html = $this->brutallyTrimHTML(
$r->render(
$c));
157 "<div class=\"il-card thumbnail\">" .
158 " <div class=\"il-card-image-container\"><img src=\"src\" class=\"img-standard\" alt=\"open Card Title\" /></div>" .
159 " <div class=\"card-no-highlight\"></div>" .
160 " <div class=\"caption card-title\">Card Title</div>" .
161 " <div class=\"caption\">Random Content</div>" .
164 $this->assertHTMLEquals($this->brutallyTrimHTML($expected_html), $html);
169 $r = $this->getDefaultRenderer();
171 $c =
$c->withHighlight(
true);
173 $html = $this->brutallyTrimHTML(
$r->render(
$c));
176 "<div class=\"il-card thumbnail\">" .
177 " <div class=\"il-card-image-container\"><img src=\"src\" class=\"img-standard\" alt=\"open Card Title\" /></div>" .
178 " <div class=\"card-highlight\"></div>" .
179 " <div class=\"caption card-title\">Card Title</div>" .
182 $this->assertHTMLEquals($this->brutallyTrimHTML($expected_html), $html);
187 $r = $this->getDefaultRenderer();
189 $title =
new I\Component\Button\Shy(
'Card Title',
'');
190 $c =
$c->withTitle($title);
192 $html = $this->brutallyTrimHTML(
$r->render(
$c));
195 "<div class=\"il-card thumbnail\">" .
196 " <div class=\"il-card-image-container\"><img src=\"src\" class=\"img-standard\" alt=\"open Card Title\" /></div>" .
197 " <div class=\"card-no-highlight\"></div>" .
198 " <div class=\"caption card-title\">" .
$r->render($title) .
"</div>" .
201 $this->assertHTMLEquals($this->brutallyTrimHTML($expected_html), $html);
testFactoryWithShyButton()
Test on card implementation.
testImplementsFactoryInterface()
testWithSignalTitleAction()
legacy()
expected output: > ILIAS shows the rendered Component.
testRenderContentWithHighlight()
testWithTitleAsShyButton()
testWithStringTitleAction()
test_render_content_with_component_title()