ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
TreeSelectTest Class Reference
+ Inheritance diagram for TreeSelectTest:
+ Collaboration diagram for TreeSelectTest:

Public Member Functions

 getDefaultRenderer (?JavaScriptBinding $js_binding=null, array $with_stub_renderings=[], array $with_additional_contexts=[],)
 
 getUIFactory ()
 
 testWithValueForInvalidArguments (mixed $value)
 
 testWithValueForValidArguments (string|int|null $value)
 
 testRenderWithValue ()
 
 testRenderWithDisabled ()
 
 testRenderWithRequired ()
 
 testRenderDrilldownMenu ()
 

Static Public Member Functions

static getInvalidArgumentsForWithValue ()
 
static getValidArgumentsForWithValue ()
 

Protected Member Functions

 setUp ()
 
 getMenuFactory ()
 
 getFieldFactory (?Field\Node\Factory $node_factory=null)
 
 getNodeRetrieval (array $node_stubs=[], array $leaf_stubs=[])
 
 getLeafStub (string|int $id='', string $name='')
 
 getBreadcrumbsStub ()
 
 getDrilldownStub ()
 
 getLinkStub ()
 
 getBulkyStub ()
 
 createSimpleRenderingStub (string $class_name)
 

Protected Attributes

Component Button Bulky &MockObject $bulky_stub
 
string $bulky_html
 
Component Link Standard &MockObject $link_stub
 
string $link_html
 
Component Menu Drilldown &MockObject $drilldown_stub
 
string $drilldown_html
 
Component Breadcrumbs Breadcrumbs &MockObject $breadcrumbs_stub
 
string $breadcrumbs_html
 
Component SignalGeneratorInterface $signal_generator
 
Component Menu Factory $menu_factory
 

Detailed Description

Author
Thibeau Fuhrer thibe.nosp@m.au@s.nosp@m.r.sol.nosp@m.utio.nosp@m.ns

Definition at line 34 of file TreeSelectTest.php.

Member Function Documentation

◆ createSimpleRenderingStub()

TreeSelectTest::createSimpleRenderingStub ( string  $class_name)
protected
Returns
array{0: ILIAS\UI\Component\Component & MockObject, 1: string}

Definition at line 405 of file TreeSelectTest.php.

405 : array
406 {
407 $stub = $this->createMock($class_name);
408 $html = sha1($class_name);
409 $stub->method('getCanonicalName')->willReturn($html);
410 $stub->method($this->anything())->willReturnSelf();
411 return [$stub, $html];
412 }

◆ getBreadcrumbsStub()

TreeSelectTest::getBreadcrumbsStub ( )
protected
Returns
array{0: Component\Breadcrumbs\Breadcrumbs & MockObject, 1: string}

Definition at line 381 of file TreeSelectTest.php.

381 : array
382 {
383 return $this->createSimpleRenderingStub(Component\Breadcrumbs\Breadcrumbs::class);
384 }
createSimpleRenderingStub(string $class_name)

Referenced by setUp().

+ Here is the caller graph for this function:

◆ getBulkyStub()

TreeSelectTest::getBulkyStub ( )
protected
Returns
array{0: Component\Button\Bulky & MockObject, 1: string}

Definition at line 399 of file TreeSelectTest.php.

399 : array
400 {
401 return $this->createSimpleRenderingStub(Component\Button\Bulky::class);
402 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Bulky.php:21

Referenced by setUp().

+ Here is the caller graph for this function:

◆ getDefaultRenderer()

TreeSelectTest::getDefaultRenderer ( ?JavaScriptBinding  $js_binding = null,
array  $with_stub_renderings = [],
array  $with_additional_contexts = [] 
)

Definition at line 63 of file TreeSelectTest.php.

68 $with_stub_renderings = array_merge($with_stub_renderings, [
69 $this->bulky_stub,
70 $this->drilldown_stub,
71 $this->breadcrumbs_stub,
72 ]);
73
74 return parent::getDefaultRenderer($js_binding, $with_stub_renderings, $with_additional_contexts);
75 }

◆ getDrilldownStub()

TreeSelectTest::getDrilldownStub ( )
protected
Returns
array{0: Component\Menu\Drilldown & MockObject, 1: string}

Definition at line 387 of file TreeSelectTest.php.

