ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
PasswordInputTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 require_once(__DIR__ . "/../../../../../libs/composer/vendor/autoload.php");
22 require_once(__DIR__ . "/../../../Base.php");
23 require_once(__DIR__ . "/InputTest.php");
24 
30 use ILIAS\Data;
32 
33 class _PWDInputData implements InputData
34 {
38  public function get(string $name): string
39  {
40  return 'some value';
41  }
42 
46  public function getOr(string $name, $default): string
47  {
48  return 'some alternative value';
49  }
50 
54  public function has($name): bool
55  {
56  return true;
57  }
58 }
59 
61 {
63 
64  public function setUp(): void
65  {
66  $this->name_source = new DefNamesource();
67  }
68 
69  protected function buildFactory(): I\Input\Field\Factory
70  {
71  $df = new Data\Factory();
72  $language = $this->createMock(ilLanguage::class);
73  return new I\Input\Field\Factory(
74  $this->createMock(\ILIAS\UI\Implementation\Component\Input\UploadLimitResolver::class),
75  new SignalGenerator(),
76  $df,
77  new Refinery($df, $language),
78  $language
79  );
80  }
81 
82  public function test_implements_factory_interface(): void
83  {
84  $f = $this->buildFactory();
85  $pwd = $f->password("label", "byline");
86  $this->assertInstanceOf(\ILIAS\UI\Component\Input\Container\Form\FormInput::class, $pwd);
87  $this->assertInstanceOf(Field\Password::class, $pwd);
88  }
89 
90  public function test_render(): void
91  {
92  $f = $this->buildFactory();
93  $label = "label";
94  $byline = "byline";
95  $name = "name_0";
96  $pwd = $f->password($label, $byline)->withNameFrom($this->name_source);
97 
98  $r = $this->getDefaultRenderer();
99  $expected = '
100  <div class="form-group row">
101  <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">' . $label . '</label>
102  <div class="col-sm-8 col-md-9 col-lg-10">
103  <div class="il-input-password" id="id_1_container">
104  <input id="id_1" type="password" name="' . $name . '" class="form-control form-control-sm" />
105  </div>
106  <div class="help-block">' . $byline . '</div>
107  </div>
108  </div>';
109  $this->assertHTMLEquals($expected, $r->render($pwd));
110  }
111 
112  public function test_render_error(): void
113  {
114  $f = $this->buildFactory();
115  $label = "label";
116  $byline = "byline";
117  $error = "an_error";
118  $pwd = $f->password($label, $byline)->withNameFrom($this->name_source)->withError($error);
119 
120  $r = $this->getDefaultRenderer();
121  $html = $this->brutallyTrimHTML($r->render($pwd));
122  $expected = $this->brutallyTrimHTML('
123 <div class="form-group row">
124  <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">label</label>
125  <div class="col-sm-8 col-md-9 col-lg-10">
126  <div class="help-block alert alert-danger" aria-describedby="id_1" role="alert">an_error</div>
127  <div class="il-input-password" id="id_1_container"><input id="id_1" type="password" name="name_0" class="form-control form-control-sm" /></div>
128  <div class="help-block">byline</div>
129  </div>
130 </div>');
131 
132  $this->assertEquals($expected, $html);
133  }
134 
135  public function test_render_no_byline(): void
136  {
137  $f = $this->buildFactory();
138  $label = "label";
139  $name = "name_0";
140  $pwd = $f->password($label)->withNameFrom($this->name_source);
141 
142  $r = $this->getDefaultRenderer();
143  $expected = '
144  <div class="form-group row">
145  <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">' . $label . '</label>
146  <div class="col-sm-8 col-md-9 col-lg-10">
147  <div class="il-input-password" id="id_1_container">
148  <input id="id_1" type="password" name="' . $name . '" class="form-control form-control-sm" />
149  </div>
150  </div>
151  </div>';
152  $this->assertHTMLEquals($expected, $r->render($pwd));
153  }
154 
155  public function test_render_value(): void
156  {
157  $f = $this->buildFactory();
158  $label = "label";
159  $value = "value_0";
160  $name = "name_0";
161  $pwd = $f->password($label)->withValue($value)->withNameFrom($this->name_source);
162 
163  $r = $this->getDefaultRenderer();
164  $expected = '
165  <div class="form-group row">
166  <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">' . $label . '</label>
167  <div class="col-sm-8 col-md-9 col-lg-10">
168  <div class="il-input-password" id="id_1_container">
169  <input id="id_1" type="password" name="' . $name . '" value="' . $value . '" class="form-control form-control-sm" />
170  </div>
171  </div>
172  </div>';
173  $this->assertHTMLEquals($expected, $r->render($pwd));
174  }
175 
176  public function test_render_required(): void
177  {
178  $f = $this->buildFactory();
179  $label = "label";
180  $name = "name_0";
181  $pwd = $f->password($label)->withNameFrom($this->name_source)->withRequired(true);
182 
183  $r = $this->getDefaultRenderer();
184  $html = $r->render($pwd);
185 
186  $expected = '
187  <div class="form-group row">
188  <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">' . $label . '<span class="asterisk">*</span></label>
189  <div class="col-sm-8 col-md-9 col-lg-10">
190  <div class="il-input-password" id="id_1_container">
191  <input id="id_1" type="password" name="' . $name . '" class="form-control form-control-sm" />
192  </div>
193  </div>
194  </div>';
195  $this->assertHTMLEquals($expected, $html);
196  }
197 
198  public function test_render_disabled(): void
199  {
200  $f = $this->buildFactory();
201  $label = "label";
202  $name = "name_0";
203  $pwd = $f->password($label)->withNameFrom($this->name_source)->withDisabled(true);
204 
205  $r = $this->getDefaultRenderer();
206  $html = $r->render($pwd);
207 
208  $expected = '
209  <div class="form-group row">
210  <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">' . $label . '</label>
211  <div class="col-sm-8 col-md-9 col-lg-10">
212  <div class="il-input-password" id="id_1_container">
213  <input id="id_1" type="password" name="' . $name . '" disabled="disabled" class="form-control form-control-sm" />
214  </div>
215  </div>
216  </div>';
217  $this->assertHTMLEquals($expected, $html);
218  }
219 
220  public function test_value_required(): void
221  {
222  $f = $this->buildFactory();
223  $label = "label";
224  $name = "name_0";
225  $pwd = $f->password($label)->withNameFrom($this->name_source)->withRequired(true);
226 
227  $pwd1 = $pwd->withInput(new DefInputData([$name => "0"]));
228  $value1 = $pwd1->getContent();
229  $this->assertTrue($value1->isOk());
230 
231  $pwd2 = $pwd->withInput(new DefInputData([$name => ""]));
232  $value2 = $pwd2->getContent();
233  $this->assertTrue($value2->isError());
234  }
235 
236  public function test_value_type(): void
237  {
238  $f = $this->buildFactory();
239  $label = "label";
240  $pwd = $f->password($label)->withNameFrom($this->name_source);
241  $this->assertNull($pwd->getValue());
242 
243  $post = new _PWDInputData();
244  $pwd = $pwd->withInput($post);
245  $this->assertEquals($post->getOr('', ''), $pwd->getValue());
246  $this->assertInstanceOf(PWD::class, $pwd->getContent()->value());
247  }
248 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class Factory.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ChatMainBarProvider .
DefNamesource $name_source
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Describes how Input-Elements want to interact with posted data.
Definition: InputData.php:29
getOr(string $name, $default)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21
if($format !==null) $name
Definition: metadata.php:247
Provides common functionality for UI tests.
Definition: Base.php:298
$post
Definition: ltitoken.php:49