ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DurationInputTest.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 require_once(__DIR__ . "/CommonFieldRendering.php");
24 
27 use ILIAS\UI\Component as C;
28 use ILIAS\Data;
32 
34 {
36 
38  protected Data\Factory $data_factory;
39  protected I\Input\Field\Factory $factory;
40  protected Language $lng;
41 
42  public function setUp(): void
43  {
44  $this->name_source = new DefNamesource();
45  $this->data_factory = new Data\Factory();
46  $this->factory = $this->buildFactory();
47  }
48 
49  protected function buildLanguage(): Language
50  {
51  $this->lng = $this->createMock(Language::class);
52  $this->lng->method("txt")
53  ->will($this->returnArgument(0));
54 
55  return $this->lng;
56  }
57 
58  protected function buildRefinery(): Refinery
59  {
60  return new Refinery($this->data_factory, $this->buildLanguage());
61  }
62 
63  protected function buildFactory(): I\Input\Field\Factory
64  {
65  return new I\Input\Field\Factory(
66  $this->createMock(\ILIAS\UI\Implementation\Component\Input\UploadLimitResolver::class),
67  new SignalGenerator(),
68  $this->data_factory,
69  $this->buildRefinery(),
70  $this->buildLanguage()
71  );
72  }
73 
74  public function getUIFactory(): NoUIFactory
75  {
76  return new class () extends NoUIFactory {
77  public function symbol(): I\Symbol\Factory
78  {
79  return new S\Factory(
80  new S\Icon\Factory(),
81  new S\Glyph\Factory(),
82  new S\Avatar\Factory()
83  );
84  }
85  };
86  }
87 
88  public function testWithFormat(): void
89  {
90  $format = $this->data_factory->dateFormat()->germanShort();
91  $duration = $this->factory->duration('label', 'byline')
92  ->withFormat($format);
93 
94  $this->assertEquals(
95  $format,
96  $duration->getFormat()
97  );
98  }
99 
100  public function testWithMinValue(): void
101  {
102  $dat = new DateTimeImmutable('2019-01-09');
103  $duration = $this->factory->duration('label', 'byline')
104  ->withMinValue($dat);
105 
106  $this->assertEquals(
107  $dat,
108  $duration->getMinValue()
109  );
110  }
111 
112  public function testWithMaxValue(): void
113  {
114  $dat = new DateTimeImmutable('2019-01-09');
115  $duration = $this->factory->duration('label', 'byline')
116  ->withMaxValue($dat);
117 
118  $this->assertEquals(
119  $dat,
120  $duration->getMaxValue()
121  );
122  }
123 
124  public function testWithUseTime(): void
125  {
126  $datetime = $this->factory->duration('label', 'byline');
127  $this->assertFalse($datetime->getUseTime());
128  $this->assertTrue($datetime->withUseTime(true)->getUseTime());
129  }
130 
131  public function testWithTimeOnly(): void
132  {
133  $datetime = $this->factory->duration('label', 'byline');
134  $this->assertFalse($datetime->getTimeOnly());
135  $this->assertTrue($datetime->withTimeOnly(true)->getTimeOnly());
136  }
137 
138  public function testWithTimeZone(): void
139  {
140  $datetime = $this->factory->duration('label', 'byline');
141  $this->assertNull($datetime->getTimeZone());
142  $tz = 'Europe/Moscow';
143  $this->assertEquals(
144  $tz,
145  $datetime->withTimeZone($tz)->getTimeZone()
146  );
147  }
148 
149  public function testWithInvalidTimeZone(): void
150  {
151  $this->expectException(InvalidArgumentException::class);
152  $datetime = $this->factory->duration('label', 'byline');
153  $tz = 'NOT/aValidTZ';
154  $datetime->withTimeZone($tz);
155  }
156 
157  public function testWithoutByline(): void
158  {
159  $datetime = $this->factory->duration('label');
160  $this->assertInstanceOf(C\Input\Field\Duration::class, $datetime);
161  }
162 
163  public function testRender(): \ILIAS\UI\Component\Input\Field\Duration
164  {
165  $duration = $this->factory->duration('label', 'byline')
166  ->withNameFrom($this->name_source);
167  $label_start = 'duration_default_label_start';
168  $label_end = 'duration_default_label_end';
169 
170  $f1 = $this->getFormWrappedHtml(
171  'date-time-field-input',
172  $label_start,
173  '<div class="c-input-group">
174  <input id="id_1" type="date" name="name_0/start_1" class="c-field-datetime" />
175  </div>
176  ',
177  null,
178  'id_1',
179  null,
180  'name_0/start_1'
181  );
182  $f2 = $this->getFormWrappedHtml(
183  'date-time-field-input',
184  $label_end,
185  '<div class="c-input-group">
186  <input id="id_2" type="date" name="name_0/end_2" class="c-field-datetime" />
187  </div>
188  ',
189  null,
190  'id_2',
191  null,
192  'name_0/end_2'
193  );
194 
195  $expected = $this->getFormWrappedHtml(
196  'duration-field-input',
197  'label',
198  '<div class="c-field-duration">' . $f1 . $f2 . '</div>',
199  'byline',
200  );
201  $this->assertEquals($expected, $this->render($duration));
202  return $duration;
203  }
204 
209  {
210  $other_start_label = 'other startlabel';
211  $other_end_label = 'other endlabel';
212 
213  $duration = $duration->withLabels($other_start_label, $other_end_label);
214 
215  $f1 = $this->getFormWrappedHtml(
216  'date-time-field-input',
217  $other_start_label,
218  '<div class="c-input-group">
219  <input id="id_1" type="date" name="name_0/start_1" class="c-field-datetime" />
220  </div>
221  ',
222  null,
223  'id_1',
224  null,
225  'name_0/start_1'
226  );
227  $f2 = $this->getFormWrappedHtml(
228  'date-time-field-input',
229  $other_end_label,
230  '<div class="c-input-group">
231  <input id="id_2" type="date" name="name_0/end_2" class="c-field-datetime" />
232  </div>
233  ',
234  null,
235  'id_2',
236  null,
237  'name_0/end_2'
238  );
239 
240  $expected = $this->getFormWrappedHtml(
241  'duration-field-input',
242  'label',
243  '<div class="c-field-duration">' . $f1 . $f2 . '</div>',
244  'byline'
245  );
246  $this->assertEquals($expected, $this->render($duration));
247  }
248 
249  public function testCommonRendering(): void
250  {
251  $duration = $this->factory->duration('label')
252  ->withNameFrom($this->name_source);
253  $this->testWithError($duration);
254  $this->testWithNoByline($duration);
255  $this->testWithRequired($duration);
256  $this->testWithDisabled($duration);
257  $this->testWithAdditionalOnloadCodeRendersId($duration);
258  }
259 }
Interface Observer Contains several chained tasks and infos about them.
factory()
$datetime
$duration
DefNamesource $name_source
testRenderWithDifferentLabels($duration)
testRender
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Builds data types.
Definition: Factory.php:35
Data Factory $data_factory
I Input Field Factory $factory