ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
LegacyTest.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 getUIFactory(): NoUIFactory
33  {
34  return new class () extends NoUIFactory {
35  public function legacy(): IC\Legacy\Factory
36  {
37  return new IC\Legacy\Factory(new IC\SignalGenerator());
38  }
39  };
40  }
41 
42  public function testImplementsFactoryInterface(): void
43  {
44  $f = $this->getUIFactory();
45 
46  $this->assertInstanceOf("ILIAS\\UI\\Factory", $f);
47  $this->assertInstanceOf(
48  "ILIAS\\UI\\Component\\Legacy\\Content",
49  $f->legacy()->content("Legacy Content")
50  );
51  }
52 
53  public function testGetContent(): void
54  {
55  $f = $this->getUIFactory();
56  $g = $f->legacy()->content("Legacy Content");
57 
58  $this->assertEquals("Legacy Content", $g->getContent());
59  }
60 
61 
62  public function testRenderContent(): void
63  {
64  $f = $this->getUIFactory();
65  $r = $this->getDefaultRenderer();
66 
67  $g = $f->legacy()->content("Legacy Content");
68 
69  $this->assertEquals("Legacy Content", $r->render($g));
70  }
71 
75  public function testCreateWithCustomSignal(): void
76  {
77  $f = $this->getUIFactory();
78  $signal_name = 'Custom Signal';
79 
80  $f->legacy()->content('')->withCustomSignal($signal_name, '');
81  }
82 
83  public function testGetExistingCustomSignal(): void
84  {
85  $f = $this->getUIFactory();
86  $signal_name = 'Custom Signal';
87  $g = $f->legacy()->content('')->withCustomSignal($signal_name, '');
88 
89  $this->assertNotNull($g->getCustomSignal($signal_name));
90  }
91 
92  public function testGetNonExistingCustomSignal(): void
93  {
94  $f = $this->getUIFactory();
95  $signal_name = 'Custom Signal';
96  $g = $f->legacy()->content('');
97 
98  $this->expectException(InvalidArgumentException::class);
99  $this->expectExceptionMessage("Signal with name $signal_name is not registered");
100  $g->getCustomSignal($signal_name);
101  }
102 
103  public function testGetListOfSignals(): void
104  {
105  $f = $this->getUIFactory();
106  $signal_name_1 = 'Custom Signal 1';
107  $signal_name_2 = 'Custom Signal 2';
108 
109  $g = $f->legacy()->content('')->withCustomSignal($signal_name_1, '')->withCustomSignal($signal_name_2, '');
110  $l = $g->getAllCustomSignals();
111 
112  $this->assertIsArray($l);
113  }
114 
115  public function testGetListWithCustomSignalsAndCode(): void
116  {
117  $f = $this->getUIFactory();
118  $signal_name_1 = 'Custom Signal 1';
119  $custom_code_1 = 'custom_js1();';
120  $signal_name_2 = 'Custom Signal 2';
121  $custom_code_2 = 'custom_js2();';
122 
123  $g = $f->legacy()->content('')
124  ->withCustomSignal($signal_name_1, $custom_code_1)
125  ->withCustomSignal($signal_name_2, $custom_code_2);
126  $signal_list = $g->getAllCustomSignals();
127 
128  $this->assertEquals(2, count($signal_list));
129  $this->assertEquals($signal_list[$signal_name_1]['js_code'], $custom_code_1);
130  $this->assertEquals($signal_list[$signal_name_2]['js_code'], $custom_code_2);
131  }
132 }
testCreateWithCustomSignal()
Definition: LegacyTest.php:75
testRenderContent()
Definition: LegacyTest.php:62
testGetListOfSignals()
Definition: LegacyTest.php:103
testImplementsFactoryInterface()
Definition: LegacyTest.php:42
testGetNonExistingCustomSignal()
Definition: LegacyTest.php:92
legacy()
expected output: > ILIAS shows the rendered Component.
Definition: legacy.php:29
testGetContent()
Definition: LegacyTest.php:53
Test on button implementation.
Definition: LegacyTest.php:30
testGetListWithCustomSignalsAndCode()
Definition: LegacyTest.php:115
testGetExistingCustomSignal()
Definition: LegacyTest.php:83
$r