5 require_once(__DIR__ .
"/../../../../../libs/composer/vendor/autoload.php");
6 require_once(__DIR__ .
"/../../../Base.php");
21 $this->data_factory =
new Data\Factory();
27 if (!isset($this->lng)) {
28 $this->lng = $this->createMock(\ilLanguage::class);
35 return new \ILIAS\Refinery\Factory($this->data_factory, $this->
buildLanguage());
49 $factory =
new class extends NoUIFactory {
64 $format = $this->data_factory->dateFormat()->germanShort();
65 $duration = $this->factory->duration(
'label',
'byline')
70 $duration->getFormat()
76 $dat = new \DateTimeImmutable(
'2019-01-09');
77 $duration = $this->factory->duration(
'label',
'byline')
82 $duration->getMinValue()
88 $dat = new \DateTimeImmutable(
'2019-01-09');
89 $duration = $this->factory->duration(
'label',
'byline')
94 $duration->getMaxValue()
100 $datetime = $this->factory->duration(
'label',
'byline');
101 $this->assertFalse($datetime->getUseTime());
102 $this->assertTrue($datetime->withUseTime(
true)->getUseTime());
107 $datetime = $this->factory->duration(
'label',
'byline');
108 $this->assertFalse($datetime->getTimeOnly());
109 $this->assertTrue($datetime->withTimeOnly(
true)->getTimeOnly());
114 $datetime = $this->factory->duration(
'label',
'byline');
115 $this->assertNull($datetime->getTimeZone());
116 $tz =
'Europe/Moscow';
119 $datetime->withTimeZone($tz)->getTimeZone()
125 $this->expectException(\InvalidArgumentException::class);
126 $datetime = $this->factory->duration(
'label',
'byline');
127 $tz =
'NOT/aValidTZ';
128 $datetime->withTimeZone($tz);
133 $datetime = $this->factory->duration(
'label',
'byline');
138 <div class="form-group row"> 139 <label for="id_1" class="control-label col-sm-3">label</label> 140 <div class="col-sm-9"> 141 <div class="il-input-duration" id="id_1"> 142 <div class="form-group row"> 143 <label for="id_2" class="control-label col-sm-3">start</label> 144 <div class="col-sm-9"> 145 <div class="input-group date il-input-datetime" id="id_2"><input type="text" name="" placeholder="YYYY-MM-DD" class="form-control form-control-sm" /><span class="input-group-addon"><a class="glyph" href="#" aria-label="calendar"><span class="glyphicon glyphicon-calendar" aria-hidden="true"></span></a></span></div> 148 <div class="form-group row"> 149 <label for="id_3" class="control-label col-sm-3">end</label> 150 <div class="col-sm-9"> 151 <div class="input-group date il-input-datetime" id="id_3"><input type="text" name="" placeholder="YYYY-MM-DD" class="form-control form-control-sm" /><span class="input-group-addon"><a class="glyph" href="#" aria-label="calendar"><span class="glyphicon glyphicon-calendar" aria-hidden="true"></span></a></span></div> 155 <div class="help-block">byline</div> 159 $this->assertEquals($expected, $html);
Provides common functionality for UI tests.
brutallyTrimHTML($html)
A more radical version of normalizeHTML.
getDefaultRenderer(JavaScriptBinding $js_binding=null, $with_stub_renderings=[])