ilTimerDetectorTest is part of the petri net based workflow engine.
More...
ilTimerDetectorTest is part of the petri net based workflow engine.
This class holds all tests for the class detectors/class.ilTimerDetector
- Author
- Maximilian Becker mbeck.nosp@m.er@d.nosp@m.ataba.nosp@m.y.de
- Version
- $Id$
/
Definition at line 15 of file ilTimerDetectorTest.php.
◆ setUp()
ilTimerDetectorTest::setUp |
( |
| ) |
|
Definition at line 17 of file ilTimerDetectorTest.php.
18 {
19 include_once("./Services/PHPUnit/classes/class.ilUnitUtil.php");
20
21
22 require_once './Services/WorkflowEngine/classes/utils/class.ilWorkflowUtils.php';
23
24
25 require_once './Services/WorkflowEngine/classes/workflows/class.ilEmptyWorkflow.php';
27
28
29 require_once './Services/WorkflowEngine/classes/nodes/class.ilBasicNode.php';
31
32
33 $this->workflow->addNode($this->node);
34
35 require_once './Services/WorkflowEngine/classes/detectors/class.ilTimerDetector.php';
36 }
@noinspection PhpIncludeInspection
@noinspection PhpIncludeInspection
◆ tearDown()
ilTimerDetectorTest::tearDown |
( |
| ) |
|
◆ testConstructorValidContext()
ilTimerDetectorTest::testConstructorValidContext |
( |
| ) |
|
Definition at line 47 of file ilTimerDetectorTest.php.
48 {
49
51
52
53
54 $this->assertTrue(
55 true,
56 'Construction failed with valid context passed to constructor.'
57 );
58 }
@noinspection PhpIncludeInspection
◆ testGetContext()
ilTimerDetectorTest::testGetContext |
( |
| ) |
|
Definition at line 350 of file ilTimerDetectorTest.php.
351 {
352
354
355
356 $actual = $detector->getContext();
357
358
359 if ($actual === $this->node) {
360 $this->assertEquals($actual, $this->node);
361 } else {
362 $this->assertTrue(false, 'Context not identical.');
363 }
364 }
◆ testGetEvent()
ilTimerDetectorTest::testGetEvent |
( |
| ) |
|
Definition at line 302 of file ilTimerDetectorTest.php.
303 {
304
306 $exp_type = 'time_passed';
307 $exp_content = 'time_passed';
308
309
310
311
312 $event = $detector->getEvent();
313 $act_type = $event['type'];
314 $act_content = $event['content'];
315 $this->assertEquals($exp_type . $exp_content, $act_type . $act_content);
316 }
◆ testGetEventContext()
ilTimerDetectorTest::testGetEventContext |
( |
| ) |
|
Definition at line 334 of file ilTimerDetectorTest.php.
335 {
336
338 $exp_type = 'none';
339 $exp_id = '0';
340
341
342
343
344 $event = $detector->getEventContext();
345 $act_type = $event['type'];
346 $act_id = $event['identifier'];
347 $this->assertEquals($exp_type . $exp_id, $act_type . $act_id);
348 }
◆ testGetEventSubject()
ilTimerDetectorTest::testGetEventSubject |
( |
| ) |
|
Definition at line 318 of file ilTimerDetectorTest.php.
319 {
320
322 $exp_type = 'none';
323 $exp_id = '0';
324
325
326
327
328 $event = $detector->getEventSubject();
329 $act_type = $event['type'];
330 $act_id = $event['identifier'];
331 $this->assertEquals($exp_type . $exp_id, $act_type . $act_id);
332 }
◆ testGetNonExistingDbId()
ilTimerDetectorTest::testGetNonExistingDbId |
( |
| ) |
|
◆ testHasDbIdSet()
ilTimerDetectorTest::testHasDbIdSet |
( |
| ) |
|
Definition at line 260 of file ilTimerDetectorTest.php.
261 {
262
264 $expected = '1234';
265
266
267 $detector->setDbId($expected);
268 $actual = $detector->hasDbId();
269
270
271 $this->assertTrue($actual);
272 }
◆ testHasDbIdUnset()
ilTimerDetectorTest::testHasDbIdUnset |
( |
| ) |
|
Definition at line 290 of file ilTimerDetectorTest.php.
291 {
292
294
295
296 $actual = $detector->hasDbId();
297
298
299 $this->assertFalse($actual);
300 }
◆ testIsListeningWithoutTimeFrame()
ilTimerDetectorTest::testIsListeningWithoutTimeFrame |
( |
| ) |
|
Definition at line 154 of file ilTimerDetectorTest.php.
155 {
156
158 $timer_start = ilWorkflowUtils::time() + 5 * 60; # +5 Minutes from here.
159 $timer_end = 0;
160
161
162 $actual = $detector->isListening();
163
164
165 $this->assertTrue($actual, 'Detector should be listening.');
166 }
◆ testIsListeningWithPastTimeFrame()
ilTimerDetectorTest::testIsListeningWithPastTimeFrame |
( |
| ) |
|
Definition at line 186 of file ilTimerDetectorTest.php.
187 {
188
190 $timer_start = ilWorkflowUtils::time() - 5 * 60; # -5 Minutes from now.
191 $timer_end = ilWorkflowUtils::time() - 1 * 60; # -1 Minute from now.
192 $detector->setListeningTimeframe($timer_start, $timer_end);
193
194
195 $actual = $detector->isListening();
196
197
198 $this->assertFalse($actual, 'Detector should not be listening.');
199 }
◆ testIsListeningWithTimeFrame()
ilTimerDetectorTest::testIsListeningWithTimeFrame |
( |
| ) |
|
Definition at line 139 of file ilTimerDetectorTest.php.
140 {
141
143 $timer_start = ilWorkflowUtils::time() + 5 * 60; # +5 Minutes from here.
144 $timer_end = 0;
145 $detector->setListeningTimeframe($timer_start, $timer_end);
146
147
148 $actual = $detector->isListening();
149
150
151 $this->assertFalse($actual, 'Detector should not be listening.');
152 }
◆ testIsListeningWithWildcardBeginningTimeFrame()
ilTimerDetectorTest::testIsListeningWithWildcardBeginningTimeFrame |
( |
| ) |
|
Definition at line 216 of file ilTimerDetectorTest.php.
217 {
218
220 $timer_start = 0; # Wildcard.
221 $timer_end = ilWorkflowUtils::time() + 5 * 60; # +5 Minutes from now.
222 $detector->setListeningTimeframe($timer_start, $timer_end);
223
224
225 $actual = $detector->isListening();
226
227
228 $this->assertTrue($actual, 'Detector should not be listening.');
229 }
◆ testIsListeningWithWildcardEndingTimeFrame()
ilTimerDetectorTest::testIsListeningWithWildcardEndingTimeFrame |
( |
| ) |
|
Definition at line 201 of file ilTimerDetectorTest.php.
202 {
203
205 $timer_start = ilWorkflowUtils::time() - 5 * 60; # -5 Minutes from now.
206 $timer_end = 0; # Wildcard.
207 $detector->setListeningTimeframe($timer_start, $timer_end);
208
209
210 $actual = $detector->isListening();
211
212
213 $this->assertTrue($actual, 'Detector should not be listening.');
214 }
◆ testSetGetDbId()
ilTimerDetectorTest::testSetGetDbId |
( |
| ) |
|
Definition at line 246 of file ilTimerDetectorTest.php.
247 {
248
250 $expected = '1234';
251
252
253 $detector->setDbId($expected);
254 $actual = $detector->getDbId();
255
256
257 $this->assertEquals($expected, $actual);
258 }
◆ testSetGetIllegalListeningTimeframe()
ilTimerDetectorTest::testSetGetIllegalListeningTimeframe |
( |
| ) |
|
@expectedException ilWorkflowInvalidArgumentException
Definition at line 171 of file ilTimerDetectorTest.php.
172 {
173
175 $exp_start = 4712;
176 $exp_end = 4711;
177
178
179 $detector->setListeningTimeframe($exp_start, $exp_end);
180 $act = $detector->getListeningTimeframe();
181
182
183 $this->assertEquals($exp_start . $exp_end, $act['listening_start'] . $act['listening_end']);
184 }
◆ testSetGetListeningTimeframe()
ilTimerDetectorTest::testSetGetListeningTimeframe |
( |
| ) |
|
Definition at line 231 of file ilTimerDetectorTest.php.
232 {
233
235 $exp_start = 4711; # +5 Minutes from here.
236 $exp_end = 4712;
237
238
239 $detector->setListeningTimeframe($exp_start, $exp_end);
240 $act = $detector->getListeningTimeframe();
241
242
243 $this->assertEquals($exp_start . $exp_end, $act['listening_start'] . $act['listening_end']);
244 }
◆ testSetGetTimerLimit()
ilTimerDetectorTest::testSetGetTimerLimit |
( |
| ) |
|
Definition at line 74 of file ilTimerDetectorTest.php.
75 {
76
78 $expected = 5 * 60 * 60;
79
80
81 $detector->setTimerLimit($expected);
82 $actual = $detector->getTimerLimit();
83
84
85 $this->assertEquals($actual, $expected);
86 }
◆ testSetGetTimerStart()
ilTimerDetectorTest::testSetGetTimerStart |
( |
| ) |
|
Definition at line 60 of file ilTimerDetectorTest.php.
61 {
62
64 $expected = ilWorkflowUtils::time();
65
66
67 $detector->setTimerStart($expected);
68 $actual = $detector->getTimerStart();
69
70
71 $this->assertEquals($actual, $expected);
72 }
◆ testTriggerEarly()
ilTimerDetectorTest::testTriggerEarly |
( |
| ) |
|
Definition at line 88 of file ilTimerDetectorTest.php.
89 {
90
92 $timer_start = ilWorkflowUtils::time(); # +5 Minutes from here.
93 $timer_limit = 5 * 60;
94 $detector->setTimerStart($timer_start);
95 $detector->setTimerLimit($timer_limit);
96
97
98 $detector->trigger(null);
99
100
101 $actual = $detector->getDetectorState();
102 $this->assertFalse($actual, 'Early trigger should not satisfy detector');
103 }
◆ testTriggerValid()
ilTimerDetectorTest::testTriggerValid |
( |
| ) |
|
Definition at line 105 of file ilTimerDetectorTest.php.
106 {
107
109 $timer_start = ilWorkflowUtils::time(); # +5 Minutes from now.
110 $timer_limit = 0;
111 $detector->setTimerStart($timer_start);
112 $detector->setTimerLimit($timer_limit);
113
114
115 $detector->trigger(null);
116
117
118 $actual = $detector->getDetectorState();
119 $this->assertTrue($actual, 'Trigger should not satisfy detector');
120 }
◆ testTriggerValidTwice()
ilTimerDetectorTest::testTriggerValidTwice |
( |
| ) |
|
Definition at line 122 of file ilTimerDetectorTest.php.
123 {
124
126 $timer_start = ilWorkflowUtils::time(); # +5 Minutes from now.
127 $timer_limit = 0;
128 $detector->setTimerStart($timer_start);
129 $detector->setTimerLimit($timer_limit);
130
131
132 $detector->trigger(null);
133 $actual = $detector->trigger(null);
134
135
136 $this->assertFalse($actual, 'Detector should be satisfied after single trigger');
137 }
The documentation for this class was generated from the following file: