ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
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
HasMaxLengthConstraintTest.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
;
7
use
ILIAS\Data
;
8
use
PHPUnit\Framework\TestCase
;
9
10
class
HasMaxLengthConstraintTest
extends
TestCase
11
{
15
private
$df
;
16
20
private
$lng
;
21
25
private
$max_length
;
26
30
private
$c
;
31
32
public
function
setUp
() : void
33
{
34
$this->df =
new
Data\Factory();
35
$this->lng = $this->createMock(\ilLanguage::class);
36
37
$this->max_length = 2;
38
39
$this->c = new \ILIAS\Refinery\String\HasMaxLength(
40
$this->max_length,
41
$this->df,
42
$this->lng
43
);
44
}
45
46
public
function
testAccepts1
()
47
{
48
$this->assertTrue($this->c->accepts(
"12"
));
49
}
50
51
public
function
testAccepts2
()
52
{
53
$this->assertTrue($this->c->accepts(
"1"
));
54
}
55
56
public
function
testNotAccepts
()
57
{
58
$this->assertFalse($this->c->accepts(
"123"
));
59
}
60
61
public
function
testCheckSucceed
()
62
{
63
$this->c->check(
"12"
);
64
$this->assertTrue(
true
);
// does not throw
65
}
66
67
public
function
testCheckFails
()
68
{
69
$this->expectException(\UnexpectedValueException::class);
70
$this->c->check(
"123"
);
71
}
72
73
public
function
testNoProblemWith
()
74
{
75
$this->assertNull($this->c->problemWith(
"12"
));
76
}
77
78
public
function
testProblemWith
()
79
{
80
$this->lng
81
->expects($this->once())
82
->method(
"txt"
)
83
->with(
"not_max_length"
)
84
->willReturn(
"-%s-"
);
85
86
$this->assertEquals(
"-2-"
, $this->c->problemWith(
"123"
));
87
}
88
89
public
function
testRestrictOk
()
90
{
91
$ok
= $this->df->ok(
"12"
);
92
93
$res
= $this->c->applyTo(
$ok
);
94
$this->assertTrue(
$res
->isOk());
95
}
96
97
public
function
testRestrictNotOk
()
98
{
99
$not_ok = $this->df->ok(
"123"
);
100
101
$res
= $this->c->applyTo($not_ok);
102
$this->assertFalse(
$res
->isOk());
103
}
104
105
public
function
testRestrictError
()
106
{
107
$error = $this->df->error(
"error"
);
108
109
$res
= $this->c->applyTo($error);
110
$this->assertSame($error,
$res
);
111
}
112
113
public
function
testWithProblemBuilder
()
114
{
115
$new_c = $this->c->withProblemBuilder(
function
() {
116
return
"This was a fault"
;
117
});
118
$this->assertEquals(
"This was a fault"
, $new_c->problemWith(
"123"
));
119
}
120
}
HasMaxLengthConstraintTest\setUp
setUp()
Definition:
HasMaxLengthConstraintTest.php:32
ILIAS\Refinery
Definition:
ByTrying.php:5
HasMaxLengthConstraintTest\$df
$df
Definition:
HasMaxLengthConstraintTest.php:15
HasMaxLengthConstraintTest\testCheckFails
testCheckFails()
Definition:
HasMaxLengthConstraintTest.php:67
HasMaxLengthConstraintTest\$max_length
$max_length
Definition:
HasMaxLengthConstraintTest.php:25
HasMaxLengthConstraintTest\testRestrictError
testRestrictError()
Definition:
HasMaxLengthConstraintTest.php:105
HasMaxLengthConstraintTest\$lng
$lng
Definition:
HasMaxLengthConstraintTest.php:20
HasMaxLengthConstraintTest
Definition:
HasMaxLengthConstraintTest.php:10
HasMaxLengthConstraintTest\testRestrictOk
testRestrictOk()
Definition:
HasMaxLengthConstraintTest.php:89
HasMaxLengthConstraintTest\testRestrictNotOk
testRestrictNotOk()
Definition:
HasMaxLengthConstraintTest.php:97
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
HasMaxLengthConstraintTest\testAccepts1
testAccepts1()
Definition:
HasMaxLengthConstraintTest.php:46
HasMaxLengthConstraintTest\testAccepts2
testAccepts2()
Definition:
HasMaxLengthConstraintTest.php:51
HasMaxLengthConstraintTest\testNotAccepts
testNotAccepts()
Definition:
HasMaxLengthConstraintTest.php:56
$ok
$ok
Definition:
UtfNormalTest.php:80
HasMaxLengthConstraintTest\testProblemWith
testProblemWith()
Definition:
HasMaxLengthConstraintTest.php:78
HasMaxLengthConstraintTest\testWithProblemBuilder
testWithProblemBuilder()
Definition:
HasMaxLengthConstraintTest.php:113
HasMaxLengthConstraintTest\testNoProblemWith
testNoProblemWith()
Definition:
HasMaxLengthConstraintTest.php:73
HasMaxLengthConstraintTest\testCheckSucceed
testCheckSucceed()
Definition:
HasMaxLengthConstraintTest.php:61
HasMaxLengthConstraintTest\$c
$c
Definition:
HasMaxLengthConstraintTest.php:30
TestCase
ILIAS\Data
Definition:
Alphanumeric.php:10
tests
Refinery
String
Constraints
HasMaxLengthConstraintTest.php
Generated on Thu Apr 3 2025 21:01:38 for ILIAS by
1.8.13 (using
Doxyfile
)