387 : array
388 {
389 return $this->createSimpleRenderingStub(Component\Menu\Drilldown::class);
390 }

Referenced by setUp().

+ Here is the caller graph for this function:

◆ getFieldFactory()

TreeSelectTest::getFieldFactory ( ?Field\Node\Factory  $node_factory = null)
protected

Definition at line 345 of file TreeSelectTest.php.

345 : Field\Factory
346 {
347 return new Field\Factory(
348 ($node_factory) ?: $this->createMock(Field\Node\Factory::class),
349 $this->createMock(Component\Input\UploadLimitResolver::class),
350 $this->signal_generator,
351 $this->getDataFactory(),
352 $this->getRefinery(),
353 $this->getLanguage(),
354 );
355 }
This implements commonalities between inputs.
Definition: Input.php:43
getLanguage()

References ILIAS\UI\Implementation\Component\Input\getDataFactory(), and getLanguage().

+ Here is the call graph for this function:

◆ getInvalidArgumentsForWithValue()

static TreeSelectTest::getInvalidArgumentsForWithValue ( )
static

Definition at line 317 of file TreeSelectTest.php.

317 : array
318 {
319 return [
320 [true],
321 [new stdClass()],
322 [1.000],
323 [[1, 2, 3]],
324 [[]],
325 ];
326 }

◆ getLeafStub()

TreeSelectTest::getLeafStub ( string|int  $id = '',
string  $name = '' 
)
protected
Returns
array{0: Field\Node\Leaf & MockObject, 1: string}

Definition at line 370 of file TreeSelectTest.php.

370 : array
371 {
372 $stub = $this->createMock(Field\Node\Leaf::class);
373 $html = sha1(Field\Node\Leaf::class);
374 $stub->method('getCanonicalName')->willReturn($html);
375 $stub->method('getId')->willReturn($id);
376 $stub->method('getName')->willReturn($name);
377 return [$stub, $html];
378 }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23

References $id.

◆ getLinkStub()

TreeSelectTest::getLinkStub ( )
protected
Returns
array{0: Component\Link\Standard & MockObject, 1: string}

Definition at line 393 of file TreeSelectTest.php.

393 : array
394 {
395 return $this->createSimpleRenderingStub(Component\Link\Standard::class);
396 }

Referenced by setUp().

+ Here is the caller graph for this function:

◆ getMenuFactory()

TreeSelectTest::getMenuFactory ( )
protected

Definition at line 340 of file TreeSelectTest.php.

340 : Component\Menu\Factory
341 {
342 return new Component\Menu\Factory($this->signal_generator);
343 }

◆ getNodeRetrieval()

TreeSelectTest::getNodeRetrieval ( array  $node_stubs = [],
array  $leaf_stubs = [] 
)
protected
Parameters
Field\Node\Node[]$node_stubsto yield from NodeRetrieval::getNodes()
Field\Node\Leaf[]$leaf_stubsto yield from NodeRetrieval::getNodesAsLeaf()

Definition at line 361 of file TreeSelectTest.php.

361 : NodeRetrieval & MockObject
362 {
363 $node_retrieval = $this->createMock(NodeRetrieval::class);
364 $node_retrieval->method('getNodes')->willReturnCallback(static fn() => yield from $node_stubs);
365 $node_retrieval->method('getNodesAsLeaf')->willReturnCallback(static fn() => yield from $leaf_stubs);
366 return $node_retrieval;
367 }

References ILIAS\ResourceStorage\Flavour\Machine\DefaultMachines\from().

+ Here is the call graph for this function:

◆ getUIFactory()

TreeSelectTest::getUIFactory ( )

Definition at line 77 of file TreeSelectTest.php.

