ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
DateTimeInputTest.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;
31 
33 {
35 
37  protected Data\Factory $data_factory;
38  protected I\Input\Field\Factory $factory;
39 
40  public function setUp(): void
41  {
42  $this->name_source = new DefNamesource();
43  $this->data_factory = new Data\Factory();
44  $this->factory = $this->buildFactory();
45  }
46 
47  public function getUIFactory(): NoUIFactory
48  {
49  return new class () extends NoUIFactory {
50  public function symbol(): I\Symbol\Factory
51  {
52  return new S\Factory(
53  new S\Icon\Factory(),
54  new S\Glyph\Factory(),
55  new S\Avatar\Factory()
56  );
57  }
58  };
59  }
60 
61  public function getLanguage(): LanguageMock
62  {
63  return new class () extends LanguageMock {
64  public function getLangKey(): string
65  {
66  return 'en';
67  }
68  };
69  }
70 
71  protected function buildFactory(): I\Input\Field\Factory
72  {
73  $df = new Data\Factory();
74  $language = $this->createMock(ILIAS\Language\Language::class);
75 
76  return new I\Input\Field\Factory(
77  $this->createMock(\ILIAS\UI\Implementation\Component\Input\UploadLimitResolver::class),
78  new SignalGenerator(),
79  $this->data_factory,
80  new Refinery($df, $language),
81  $language
82  );
83  }
84 
85  public function testWithFormat(): void
86  {
87  $format = $this->data_factory->dateFormat()->germanShort();
88  $datetime = $this->factory->datetime('label', 'byline')
89  ->withFormat($format);
90 
91  $this->assertEquals(
92  $format,
93  $datetime->getFormat()
94  );
95  }
96 
97  public function testWithMinValue(): void
98  {
99  $dat = new DateTimeImmutable('2019-01-09');
100  $datetime = $this->factory->datetime('label', 'byline')
101  ->withMinValue($dat);
102 
103  $this->assertEquals(
104  $dat,
105  $datetime->getMinValue()
106  );
107  }
108 
109  public function testWithMaxValue(): void
110  {
111  $dat = new DateTimeImmutable('2019-01-09');
112  $datetime = $this->factory->datetime('label', 'byline')
113  ->withMaxValue($dat);
114 
115  $this->assertEquals(
116  $dat,
117  $datetime->getMaxValue()
118  );
119  }
120 
121  public function testWithUseTime(): void
122  {
123  $datetime = $this->factory->datetime('label', 'byline');
124  $this->assertFalse($datetime->getUseTime());
125  $this->assertTrue($datetime->withUseTime(true)->getUseTime());
126  }
127 
128  public function testWithTimeOnly(): void
129  {
130  $datetime = $this->factory->datetime('label', 'byline');
131  $this->assertFalse($datetime->getTimeOnly());
132  $this->assertTrue($datetime->withTimeOnly(true)->getTimeOnly());
133  }
134 
135  public function testWithTimeZone(): void
136  {
137  $datetime = $this->factory->datetime('label', 'byline');
138  $this->assertNull($datetime->getTimeZone());
139  $tz = 'Europe/Moscow';
140  $this->assertEquals(
141  $tz,
142  $datetime->withTimeZone($tz)->getTimeZone()
143  );
144  }
145 
146  public function testWithInvalidTimeZone(): void
147  {
148  $this->expectException(InvalidArgumentException::class);
149  $datetime = $this->factory->datetime('label', 'byline');
150  $tz = 'NOT/aValidTZ';
151  $datetime->withTimeZone($tz);
152  }
153 
154  public function testWithValueThatIsDateTimeImmutable(): void
155  {
156  $string_value = "1985-05-04 00:00";
157  $value = new \DateTimeImmutable($string_value);
158  $datetime = $this->factory->datetime('label', 'byline')
159  ->withValue($value);
160  $this->assertEquals(
161  $string_value,
162  $datetime->getValue()
163  );
164  }
165 
166  public function testWithInvalidValue(): void
167  {
168  $this->expectException(InvalidArgumentException::class);
169  $datetime = $this->factory->datetime('label', 'byline')
170  ->withValue("this is no datetime...");
171  }
172 
173  public function testRender(): void
174  {
175  $datetime = $this->factory->dateTime('label', 'byline');
176  $r = $this->getDefaultRenderer();
177  $html = $this->brutallyTrimHTML($r->render($datetime));
178 
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" />
185  </div>
186  </div>
187  <div class="c-input__help-byline">byline</div>
188  </fieldset>
189  ');
190  $this->assertEquals($expected, $html);
191  }
192 
193  public function testCommonRendering(): void
194  {
195  $datetime = $this->factory->dateTime('label')
196  ->withNameFrom($this->name_source);
197 
198  $this->testWithError($datetime);
199  $this->testWithNoByline($datetime);
200  $this->testWithRequired($datetime);
201  $this->testWithDisabled($datetime);
202  $this->testWithAdditionalOnloadCodeRendersId($datetime);
203  }
204 }
Interface Observer Contains several chained tasks and infos about them.
factory()
$datetime
I Input Field Factory $factory
DefNamesource $name_source
Data Factory $data_factory
Builds data types.
Definition: Factory.php:35
$r