19 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../../../../vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../../Base.php");
23 require_once(__DIR__ .
"/CommonFieldRendering.php");
43 $this->data_factory =
new Data\Factory();
50 public function symbol(): I\Symbol\Factory
64 public function getLangKey():
string 73 $df =
new Data\Factory();
74 $language = $this->createMock(
ILIAS\Language\Language::class);
76 return new I\Input\Field\Factory(
87 $format = $this->data_factory->dateFormat()->germanShort();
89 ->withFormat($format);
101 ->withMinValue($dat);
113 ->withMaxValue($dat);
124 $this->assertFalse(
$datetime->getUseTime());
125 $this->assertTrue(
$datetime->withUseTime(
true)->getUseTime());
131 $this->assertFalse(
$datetime->getTimeOnly());
132 $this->assertTrue(
$datetime->withTimeOnly(
true)->getTimeOnly());
138 $this->assertNull(
$datetime->getTimeZone());
139 $tz =
'Europe/Moscow';
142 $datetime->withTimeZone($tz)->getTimeZone()
148 $this->expectException(InvalidArgumentException::class);
150 $tz =
'NOT/aValidTZ';
156 $string_value =
"1985-05-04 00:00";
157 $value = new \DateTimeImmutable($string_value);
168 $this->expectException(InvalidArgumentException::class);
170 ->withValue(
"this is no datetime...");
176 $r = $this->getDefaultRenderer();
177 $html = $this->brutallyTrimHTML(
$r->render(
$datetime));
179 $expected = $this->brutallyTrimHTML(
' 180 <fieldset class="c-input" data-il-ui-component="date-time-field-input" data-il-ui-input-name=""> 181 <label for="id_1">label</label> 182 <div class="c-input__field"> 183 <div class="c-input-group"> 184 <input id="id_1" type="date" class="c-field-datetime" /> 187 <div class="c-input__help-byline">byline</div> 190 $this->assertEquals($expected, $html);
196 ->withNameFrom($this->name_source);
202 $this->testWithAdditionalOnloadCodeRendersId(
$datetime);
Interface Observer Contains several chained tasks and infos about them.