1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
namespace Codeception\Subscriber;
use Codeception\Event\FailEvent;
use Codeception\Event\StepEvent;
use Codeception\Event\SuiteEvent;
use Codeception\Event\TestEvent;
use Codeception\Events;
use Codeception\Suite;
use Codeception\TestInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class Module implements EventSubscriberInterface
{
use Shared\StaticEvents;
public static $events = [
Events::TEST_BEFORE => 'before',
Events::TEST_AFTER => 'after',
Events::STEP_BEFORE => 'beforeStep',
Events::STEP_AFTER => 'afterStep',
Events::TEST_FAIL => 'failed',
Events::TEST_ERROR => 'failed',
Events::SUITE_BEFORE => 'beforeSuite',
Events::SUITE_AFTER => 'afterSuite'
];
protected $modules = [];
public function beforeSuite(SuiteEvent $e)
{
$suite = $e->getSuite();
if (!$suite instanceof Suite) {
return;
}
$this->modules = $suite->getModules();
foreach ($this->modules as $module) {
$module->_beforeSuite($e->getSettings());
}
}
public function afterSuite()
{
foreach ($this->modules as $module) {
$module->_afterSuite();
}
}
public function before(TestEvent $event)
{
if (!$event->getTest() instanceof TestInterface) {
return;
}
foreach ($this->modules as $module) {
$module->_cleanup();
$module->_resetConfig();
$module->_before($event->getTest());
}
}
public function after(TestEvent $e)
{
if (!$e->getTest() instanceof TestInterface) {
return;
}
foreach ($this->modules as $module) {
$module->_after($e->getTest());
}
}
public function failed(FailEvent $e)
{
if (!$e->getTest() instanceof TestInterface) {
return;
}
foreach ($this->modules as $module) {
$module->_failed($e->getTest(), $e->getFail());
}
}
public function beforeStep(StepEvent $e)
{
foreach ($this->modules as $module) {
$module->_beforeStep($e->getStep(), $e->getTest());
}
}
public function afterStep(StepEvent $e)
{
foreach ($this->modules as $module) {
$module->_afterStep($e->getStep(), $e->getTest());
}
}
}