78 {
79 $icon_factory = $this->createMock(Component\Symbol\Icon\Factory::class);
80 $glyph_factory = $this->createMock(Component\Symbol\Glyph\Factory::class);
81 $glyph_mock = $this->createMock(Component\Symbol\Glyph\Glyph::class);
82 $glyph_factory->method($this->anything())->willReturn($glyph_mock);
83 $symbol_factory = $this->createMock(Component\Symbol\Factory::class);
84 $symbol_factory->method('icon')->willReturn($icon_factory);
85
86 $button_factory = $this->createMock(Component\Button\Factory::class);
87 $button_factory->method('bulky')->willReturn($this->bulky_stub);
88
89 $link_factory = $this->createMock(Component\Link\Factory::class);
90 $link_factory->method('standard')->willReturn($this->link_stub);
91
92 $node_factory = $this->createMock(Field\Node\Factory::class);
93 $field_factory = $this->createMock(Field\Factory::class);
94 $field_factory->method('node')->willReturn($node_factory);
95 $input_factory = $this->createMock(Component\Input\Factory::class);
96 $input_factory->method('field')->willReturn($field_factory);
97
98 return new class (
99 $button_factory,
100 $symbol_factory,
101 $link_factory,
102 $input_factory,
105 ) extends \NoUIFactory {
106 public function __construct(
107 protected Component\Button\Factory $button_factory,
108 protected Component\Symbol\Factory $symbol_factory,
109 protected Component\Link\Factory $link_factory,
110 protected Component\Input\Factory $input_factory,
112 protected Component\Breadcrumbs\Breadcrumbs $breadcrumbs,
113 ) {
114 }
115 public function button(): Component\Button\Factory
116 {
117 return $this->button_factory;
118 }
119 public function breadcrumbs(array $crumbs): Component\Breadcrumbs\Breadcrumbs
120 {
121 return $this->breadcrumbs;
122 }
123 public function symbol(): Component\Symbol\Factory
124 {
125 return $this->symbol_factory;
126 }
127 public function link(): Component\Link\Factory
128 {
129 return $this->link_factory;
130 }
131 public function input(): Component\Input\Factory
132 {
133 return $this->input_factory;
134 }
135 public function menu(): Component\Menu\Factory
136 {
137 return $this->menu_factory;
138 }
139 };
140 }
Factory for Date Formats.
Definition: Factory.php:27
Component Menu Factory $menu_factory
Component Breadcrumbs Breadcrumbs &MockObject $breadcrumbs_stub
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
button(string $caption, string $cmd)
link(string $caption, string $href, bool $new_viewport=false)

References ILIAS\GlobalScreen\Provider\__construct(), ILIAS\UI\examples\Breadcrumbs\breadcrumbs(), ILIAS\Repository\button(), ILIAS\Repository\link(), and ILIAS\Repository\symbol().

+ Here is the call graph for this function:

◆ getValidArgumentsForWithValue()

static TreeSelectTest::getValidArgumentsForWithValue ( )
static

Definition at line 328 of file TreeSelectTest.php.

328 : array
329 {
330 return [
331 [1],
332 [-1],
333 ['1'],
334 [''],
335 [' '],
336 [null],
337 ];
338 }

◆ setUp()

TreeSelectTest::setUp ( )
protected

Definition at line 48 of file TreeSelectTest.php.

48 : void
49 {
54
55 $this->signal_generator = new IncrementalSignalGenerator();
56
57 $this->menu_factory = $this->createMock(Component\Menu\Factory::class);
58 $this->menu_factory->method('drilldown')->willReturn($this->drilldown_stub);
59
60 parent::setUp();
61 }
Component Link Standard &MockObject $link_stub
string $breadcrumbs_html
Component Menu Drilldown &MockObject $drilldown_stub
string $drilldown_html
Component Button Bulky &MockObject $bulky_stub

References $breadcrumbs_html, $breadcrumbs_stub, $bulky_html, $bulky_stub, $drilldown_html, $drilldown_stub, $link_html, $link_stub, getBreadcrumbsStub(), getBulkyStub(), getDrilldownStub(), and getLinkStub().

+ Here is the call graph for this function:

◆ testRenderDrilldownMenu()

TreeSelectTest::testRenderDrilldownMenu ( )

Definition at line 240 of file TreeSelectTest.php.

