ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
HasMinLengthConstraintTest.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2018 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
require_once(
"libs/composer/vendor/autoload.php"
);
5
6
use
ILIAS\Refinery\String\HasMinLength
;
7
use
ILIAS\Refinery
;
8
use
ILIAS\Data
;
9
use
PHPUnit\Framework\TestCase
;
10
11
class
HasMinLengthConstraintTest
extends
TestCase
12
{
16
private
$df
;
17
21
private
$lng
;
22
26
private
$min_length
;
27
31
private
$c
;
32
33
public
function
setUp
() : void
34
{
35
$this->df =
new
Data\Factory();
36
$this->lng = $this->createMock(\ilLanguage::class);
37
38
$this->min_length = 10;
39
40
$this->c =
new
HasMinLength
(
41
$this->min_length,
42
$this->df,
43
$this->lng
44
);
45
}
46
47
public
function
testAccepts1
()
48
{
49
$this->assertTrue($this->c->accepts(
"1234567890"
));
50
}
51
52
public
function
testAccepts2
()
53
{
54
$this->assertTrue($this->c->accepts(
"12345678901"
));
55
}
56
57
public
function
testNotAccepts
()
58
{
59
$this->assertFalse($this->c->accepts(
"123456789"
));
60
}
61
62
public
function
testCheckSucceed
()
63
{
64
$this->c->check(
"1234567890"
);
65
$this->assertTrue(
true
);
// does not throw
66
}
67
68
public
function
testCheckFails
()
69
{
70
$this->expectException(\UnexpectedValueException::class);
71
$this->c->check(
""
);
72
}
73
74
public
function
testNoProblemWith
()
75
{
76
$this->assertNull($this->c->problemWith(
"1234567890"
));
77
}
78
79
public
function
testProblemWith
()
80
{
81
$this->lng
82
->expects($this->once())
83
->method(
"txt"
)
84
->with(
"not_min_length"
)
85
->willReturn(
"-%s-%s-"
);
86
87
$this->assertEquals(
"-3-10-"
, $this->c->problemWith(
"123"
));
88
}
89
90
public
function
testRestrictOk
()
91
{
92
$ok
= $this->df->ok(
"1234567890"
);
93
94
$res
= $this->c->applyTo(
$ok
);
95
$this->assertTrue(
$res
->isOk());
96
}
97
98
public
function
testRestrictNotOk
()
99
{
100
$not_ok = $this->df->ok(
"1234"
);
101
102
$res
= $this->c->applyTo($not_ok);
103
$this->assertFalse(
$res
->isOk());
104
}
105
106
public
function
testRestrictError
()
107
{
108
$error = $this->df->error(
"error"
);
109
110
$res
= $this->c->applyTo($error);
111
$this->assertSame($error,
$res
);
112
}
113
114
public
function
testWithProblemBuilder
()
115
{
116
$new_c = $this->c->withProblemBuilder(
function
() {
117
return
"This was a fault"
;
118
});
119
$this->assertEquals(
"This was a fault"
, $new_c->problemWith(
""
));
120
}
121
}
HasMinLengthConstraintTest\testCheckFails
testCheckFails()
Definition:
HasMinLengthConstraintTest.php:68
ILIAS\Refinery
Definition:
Constraint.php:5
ILIAS\Refinery\String\HasMinLength
Definition:
HasMinLength.php:10
HasMinLengthConstraintTest\$min_length
$min_length
Definition:
HasMinLengthConstraintTest.php:26
HasMinLengthConstraintTest\testCheckSucceed
testCheckSucceed()
Definition:
HasMinLengthConstraintTest.php:62
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
HasMinLengthConstraintTest
Definition:
HasMinLengthConstraintTest.php:11
HasMinLengthConstraintTest\testAccepts1
testAccepts1()
Definition:
HasMinLengthConstraintTest.php:47
HasMinLengthConstraintTest\testWithProblemBuilder
testWithProblemBuilder()
Definition:
HasMinLengthConstraintTest.php:114
HasMinLengthConstraintTest\$c
$c
Definition:
HasMinLengthConstraintTest.php:31
$ok
$ok
Definition:
UtfNormalTest.php:80
HasMinLengthConstraintTest\$lng
$lng
Definition:
HasMinLengthConstraintTest.php:21
HasMinLengthConstraintTest\testProblemWith
testProblemWith()
Definition:
HasMinLengthConstraintTest.php:79
HasMinLengthConstraintTest\$df
$df
Definition:
HasMinLengthConstraintTest.php:16
HasMinLengthConstraintTest\testNoProblemWith
testNoProblemWith()
Definition:
HasMinLengthConstraintTest.php:74
HasMinLengthConstraintTest\testNotAccepts
testNotAccepts()
Definition:
HasMinLengthConstraintTest.php:57
HasMinLengthConstraintTest\testRestrictError
testRestrictError()
Definition:
HasMinLengthConstraintTest.php:106
HasMinLengthConstraintTest\testRestrictNotOk
testRestrictNotOk()
Definition:
HasMinLengthConstraintTest.php:98
HasMinLength
HasMinLengthConstraintTest\testRestrictOk
testRestrictOk()
Definition:
HasMinLengthConstraintTest.php:90
TestCase
HasMinLengthConstraintTest\setUp
setUp()
Definition:
HasMinLengthConstraintTest.php:33
HasMinLengthConstraintTest\testAccepts2
testAccepts2()
Definition:
HasMinLengthConstraintTest.php:52
ILIAS\Data
Definition:
Alphanumeric.php:10
tests
Refinery
String
Constraints
HasMinLengthConstraintTest.php
Generated on Wed Apr 2 2025 20:01:29 for ILIAS by
1.8.13 (using
Doxyfile
)