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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<?php
namespace Codeception\Test;
use Codeception\Configuration;
use Codeception\Exception\ModuleException;
use Codeception\Lib\Di;
use Codeception\Lib\Notification;
use Codeception\Scenario;
use Codeception\TestInterface;
/**
* Represents tests from PHPUnit compatible format.
*/
class Unit extends \PHPUnit\Framework\TestCase implements
Interfaces\Reported,
Interfaces\Dependent,
TestInterface
{
use \Codeception\Test\Feature\Stub;
/**
* @var Metadata
*/
private $metadata;
public function getMetadata()
{
if (!$this->metadata) {
$this->metadata = new Metadata();
}
return $this->metadata;
}
protected function setUp()
{
if ($this->getMetadata()->isBlocked()) {
if ($this->getMetadata()->getSkip() !== null) {
$this->markTestSkipped($this->getMetadata()->getSkip());
}
if ($this->getMetadata()->getIncomplete() !== null) {
$this->markTestIncomplete($this->getMetadata()->getIncomplete());
}
return;
}
/** @var $di Di **/
$di = $this->getMetadata()->getService('di');
$di->set(new Scenario($this));
// auto-inject $tester property
if (($this->getMetadata()->getCurrent('actor')) && ($property = lcfirst(Configuration::config()['actor_suffix']))) {
$this->$property = $di->instantiate($this->getMetadata()->getCurrent('actor'));
}
// Auto inject into the _inject method
$di->injectDependencies($this); // injecting dependencies
$this->_before();
}
/**
* @Override
*/
protected function _before()
{
}
protected function tearDown()
{
$this->_after();
}
/**
* @Override
*/
protected function _after()
{
}
/**
* If the method exists (PHPUnit 5) forward the call to the parent class, otherwise
* call `expectException` instead (PHPUnit 6)
*/
public function setExpectedException($exception, $message = null, $code = null)
{
if (is_callable('parent::setExpectedException')) {
parent::setExpectedException($exception, $message, $code);
} else {
Notification::deprecate('PHPUnit\Framework\TestCase::setExpectedException deprecated in favor of expectException, expectExceptionMessage, and expectExceptionCode');
$this->expectException($exception);
if ($message !== null) {
$this->expectExceptionMessage($message);
}
if ($code !== null) {
$this->expectExceptionCode($code);
}
}
}
/**
* @param $module
* @return \Codeception\Module
* @throws ModuleException
*/
public function getModule($module)
{
$modules = $this->getMetadata()->getCurrent('modules');
if (!isset($modules[$module])) {
throw new ModuleException($module, "Module can't be accessed");
}
return $modules[$module];
}
/**
* Returns current values
*/
public function getCurrent($current)
{
return $this->getMetadata()->getCurrent($current);
}
/**
* @return array
*/
public function getReportFields()
{
return [
'name' => $this->getName(),
'class' => get_class($this),
'file' => $this->getMetadata()->getFilename()
];
}
public function getDependencies()
{
$names = [];
foreach ($this->getMetadata()->getDependencies() as $required) {
if ((strpos($required, ':') === false) and method_exists($this, $required)) {
$required = get_class($this) . ":$required";
}
$names[] = $required;
}
return $names;
}
/**
* Reset PHPUnit's dependencies
* @return bool
*/
public function handleDependencies()
{
$dependencies = $this->getDependencies();
if (empty($dependencies)) {
return true;
}
$passed = $this->getTestResultObject()->passed();
$dependencyInput = [];
foreach ($dependencies as $dependency) {
$dependency = str_replace(':', '::', $dependency); // Codeception => PHPUnit format
if (strpos($dependency, '::') === false) { // check it is method of same class
$dependency = get_class($this) . '::' . $dependency;
}
if (isset($passed[$dependency])) {
$dependencyInput[] = $passed[$dependency]['result'];
} else {
$dependencyInput[] = null;
}
}
$this->setDependencyInput($dependencyInput);
return true;
}
}