240 : void
241 {
242 $this->menu_factory = $this->getMenuFactory();
243
244 [$leaf_stub, $leaf_html] = $this->getLeafStub();
245
246 $tree_select_label = 'some tree select label';
247
248 $node_retrieval = $this->getNodeRetrieval([$leaf_stub]);
249
250 $component = $this->getFieldFactory()->treeSelect($node_retrieval, $tree_select_label);
251 $component = $component->withNameFrom(new DefNamesource());
252
253 $renderer = $this->getDefaultRenderer(null, [$leaf_stub]);
254
255 $expected_html = <<<HTML
256<fieldset class="c-input" data-il-ui-component="tree-select-field-input" data-il-ui-input-name="name_0">
257 <label for="id_3">some tree select label</label>
258 <div class="c-input__field">
259 <div class="c-input-tree_select">
260 <dialog class="c-modal">
261 <div class="modal-dialog" role="document">
262 <div class="modal-content">
263 <div class="modal-header">
264 <button data-action="close" type="button" class="close" aria-label="close">
265 <span aria-hidden="true">&times;</span>
266 </button>
267 <h1 class="modal-title">$tree_select_label</h1>
268 </div>
269 <div class="modal-body">
270 <template>$this->breadcrumbs_html</template>
271 $this->breadcrumbs_html
272 <section class="c-drilldown" id="id_2">
273 <header class="c-drilldown__header--showbacknav">
274 <div></div>
275 <div></div>
276 <div class="c-drilldown__backnav"> $this->bulky_html</div>
277 </header>
278 <div class="c-drilldown__menu">
279 <ul aria-live="polite" aria-label="$tree_select_label">
280 $leaf_html
281 <li class="c-drilldown__menu--no-items"> drilldown_no_items</li>
282 </ul>
283 </div>
284 </section>
285 </div>
286 <div class="modal-footer">
287 <button data-action="close" type="button" class="btn btn-default" aria-label="close">close</button>
288 <button data-action="close" type="button" class="btn btn-primary" aria-label="select">select</button>
289 </div>
290 </div>
291 </div>
292 </dialog>
293 <ul class="c-input-tree_select__selection">
294 <template>
295 <li data-node-id="">
296 <span data-node-name></span>
297 <button data-action="remove" type="button" class="close" aria-label="">
298 <span aria-hidden="true">&times;</span>
299 </button>
300 <input id="id_1" type="hidden" name="name_0[input_0][]" value="" /></li>
301 </template>
302 </ul>
303 <input id="id_3" type="button" aria-label="select" value="select">
304 </div>
305 </div>
306</fieldset>
307HTML;
308
309 $actual_html = $renderer->render($component);
310
311 $this->assertEquals(
312 $this->brutallyTrimHTML($expected_html),
313 $this->brutallyTrimHTML($actual_html),
314 );
315 }
$renderer
getNodeRetrieval(array $node_stubs=[], array $leaf_stubs=[])
getFieldFactory(?Field\Node\Factory $node_factory=null)
getDefaultRenderer(?JavaScriptBinding $js_binding=null, array $with_stub_renderings=[], array $with_additional_contexts=[],)
getLeafStub(string|int $id='', string $name='')

References $renderer, ILIAS\Repository\button(), ILIAS\UI\examples\Symbol\Glyph\Close\close(), ILIAS\UI\examples\Symbol\Glyph\Header\header(), and ILIAS\Repository\ui().

+ Here is the call graph for this function:

◆ testRenderWithDisabled()

TreeSelectTest::testRenderWithDisabled ( )

Definition at line 194 of file TreeSelectTest.php.

194 : void
195 {
196 $node_retrieval = $this->getNodeRetrieval();
197
198 $component = $this->getFieldFactory()->treeSelect($node_retrieval, '');
199 $component = $component->withDisabled(true);
200
201 $renderer = $this->getDefaultRenderer();
202
203 $expected_html = <<<HTML
204<input id="id_2" type="button" aria-label="select" value="select" disabled>
205HTML;
206
207 $actual_html = $renderer->render($component);
208
209 $this->assertTrue(
210 str_contains(
211 $this->brutallyTrimHTML($actual_html),
212 $this->brutallyTrimHTML($expected_html),
213 )
214 );
215 }

References $renderer, and ILIAS\UI\examples\Input\Field\Checkbox\disabled().

+ Here is the call graph for this function:

◆ testRenderWithRequired()

TreeSelectTest::testRenderWithRequired ( )

Definition at line 217 of file TreeSelectTest.php.

217 : void
218 {
219 $node_retrieval = $this->getNodeRetrieval();
220
221 $component = $this->getFieldFactory()->treeSelect($node_retrieval, '');
222 $component = $component->withRequired(true);
223
224 $renderer = $this->getDefaultRenderer();
225
226 $expected_html = <<<HTML
227<label for="id_2"><span class="sr-only">required_field</span><span class="asterisk" aria-hidden="true">*</span></label>
228HTML;
229
230 $actual_html = $renderer->render($component);
231
232 $this->assertTrue(
233 str_contains(
234 $this->brutallyTrimHTML($actual_html),
235 $this->brutallyTrimHTML($expected_html),
236 )
237 );
238 }

