Definition at line 31 of file DurationInputTest.php.
◆ buildFactory()
DurationInputTest::buildFactory |
( |
| ) |
|
|
protected |
Definition at line 59 of file DurationInputTest.php.
References buildLanguage(), and buildRefinery().
Referenced by setUp().
59 : I\Input\Field\Factory
61 return new I\Input\Field\Factory(
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
◆ buildLanguage()
DurationInputTest::buildLanguage |
( |
| ) |
|
|
protected |
◆ buildRefinery()
DurationInputTest::buildRefinery |
( |
| ) |
|
|
protected |
◆ getUIFactory()
DurationInputTest::getUIFactory |
( |
| ) |
|
Definition at line 70 of file DurationInputTest.php.
73 public function symbol():
C\Symbol\
Factory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
◆ setUp()
DurationInputTest::setUp |
( |
| ) |
|
◆ test_render()
DurationInputTest::test_render |
( |
| ) |
|
Definition at line 159 of file DurationInputTest.php.
References ILIAS_UI_TestBase\brutallyTrimHTML(), and ILIAS_UI_TestBase\getDefaultRenderer().
161 $datetime = $this->factory->duration(
'label',
'byline');
164 $label_start =
'duration_default_label_start';
165 $label_end =
'duration_default_label_end';
169 <div class="form-group row"> 170 <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">label</label> 171 <div class="col-sm-8 col-md-9 col-lg-10"> 172 <div class="il-input-duration" id="id_1"> 173 <div class="form-group row"> 174 <label for="id_2" class="control-label col-sm-4 col-md-3 col-lg-2">' . $label_start .
'</label> 175 <div class="col-sm-8 col-md-9 col-lg-10"> 176 <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 tabindex="0" class="glyph" href="#" aria-label="calendar"><span class="glyphicon glyphicon-calendar" aria-hidden="true"></span></a></span></div> 179 <div class="form-group row"> 180 <label for="id_3" class="control-label col-sm-4 col-md-3 col-lg-2">' . $label_end .
'</label> 181 <div class="col-sm-8 col-md-9 col-lg-10"> 182 <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 tabindex="0" class="glyph" href="#" aria-label="calendar"><span class="glyphicon glyphicon-calendar" aria-hidden="true"></span></a></span></div> 186 <div class="help-block">byline</div> 190 $this->assertEquals($expected, $html);
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
brutallyTrimHTML(string $html)
A more radical version of normalizeHTML.
◆ test_withFormat()
DurationInputTest::test_withFormat |
( |
| ) |
|
Definition at line 84 of file DurationInputTest.php.
References $format.
86 $format = $this->data_factory->dateFormat()->germanShort();
87 $duration = $this->factory->duration(
'label',
'byline')
92 $duration->getFormat()
◆ test_withInvalidTimeZone()
DurationInputTest::test_withInvalidTimeZone |
( |
| ) |
|
Definition at line 145 of file DurationInputTest.php.
147 $this->expectException(InvalidArgumentException::class);
148 $datetime = $this->factory->duration(
'label',
'byline');
149 $tz =
'NOT/aValidTZ';
150 $datetime->withTimeZone($tz);
◆ test_withMaxValue()
DurationInputTest::test_withMaxValue |
( |
| ) |
|
Definition at line 108 of file DurationInputTest.php.
111 $duration = $this->factory->duration(
'label',
'byline')
112 ->withMaxValue($dat);
116 $duration->getMaxValue()
◆ test_withMinValue()
DurationInputTest::test_withMinValue |
( |
| ) |
|
Definition at line 96 of file DurationInputTest.php.
99 $duration = $this->factory->duration(
'label',
'byline')
100 ->withMinValue($dat);
104 $duration->getMinValue()
◆ test_withTimeOnly()
DurationInputTest::test_withTimeOnly |
( |
| ) |
|
Definition at line 127 of file DurationInputTest.php.
129 $datetime = $this->factory->duration(
'label',
'byline');
130 $this->assertFalse($datetime->getTimeOnly());
131 $this->assertTrue($datetime->withTimeOnly(
true)->getTimeOnly());
◆ test_withTimeZone()
DurationInputTest::test_withTimeZone |
( |
| ) |
|
Definition at line 134 of file DurationInputTest.php.
136 $datetime = $this->factory->duration(
'label',
'byline');
137 $this->assertNull($datetime->getTimeZone());
138 $tz =
'Europe/Moscow';
141 $datetime->withTimeZone($tz)->getTimeZone()
◆ test_withUseTime()
DurationInputTest::test_withUseTime |
( |
| ) |
|
Definition at line 120 of file DurationInputTest.php.
122 $datetime = $this->factory->duration(
'label',
'byline');
123 $this->assertFalse($datetime->getUseTime());
124 $this->assertTrue($datetime->withUseTime(
true)->getUseTime());
◆ testRenderwithDifferentLabels()
DurationInputTest::testRenderwithDifferentLabels |
( |
|
$datetime | ) |
|
test_render
Definition at line 198 of file DurationInputTest.php.
References ILIAS_UI_TestBase\brutallyTrimHTML(), and ILIAS_UI_TestBase\getDefaultRenderer().
200 $other_start_label =
'other startlabel';
201 $other_end_label =
'other endlabel';
202 $datetime = $datetime->withLabels($other_start_label, $other_end_label);
208 <div class="form-group row"> 209 <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">label</label> 210 <div class="col-sm-8 col-md-9 col-lg-10"> 211 <div class="il-input-duration" id="id_1"> 212 <div class="form-group row"> 213 <label for="id_2" class="control-label col-sm-4 col-md-3 col-lg-2">' . $other_start_label .
'</label> 214 <div class="col-sm-8 col-md-9 col-lg-10"> 215 <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 tabindex="0" class="glyph" href="#" aria-label="calendar"><span class="glyphicon glyphicon-calendar" aria-hidden="true"></span></a></span></div> 218 <div class="form-group row"> 219 <label for="id_3" class="control-label col-sm-4 col-md-3 col-lg-2">' . $other_end_label .
'</label> 220 <div class="col-sm-8 col-md-9 col-lg-10"> 221 <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 tabindex="0" class="glyph" href="#" aria-label="calendar"><span class="glyphicon glyphicon-calendar" aria-hidden="true"></span></a></span></div> 225 <div class="help-block">byline</div> 229 $this->assertEquals($expected, $html);
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
brutallyTrimHTML(string $html)
A more radical version of normalizeHTML.
◆ testWithoutByline()
DurationInputTest::testWithoutByline |
( |
| ) |
|
Definition at line 153 of file DurationInputTest.php.
155 $datetime = $this->factory->duration(
'label');
156 $this->assertInstanceOf(
C\
Input\Field\Duration::class, $datetime);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
◆ $data_factory
Data Factory DurationInputTest::$data_factory |
|
protected |
◆ $factory
I Input Field Factory DurationInputTest::$factory |
|
protected |
◆ $lng
◆ $name_source
The documentation for this class was generated from the following file: