-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestsRunner.php
200 lines (172 loc) · 5.69 KB
/
TestsRunner.php
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<?php
namespace Src;
use Facebook\WebDriver\Remote\RemoteWebDriver;
use Facebook\WebDriver\Remote\DesiredCapabilities;
use Facebook\WebDriver\Chrome\ChromeOptions;
use Facebook\WebDriver\Firefox\FirefoxOptions;
use Src\ResultsContainer;
use Src\CmdMessages;
/**
* Class TestsRunner
*
* Main class to run Selenium tests
*/
class TestsRunner
{
private RemoteWebDriver $driver;
private int $startTime;
public function __construct()
{
if (!function_exists('pcntl_async_signals') || !function_exists('pcntl_signal')) {
throw new \Exception('PCNTL functions are not available. Ensure PHP is compiled with --enable-pcntl');
}
// Handle Ctrl+C or process termination
pcntl_async_signals(true);
pcntl_signal(SIGINT, function () {
echo "Exiting..." . PHP_EOL;
if(isset($this->driver)) {
$this->driver->quit();
}
exit;
});
register_shutdown_function([$this, 'shutdown']);
}
/**
* Shutdown handler to quit the WebDriver
*/
private function shutdown(): void
{
$error = error_get_last();
if ($error !== null && isset($this->driver)) {
$this->driver->quit();
}
}
/**
* Main method to run all tests
*/
public function run(array $testFiles): void
{
$this->startTime = time();
$this->driver = $this->createWebDriver();
foreach ($testFiles as $file) {
$this->executeTestFile($file);
}
}
/**
* Create a WebDriver instance based on configuration
*
* @return RemoteWebDriver
* @throws Exception if an invalid driver is specified
*/
private function createWebDriver(): RemoteWebDriver
{
$browserArguments = BROWSER_ARGUMENTS ?? [];
$browserCapabilities = BROWSER_CAPABILITIES ?? [];
switch (DRIVER) {
case 'chrome':
$chromeOptions = new ChromeOptions();
if(count($browserArguments) > 0) {
$chromeOptions->addArguments($browserArguments);
}
$capabilities = DesiredCapabilities::chrome();
$capabilities->setCapability(ChromeOptions::CAPABILITY_W3C, $chromeOptions);
if(count($browserCapabilities) > 0) {
foreach ($browserCapabilities as $key => $value) {
$capabilities->setCapability($key, $value);
}
}
return RemoteWebDriver::create(HOST, $capabilities, SELENIUM_CONNECTION_TIMEOUT, SELENIUM_REQUEST_TIMEOUT);
case 'firefox':
$firefoxOptions = new FirefoxOptions();
if(count($browserArguments) > 0) {
$firefoxOptions->addArguments($browserArguments);
}
$capabilities = DesiredCapabilities::firefox();
$capabilities->setCapability(FirefoxOptions::CAPABILITY, $firefoxOptions);
if(count($browserCapabilities) > 0) {
foreach ($browserCapabilities as $key => $value) {
$capabilities->setCapability($key, $value);
}
}
return RemoteWebDriver::create(HOST, $capabilities, SELENIUM_CONNECTION_TIMEOUT, SELENIUM_REQUEST_TIMEOUT);
default:
throw new Exception('Invalid driver');
}
}
/**
* Execute a single test file
*
* @param string $file
*/
private function executeTestFile(string $file): void
{
CmdMessages::printMessage("Running test: $file");
require_once $file;
$className = 'Tests\\' . basename($file, '.php');
if (class_exists($className)) {
$testClass = new $className($this->driver);
$this->runTestMethods($testClass);
}
CmdMessages::printMessage("Test completed $file completed.");
}
/**
* Run all test methods in a test class
*
* @param object $testClass
*/
private function runTestMethods(object $testClass): void
{
$methods = get_class_methods($testClass);
foreach ($methods as $method) {
if (strpos($method, '_test') !== false) {
$this->executeTestMethod($testClass, $method);
}
}
}
/**
* Execute a single test method
*
* @param object $testClass
* @param string $method
*/
private function executeTestMethod(object $testClass, string $method): void
{
try {
if (method_exists($testClass, 'beforeEachTest')) {
$testClass->beforeEachTest();
}
$testClass->$method();
if (method_exists($testClass, 'afterEachTest')) {
$testClass->afterEachTest();
}
ResultsContainer::setSuccess(get_class($testClass), $method);
} catch (\Throwable $e) {
$this->handleTestException($testClass, $method, $e);
}
}
/**
* Handle exceptions thrown during test execution
*
* @param object $testClass
* @param string $method
* @param \Throwable $e
*/
private function handleTestException(object $testClass, string $method, \Throwable $e): void
{
$exceptionType = get_class($e);
$trace = $e->getTrace();
ResultsContainer::setFailed(
$exceptionType,
$e->getMessage(),
get_class($testClass),
$method,
$trace
);
}
public function __destruct()
{
if (isset($this->driver)) {
$this->driver->quit();
}
}
}