ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilCalendarRecurrenceCalculationTest.php
Go to the documentation of this file.
1
<?php
2
19
use
PHPUnit\Framework\TestCase
;
20
use
ILIAS\DI\Container
;
21
22
class
ilCalendarRecurrenceCalculationTest
extends
TestCase
23
{
24
protected
$backupGlobals
=
false
;
25
protected
Container
$dic
;
26
27
protected
function
setUp
(): void
28
{
29
$this->
initDependencies
();
30
parent::setUp();
31
}
32
33
public
function
testCalculatorConstruct
()
34
{
35
$entry =
new
ilCalendarEntry
(0);
36
$entry->setStart(
new
ilDate
(
'2022-01-01'
,
IL_CAL_DATE
));
37
$entry->setEnd(
new
ilDate
(
'2022-01-01'
,
IL_CAL_DATE
));
38
$entry->setFullday(
true
);
39
$entry->setTitle(
'First'
);
40
$rec =
new
ilCalendarRecurrence
(0);
41
42
$calc =
new
ilCalendarRecurrenceCalculator
(
43
$entry,
44
$rec
45
);
46
$this->assertTrue($calc instanceof
ilCalendarRecurrenceCalculator
);
47
}
48
49
public
function
testYearly
()
50
{
51
$entry =
new
ilCalendarEntry
(0);
52
$entry->setStart(
new
ilDate
(
'2022-01-01'
,
IL_CAL_DATE
));
53
$entry->setEnd(
new
ilDate
(
'2022-01-01'
,
IL_CAL_DATE
));
54
$entry->setFullday(
true
);
55
56
$rec =
new
ilCalendarRecurrence
(0);
57
$rec->setFrequenceType(
ilCalendarRecurrence::FREQ_YEARLY
);
58
$rec->setInterval(1);
59
$rec->setFrequenceUntilCount(1);
60
61
$calc =
new
ilCalendarRecurrenceCalculator
(
62
$entry,
63
$rec
64
);
65
$dl = $calc->calculateDateList(
66
new
ilDateTime
(
'2021-12-31'
,
IL_CAL_DATE
),
67
new
ilDate
(
'2023-12-31'
,
IL_CAL_DATE
),
68
-1
69
);
70
$this->assertCount(1, $dl);
71
foreach
($dl as $date) {
72
$this->assertTrue(strcmp($date->get(
IL_CAL_DATE
),
'2022-01-01'
) === 0);
73
}
74
}
75
76
public
function
testMonthly
()
77
{
78
$entry =
new
ilCalendarEntry
(0);
79
$entry->setStart(
new
ilDate
(
'2022-01-01'
,
IL_CAL_DATE
));
80
$entry->setEnd(
new
ilDate
(
'2023-01-01'
,
IL_CAL_DATE
));
81
$entry->setFullday(
true
);
82
83
$rec =
new
ilCalendarRecurrence
(0);
84
$rec->setFrequenceType(
ilCalendarRecurrence::FREQ_MONTHLY
);
85
$rec->setInterval(1);
86
$rec->setFrequenceUntilCount(2);
87
88
$calc =
new
ilCalendarRecurrenceCalculator
(
89
$entry,
90
$rec
91
);
92
$dl = $calc->calculateDateList(
93
new
ilDateTime
(
'2021-12-31'
,
IL_CAL_DATE
),
94
new
ilDate
(
'2023-12-31'
,
IL_CAL_DATE
),
95
-1
96
);
97
$result =
new
ilDateList
(
ilDateList::TYPE_DATE
);
98
$result->add(
new
ilDate
(
'2022-01-01'
,
IL_CAL_DATE
));
99
$result->add(
new
ilDate
(
'2022-02-01'
,
IL_CAL_DATE
));
100
101
$this->assertTrue($result == $dl);
102
}
103
104
public
function
testMonthlyByDay
()
105
{
106
$entry =
new
ilCalendarEntry
(0);
107
$entry->setStart(
new
ilDate
(
'2022-01-01'
,
IL_CAL_DATE
));
108
$entry->setEnd(
new
ilDate
(
'2023-01-01'
,
IL_CAL_DATE
));
109
$entry->setFullday(
true
);
110
111
// next two first days of the month which are on saturday => (2022-01-01, 2022-10-01)
112
$rec =
new
ilCalendarRecurrence
(0);
113
$rec->setFrequenceType(
ilCalendarRecurrence::FREQ_MONTHLY
);
114
$rec->setBYDAY(
'SA'
);
115
$rec->setBYMONTHDAY(
'1'
);
116
$rec->setInterval(1);
117
$rec->setFrequenceUntilCount(2);
118
119
$calc =
new
ilCalendarRecurrenceCalculator
(
120
$entry,
121
$rec
122
);
123
$dl = $calc->calculateDateList(
124
new
ilDateTime
(
'2021-12-31'
,
IL_CAL_DATE
),
125
new
ilDate
(
'2023-12-31'
,
IL_CAL_DATE
),
126
-1
127
);
128
$result =
new
ilDateList
(
ilDateList::TYPE_DATE
);
129
$result->add(
new
ilDate
(
'2022-01-01'
,
IL_CAL_DATE
));
130
$result->add(
new
ilDate
(
'2022-10-01'
,
IL_CAL_DATE
));
131
$this->assertTrue($result == $dl);
132
}
133
134
protected
function
setGlobalVariable
(
string
$name
, $value): void
135
{
136
global
$DIC
;
137
138
$GLOBALS
[
$name
] = $value;
139
unset($DIC[$name]);
140
$DIC[
$name
] =
static
function
(
\ILIAS\DI\Container
$c
) use ($value) {
141
return
$value;
142
};
143
}
144
145
protected
function
initDependencies
(): void
146
{
147
$this->dic =
new
Container
();
148
$GLOBALS
[
'DIC'
] =
$this->dic
;
149
150
$this->
setGlobalVariable
(
'ilDB'
, $this->createMock(ilDBInterface::class));
151
$this->
setGlobalVariable
(
'lng'
, $this->createMock(ilLanguage::class));
152
$this->
setGlobalVariable
(
'ilErr'
, $this->createMock(ilErrorHandling::class));
153
154
$logger = $this->getMockBuilder(ilLogger::class)
155
->disableOriginalConstructor()
156
->getMock();
157
158
$logger_factory = $this->getMockBuilder(ilLoggerFactory::class)
159
->disableOriginalConstructor()
160
->onlyMethods([
'getComponentLogger'
])
161
->getMock();
162
$logger_factory->method(
'getComponentLogger'
)->willReturn($logger);
163
$this->
setGlobalVariable
(
'ilLoggerFactory'
, $logger_factory);
164
}
165
}
ilCalendarRecurrenceCalculationTest\$dic
Container $dic
Definition:
class.ilCalendarRecurrenceCalculationTest.php:25
ilCalendarRecurrenceCalculationTest\initDependencies
initDependencies()
Definition:
class.ilCalendarRecurrenceCalculationTest.php:145
ilDate
ilCalendarEntry
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilCalendarEntry.php:27
ilDateTime
$c
$c
Definition:
cli.php:38
ilCalendarRecurrenceCalculationTest\setGlobalVariable
setGlobalVariable(string $name, $value)
Definition:
class.ilCalendarRecurrenceCalculationTest.php:134
ilDateList\TYPE_DATE
const TYPE_DATE
Definition:
class.ilDateList.php:34
ilCalendarRecurrenceCalculationTest\testMonthly
testMonthly()
Definition:
class.ilCalendarRecurrenceCalculationTest.php:76
ilCalendarRecurrence
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilCalendarRecurrence.php:29
ilCalendarRecurrenceCalculationTest\$backupGlobals
$backupGlobals
Definition:
class.ilCalendarRecurrenceCalculationTest.php:24
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:31
$DIC
global $DIC
Definition:
feed.php:28
Container
$name
if($format !==null) $name
Definition:
metadata.php:247
ilCalendarRecurrenceCalculator
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilCalendarRecurrenceCalculator.php:27
ilDateList
List of dates.
Definition:
class.ilDateList.php:32
$GLOBALS
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
Definition:
PEAR.php:64
ilCalendarRecurrenceCalculationTest
Definition:
class.ilCalendarRecurrenceCalculationTest.php:22
ilCalendarRecurrence\FREQ_YEARLY
const FREQ_YEARLY
Definition:
class.ilCalendarRecurrence.php:38
IL_CAL_DATE
const IL_CAL_DATE
Definition:
class.ilDateTime.php:8
ilCalendarRecurrenceCalculationTest\testCalculatorConstruct
testCalculatorConstruct()
Definition:
class.ilCalendarRecurrenceCalculationTest.php:33
ilCalendarRecurrence\FREQ_MONTHLY
const FREQ_MONTHLY
Definition:
class.ilCalendarRecurrence.php:37
TestCase
ilCalendarRecurrenceCalculationTest\setUp
setUp()
Definition:
class.ilCalendarRecurrenceCalculationTest.php:27
ilCalendarRecurrenceCalculationTest\testYearly
testYearly()
Definition:
class.ilCalendarRecurrenceCalculationTest.php:49
ilCalendarRecurrenceCalculationTest\testMonthlyByDay
testMonthlyByDay()
Definition:
class.ilCalendarRecurrenceCalculationTest.php:104
Services
Calendar
test
class.ilCalendarRecurrenceCalculationTest.php
Generated on Fri Apr 4 2025 22:02:11 for ILIAS by
1.8.13 (using
Doxyfile
)