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 as
I;
21 $factory =
new class extends NoUIFactory {
22 public function legacy($content)
24 $f =
new I\Component\Legacy\Factory(
new I\
Component\SignalGenerator());
25 return $f->legacy($content);
33 return new \ILIAS\UI\Implementation\Component\Card\Factory();
39 $image =
new I\Component\Image\Image(
"standard",
"src",
"alt");
41 return $cf->standard(
"Card Title", $image);
46 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Card\\Standard", $this->
getBaseCard());
53 $this->assertEquals(
$c->getTitle(),
"Card Title");
59 $c =
$c->withTitle(
"Card Title New");
61 $this->assertEquals(
$c->getTitle(),
"Card Title New");
67 $c =
$c->withTitleAction(
"newAction");
68 $this->assertEquals(
"newAction",
$c->getTitleAction());
74 $signal = $this->createMock(
C\Signal::class);
75 $c =
$c->withTitleAction($signal);
76 $this->assertEquals([$signal],
$c->getTitleAction());
82 $c =
$c->withHighlight(
true);
83 $this->assertTrue(
$c->isHighlighted());
89 $image =
new I\Component\Image\Image(
"standard",
"src",
"alt");
91 $this->assertEquals($card->getImage(), $image);
97 $image_new =
new I\Component\Image\Image(
"standard",
"src/new",
"alt");
98 $c = $card->withImage($image_new);
100 $this->assertEquals(
$c->getImage(), $image_new);
107 $content =
$f->legacy(
"Random Content");
108 $c =
$c->withSections(array($content));
110 $this->assertEquals(
$c->getSections(), array($content));
117 $content = $this->
getFactory()->legacy(
"Random Content");
119 $c =
$c->withSections(array($content));
121 $html = $r->render(
$c);
124 "<div class=\"il-card thumbnail\">" .
125 " <img src=\"src\" class=\"img-standard\" alt=\"alt\" />" .
126 " <div class=\"card-no-highlight\"></div>" .
127 " <div class=\"caption\">" .
128 " <div class=\"card-title\">Card Title</div>" .
130 " <div class=\"caption\">Random Content</div>" .
140 $c =
$c->withHighlight(
true);
142 $html = $r->render(
$c);
145 "<div class=\"il-card thumbnail\">" .
146 " <img src=\"src\" class=\"img-standard\" alt=\"alt\" />" .
147 " <div class=\"card-highlight\"></div>" .
148 " <div class=\"caption\">" .
149 " <div class=\"card-title\">Card Title</div>" .
test_render_content_full()
test_with_string_title_action()
getDefaultRenderer(JavaScriptBinding $js_binding=null)
test_with_signal_title_action()
Test on card implementation.
test_render_content_with_highlight()
Provides common functionality for UI tests.
assertHTMLEquals($expected_html_as_string, $html_as_string)
test_implements_factory_interface()