19 declare(strict_types=1);
25 require_once(
'IliasMocks.php');
26 require_once(__DIR__ .
"/../../../../components/ILIAS/UI/tests/Base.php");
36 $html = $this->normalizeHTML($html);
37 return preg_replace(
'!\s+!',
' ', $html);
42 $cb = $this->createMock(LSControlBuilder::class);
48 $this->assertInstanceOf(LSLocatorBuilder::class, $this->lb);
58 $this->assertCount(3, $this->lb->getItems());
68 [
'label' =>
'item 1',
72 [
'label' =>
'item 2',
78 $this->assertEquals($expected, $this->lb->getItems());
83 $cb = $this->lb->end();
84 $this->assertInstanceOf(ControlBuilder::class, $cb);
90 $uri = $data_factory->uri(
'https://ilias.de/somepath');
92 $ui_factory = $this->mockUIFactory();
99 $out = $gui->withItems($items)->getComponent();
101 $this->assertInstanceOf(Breadcrumbs::class,
$out);
104 '<nav aria-label="breadcrumbs_aria_label" class="breadcrumb_wrapper"> ' .
105 ' <div class="breadcrumb"> ' .
106 ' <span class="crumb"> ' .
107 ' <a href="https://ilias.de/somepath?lsocmd=cmd&lsov=1">item 1</a>' .
115 $this->assertEquals($expected, $html);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...