ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MessageBoxTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 require_once(__DIR__ . "/../../../../../../vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ . "/../../Base.php");
23 
24 use ILIAS\UI\Component as C;
26 
31 {
32  public function getMessageBoxFactory(): IC\MessageBox\Factory
33  {
34  return new IC\MessageBox\Factory();
35  }
36  public function getButtonFactory(): IC\Button\Factory
37  {
38  return new IC\Button\Factory();
39  }
40  public function getLinkFactory(): IC\Link\Factory
41  {
42  return new IC\Link\Factory();
43  }
44 
45  public static function getMessageboxTypeProvider(): array
46  {
47  return array( array(C\MessageBox\MessageBox::FAILURE)
48  , array(C\MessageBox\MessageBox::SUCCESS)
49  , array(C\MessageBox\MessageBox::INFO)
50  , array(C\MessageBox\MessageBox::CONFIRMATION)
51  );
52  }
53 
54  public static array $canonical_css_classes = array( C\MessageBox\MessageBox::FAILURE => "alert-danger"
55  , C\MessageBox\MessageBox::SUCCESS => "alert-success"
56  , C\MessageBox\MessageBox::INFO => "alert-info"
57  , C\MessageBox\MessageBox::CONFIRMATION => "alert-warning"
58  );
59 
60  public static array $canonical_role_types = array( C\MessageBox\MessageBox::FAILURE => "alert"
61  , C\MessageBox\MessageBox::SUCCESS => "status"
62  , C\MessageBox\MessageBox::INFO => "status"
63  , C\MessageBox\MessageBox::CONFIRMATION => "status"
64  );
65 
66  public function getUIFactory(): NoUIFactory
67  {
68  return new class () extends NoUIFactory {
69  public function listing(): IC\Listing\Factory
70  {
71  return new IC\Listing\Factory(
72  new IC\Listing\Workflow\Factory(),
73  new IC\Listing\CharacteristicValue\Factory(),
74  new IC\Listing\Entity\Factory(),
75  );
76  }
77  };
78  }
79 
83  public function testImplementsFactoryInterface(string $factory_method): void
84  {
85  $f = $this->getMessageBoxFactory();
86 
87  $this->assertInstanceOf("ILIAS\\UI\\Component\\MessageBox\\Factory", $f);
88  $this->assertInstanceOf("ILIAS\\UI\\Component\\MessageBox\\MessageBox", $f->$factory_method("Lorem ipsum dolor sit amet."));
89  }
90 
94  public function testMessageboxTypes(string $factory_method): void
95  {
96  $f = $this->getMessageBoxFactory();
97  $g = $f->$factory_method("Lorem ipsum dolor sit amet.");
98 
99  $this->assertNotNull($g);
100  $this->assertEquals($factory_method, $g->getType());
101  }
102 
106  public function testMessageboxMessagetext(string $factory_method): void
107  {
108  $f = $this->getMessageBoxFactory();
109  $g = $f->$factory_method("Lorem ipsum dolor sit amet.");
110 
111  $this->assertNotNull($g);
112  $this->assertEquals("Lorem ipsum dolor sit amet.", $g->getMessageText());
113  }
114 
118  public function testWithButtons(string $factory_method): void
119  {
120  $f = $this->getMessageBoxFactory();
121  $bf = $this->getButtonFactory();
122  $g = $f->$factory_method("Lorem ipsum dolor sit amet.");
123 
124  $buttons = [$bf->standard("Confirm", "#"), $bf->standard("Cancel", "#")];
125  $g2 = $g->withButtons($buttons);
126 
127  $this->assertEmpty($g->getButtons());
128  $this->assertNotEmpty($g2->getButtons());
129  }
130 
134  public function testWithLinks(string $factory_method): void
135  {
136  $f = $this->getMessageBoxFactory();
137  $lf = $this->getLinkFactory();
138  $g = $f->$factory_method("Lorem ipsum dolor sit amet.");
139 
140  $links = [
141  $lf->standard("Open Exercise Assignment", "#"),
142  $lf->standard("Open other screen", "#"),
143  ];
144  $g2 = $g->withLinks($links);
145 
146  $this->assertEmpty($g->getLinks());
147  $this->assertNotEmpty($g2->getLinks());
148  }
149 
153  public function testWithButtonsAndLinks(string $factory_method): void
154  {
155  $f = $this->getMessageBoxFactory();
156  $bf = $this->getButtonFactory();
157  $lf = $this->getLinkFactory();
158  $g = $f->$factory_method("Lorem ipsum dolor sit amet.");
159 
160  $buttons = [$bf->standard("Confirm", "#"), $bf->standard("Cancel", "#")];
161  $links = [
162  $lf->standard("Open Exercise Assignment", "#"),
163  $lf->standard("Open other screen", "#"),
164  ];
165  $g2 = $g->withButtons($buttons)->withLinks($links);
166 
167  $this->assertFalse(count($g->getButtons()) > 0 && count($g->getLinks()) > 0);
168  $this->assertTrue(count($g2->getButtons()) > 0 && count($g2->getLinks()) > 0);
169  }
170 
174  public function testRenderSimple(string $factory_method): void
175  {
176  $f = $this->getMessageBoxFactory();
177  $r = $this->getDefaultRenderer();
178  $g = $f->$factory_method("Lorem ipsum dolor sit amet.");
179  $css_classes = self::$canonical_css_classes[$factory_method];
180  $role_type = self::$canonical_role_types[$factory_method];
181 
182  $html = $this->normalizeHTML($r->render($g));
183  $expected = "<div class=\"alert $css_classes\" role=\"$role_type\">" .
184  "<div class=\"ilAccHeadingHidden\"><a name=\"il_message_focus\">" .
185  $g->getType() . "_message</a></div>Lorem ipsum dolor sit amet.</div>";
186  $this->assertHTMLEquals($expected, $html);
187  }
188 
192  public function testRenderWithButtons(string $factory_method): void
193  {
194  $f = $this->getMessageBoxFactory();
195  $bf = $this->getButtonFactory();
196  $r = $this->getDefaultRenderer();
197  $css_classes = self::$canonical_css_classes[$factory_method];
198  $role_type = self::$canonical_role_types[$factory_method];
199 
200  $buttons = [$bf->standard("Confirm", "#"), $bf->standard("Cancel", "#")];
201 
202  $g = $f->$factory_method("Lorem ipsum dolor sit amet.")->withButtons($buttons);
203 
204  $html = $this->normalizeHTML($r->render($g));
205  $expected = "<div class=\"alert $css_classes\" role=\"$role_type\">" .
206  "<div class=\"ilAccHeadingHidden\"><a name=\"il_message_focus\">" .
207  $g->getType() . "_message</a></div>Lorem ipsum dolor sit amet." .
208  "<div><button class=\"btn btn-default\" data-action=\"#\" id=\"id_1\">Confirm</button>" .
209  "<button class=\"btn btn-default\" data-action=\"#\" id=\"id_2\">Cancel</button></div></div>";
210  $this->assertHTMLEquals($expected, $html);
211  }
212 
216  public function testRenderWithLinks(string $factory_method): void
217  {
218  $f = $this->getMessageBoxFactory();
219  $lf = $this->getLinkFactory();
220  $r = $this->getDefaultRenderer();
221  $css_classes = self::$canonical_css_classes[$factory_method];
222  $role_type = self::$canonical_role_types[$factory_method];
223 
224  $links = [
225  $lf->standard("Open Exercise Assignment", "#"),
226  $lf->standard("Open other screen", "#"),
227  ];
228 
229  $g = $f->$factory_method("Lorem ipsum dolor sit amet.")->withLinks($links);
230 
231  $html = $this->normalizeHTML($r->render($g));
232  $expected = "<div class=\"alert $css_classes\" role=\"$role_type\">" .
233  "<div class=\"ilAccHeadingHidden\"><a name=\"il_message_focus\">" .
234  $g->getType() . "_message</a></div>Lorem ipsum dolor sit amet." .
235  "<ul><li><a href=\"#\" >Open Exercise Assignment</a></li>" .
236  "<li><a href=\"#\" >Open other screen</a></li></ul></div>";
237  $this->assertHTMLEquals($expected, $html);
238  }
239 
243  public function testRenderWithButtonsAndLinks(string $factory_method): void
244  {
245  $f = $this->getMessageBoxFactory();
246  $bf = $this->getButtonFactory();
247  $lf = $this->getLinkFactory();
248  $r = $this->getDefaultRenderer();
249  $css_classes = self::$canonical_css_classes[$factory_method];
250  $role_type = self::$canonical_role_types[$factory_method];
251 
252  $buttons = [$bf->standard("Confirm", "#"), $bf->standard("Cancel", "#")];
253  $links = [
254  $lf->standard("Open Exercise Assignment", "#"),
255  $lf->standard("Open other screen", "#"),
256  ];
257 
258  $g = $f->$factory_method("Lorem ipsum dolor sit amet.")->withButtons($buttons)->withLinks($links);
259 
260  $html = $this->normalizeHTML($r->render($g));
261  $expected = "<div class=\"alert $css_classes\" role=\"$role_type\">" .
262  "<div class=\"ilAccHeadingHidden\"><a name=\"il_message_focus\">" .
263  $g->getType() . "_message</a></div>Lorem ipsum dolor sit amet." .
264  "<div><button class=\"btn btn-default\" data-action=\"#\" id=\"id_1\">Confirm</button>" .
265  "<button class=\"btn btn-default\" data-action=\"#\" id=\"id_2\">Cancel</button></div>" .
266  "<ul><li><a href=\"#\" >Open Exercise Assignment</a></li>" .
267  "<li><a href=\"#\" >Open other screen</a></li></ul></div>";
268  $this->assertHTMLEquals($expected, $html);
269  }
270 }
static getMessageboxTypeProvider()
testWithButtons(string $factory_method)
getMessageboxTypeProvider
testImplementsFactoryInterface(string $factory_method)
getMessageboxTypeProvider
Test on Message Box implementation.
The progress of the process/task cannot be calculated (yet), but it has started processing.
Definition: Status.php:42
testRenderWithButtons(string $factory_method)
getMessageboxTypeProvider
testWithButtonsAndLinks(string $factory_method)
getMessageboxTypeProvider
testWithLinks(string $factory_method)
getMessageboxTypeProvider
testRenderWithButtonsAndLinks(string $factory_method)
getMessageboxTypeProvider
testRenderWithLinks(string $factory_method)
getMessageboxTypeProvider
static array $canonical_role_types
testMessageboxTypes(string $factory_method)
getMessageboxTypeProvider
testRenderSimple(string $factory_method)
getMessageboxTypeProvider
testMessageboxMessagetext(string $factory_method)
getMessageboxTypeProvider
static array $canonical_css_classes
$r