|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
|
4
|
|
|
|
|
5
|
|
|
namespace MyTester; |
|
6
|
|
|
|
|
7
|
|
|
use MyTester\Annotations\Reader; |
|
8
|
|
|
use Nette\Utils\Arrays; |
|
9
|
|
|
|
|
10
|
|
|
/** |
|
11
|
|
|
* SkipChecker |
|
12
|
|
|
* |
|
13
|
|
|
* @author Jakub Konečný |
|
14
|
|
|
* @internal |
|
15
|
|
|
*/ |
|
16
|
|
|
final class SkipChecker |
|
17
|
|
|
{ |
|
18
|
|
|
use \Nette\SmartObject; |
|
19
|
|
|
|
|
20
|
|
|
public const ANNOTATION_NAME = "skip"; |
|
21
|
|
|
|
|
22
|
|
|
private Reader $annotationsReader; |
|
23
|
|
|
/** @var callable[] */ |
|
24
|
|
|
private array $checkers = []; |
|
25
|
|
|
|
|
26
|
1 |
|
public function __construct(Reader $annotationsReader) |
|
27
|
|
|
{ |
|
28
|
1 |
|
$this->annotationsReader = $annotationsReader; |
|
29
|
1 |
|
$this->addDefaultCheckers(); |
|
30
|
1 |
|
} |
|
31
|
|
|
|
|
32
|
1 |
|
private function addDefaultCheckers(): void |
|
33
|
|
|
{ |
|
34
|
1 |
|
$this->addChecker("php", [$this, "checkPhpVersion"]); |
|
35
|
1 |
|
$this->addChecker("extension", [$this, "checkLoadedExtension"]); |
|
36
|
1 |
|
$this->addChecker("sapi", [$this, "checkPhpSapi"]); |
|
37
|
1 |
|
} |
|
38
|
|
|
|
|
39
|
1 |
|
public function addChecker(string $name, callable $callback): void |
|
40
|
|
|
{ |
|
41
|
1 |
|
$this->checkers[$name] = $callback; |
|
42
|
1 |
|
} |
|
43
|
|
|
|
|
44
|
|
|
/** |
|
45
|
|
|
* @return mixed |
|
46
|
|
|
*/ |
|
47
|
1 |
|
public function getSkipValue(string $class, string $method) |
|
48
|
|
|
{ |
|
49
|
1 |
|
return $this->annotationsReader->getAnnotation(static::ANNOTATION_NAME, $class, $method); |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
|
|
/** |
|
53
|
|
|
* Check whether to skip a test method |
|
54
|
|
|
* |
|
55
|
|
|
* @return bool|string |
|
56
|
|
|
*/ |
|
57
|
1 |
|
public function shouldSkip(string $class, string $method) |
|
58
|
|
|
{ |
|
59
|
1 |
|
$value = $this->getSkipValue($class, $method); |
|
60
|
1 |
|
if ($value === null) { |
|
61
|
1 |
|
return false; |
|
62
|
|
|
} elseif (is_scalar($value)) { |
|
63
|
|
|
return (bool) $value; |
|
64
|
|
|
} elseif (is_iterable($value)) { |
|
65
|
|
|
foreach ($value as $k => $v) { |
|
66
|
|
|
$checker = Arrays::get($this->checkers, $k, null); |
|
67
|
|
|
if ($checker === null) { |
|
68
|
|
|
return false; |
|
69
|
|
|
} |
|
70
|
|
|
return $checker($v); |
|
71
|
|
|
} |
|
72
|
|
|
} |
|
73
|
|
|
return false; |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
/** |
|
77
|
|
|
* @param mixed $value |
|
78
|
|
|
*/ |
|
79
|
|
|
public function checkPhpVersion($value): ?string |
|
80
|
|
|
{ |
|
81
|
|
|
if (version_compare(PHP_VERSION, (string) $value, "<")) { |
|
82
|
|
|
return "PHP version is lesser than $value"; |
|
83
|
|
|
} |
|
84
|
|
|
return null; |
|
85
|
|
|
} |
|
86
|
|
|
|
|
87
|
|
|
/** |
|
88
|
|
|
* @param mixed $value |
|
89
|
|
|
*/ |
|
90
|
|
|
public function checkLoadedExtension($value): ?string |
|
91
|
|
|
{ |
|
92
|
|
|
if (!extension_loaded($value)) { |
|
93
|
|
|
return "extension $value is not loaded"; |
|
94
|
|
|
} |
|
95
|
|
|
return null; |
|
96
|
|
|
} |
|
97
|
|
|
|
|
98
|
|
|
/** |
|
99
|
|
|
* @param mixed $value |
|
100
|
|
|
*/ |
|
101
|
|
|
public function checkPhpSapi($value): ?string |
|
102
|
|
|
{ |
|
103
|
|
|
if (PHP_SAPI != $value) { |
|
104
|
|
|
return "the sapi is not $value"; |
|
105
|
|
|
} |
|
106
|
|
|
return null; |
|
107
|
|
|
} |
|
108
|
|
|
} |
|
109
|
|
|
|