References $renderer.

◆ testRenderWithValue()

TreeSelectTest::testRenderWithValue ( )

Definition at line 160 of file TreeSelectTest.php.

160 : void
161 {
162 $node_id = 'some-existing-node-id';
163 $node_name = 'some existing node';
164
165 [$leaf_stub,] = $this->getLeafStub($node_id, $node_name);
166
167 $node_retrieval = $this->getNodeRetrieval([], [$leaf_stub]);
168
169 $component = $this->getFieldFactory()->treeSelect($node_retrieval, '');
170 $component = $component->withValue($node_id);
171
172 $renderer = $this->getDefaultRenderer(null, [$leaf_stub]);
173
174 $expected_html = <<<HTML
175<li data-node-id="$node_id">
176 <span data-node-name>$node_name</span>
177 <button data-action="remove" type="button" class="close" aria-label="unselect_node">
178 <span aria-hidden="true">&times;</span>
179 </button>
180 <input id="id_2" type="hidden" value="$node_id" />
181</li>
182HTML;
183
184 $actual_html = $renderer->render($component);
185
186 $this->assertTrue(
187 str_contains(
188 $this->brutallyTrimHTML($actual_html),
189 $this->brutallyTrimHTML($expected_html),
190 )
191 );
192 }

References $renderer, and ILIAS\Repository\button().

+ Here is the call graph for this function:

◆ testWithValueForInvalidArguments()

TreeSelectTest::testWithValueForInvalidArguments ( mixed  $value)

Definition at line 143 of file TreeSelectTest.php.

143 : void
144 {
145 $node_retrieval = $this->getNodeRetrieval();
146 $component = $this->getFieldFactory()->treeSelect($node_retrieval, '');
147 $this->expectException(InvalidArgumentException::class);
148 $component = $component->withValue($value);
149 }

◆ testWithValueForValidArguments()

TreeSelectTest::testWithValueForValidArguments ( string|int|null  $value)

Definition at line 152 of file TreeSelectTest.php.

152 : void
153 {
154 $node_retrieval = $this->getNodeRetrieval();
155 $component = $this->getFieldFactory()->treeSelect($node_retrieval, '');
156 $component = $component->withValue($value);
157 $this->assertEquals([$value], $component->getValue());
158 }

Field Documentation

◆ $breadcrumbs_html

string TreeSelectTest::$breadcrumbs_html
protected

Definition at line 43 of file TreeSelectTest.php.

Referenced by setUp().

◆ $breadcrumbs_stub

Component Breadcrumbs Breadcrumbs& MockObject TreeSelectTest::$breadcrumbs_stub
protected

Definition at line 42 of file TreeSelectTest.php.

Referenced by setUp().

◆ $bulky_html

string TreeSelectTest::$bulky_html
protected

Definition at line 37 of file TreeSelectTest.php.

Referenced by setUp().

◆ $bulky_stub

Component Button Bulky& MockObject TreeSelectTest::$bulky_stub
protected

Definition at line 36 of file TreeSelectTest.php.

Referenced by setUp().

◆ $drilldown_html

string TreeSelectTest::$drilldown_html
protected

Definition at line 41 of file TreeSelectTest.php.

Referenced by setUp().

◆ $drilldown_stub

Component Menu Drilldown& MockObject TreeSelectTest::$drilldown_stub
protected

Definition at line 40 of file TreeSelectTest.php.

Referenced by setUp().

◆ $link_html

string TreeSelectTest::$link_html
protected

Definition at line 39 of file TreeSelectTest.php.

Referenced by setUp().

◆ $link_stub

Component Link Standard& MockObject TreeSelectTest::$link_stub
protected

Definition at line 38 of file TreeSelectTest.php.

Referenced by setUp().

◆ $menu_factory

Component Menu Factory TreeSelectTest::$menu_factory
protected

Definition at line 46 of file TreeSelectTest.php.

◆ $signal_generator

Component SignalGeneratorInterface TreeSelectTest::$signal_generator
protected

Definition at line 45 of file TreeSelectTest.php.


The documentation for this class was generated from the following file: