ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
PasswordContraintsTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
25 {
31  public static function constraintsProvider(): array
32  {
33  $lng = new class () implements \ILIAS\Language\Language {
34  public function txt(string $a_topic, string $a_default_lang_fallback_mod = ""): string
35  {
36  return $a_topic;
37  }
38  public function loadLanguageModule(string $a_module): void
39  {
40  }
41  public function getLangKey(): string
42  {
43  return '';
44  }
45  public function toJS($key): void
46  {
47  }
48  };
49  $d = new \ILIAS\Data\Factory();
50  $refinery = new \ILIAS\Refinery\Factory($d, $lng);
51  $v = $refinery->password();
52 
53  return [
54  [
55  $v->hasMinLength(3),
56  [$d->password('abc'), $d->password('abcd')],
57  [$d->password('a'), $d->password('ab')]
58  ],
59  [
60  $v->hasLowerChars(),
61  [$d->password('abc'), $d->password('AbC')],
62  [$d->password('AB'), $d->password('21'), $d->password('#*+')]
63  ],
64 
65  [
66  $v->hasUpperChars(),
67  [$d->password('Abc'), $d->password('ABC')],
68  [$d->password('abc'), $d->password('21'), $d->password('#*+')]
69  ],
70  [
71  $v->hasNumbers(),
72  [$d->password('Ab1'), $d->password('123')],
73  [$d->password('abc'), $d->password('ABC'), $d->password('#*+')]
74  ],
75 
76  [
77  $v->hasSpecialChars(),
78  [$d->password('Ab+'), $d->password('123#')],
79  [$d->password('abc'), $d->password('ABC'), $d->password('123')]
80  ]
81  ];
82  }
83 
90  public function testAccept(Constraint $constraint, array $ok_values, array $error_values): void
91  {
92  foreach ($ok_values as $ok_value) {
93  $this->assertTrue($constraint->accepts($ok_value));
94  }
95  foreach ($error_values as $error_value) {
96  $this->assertFalse($constraint->accepts($error_value));
97  }
98  }
99 }
static constraintsProvider()
Test a set of values.
Interface Observer Contains several chained tasks and infos about them.
A constraint encodes some resrtictions on values.
Definition: Constraint.php:31
testAccept(Constraint $constraint, array $ok_values, array $error_values)
constraintsProvider
accepts($value)
Tells if the provided value complies.
global $lng
Definition: privfeed.php:31