blob: b2399b75618e0b658f85f675a58b8697d4499817 (
plain)
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
|
<?php
namespace Icinga\Module\Director\Test;
use Closure;
class TestProcess
{
protected $command;
protected $identifier;
protected $exitCode;
protected $output;
protected $onSuccess;
protected $onFailure;
protected $expectedExitCode = 0;
public function __construct($command, $identifier = null)
{
$this->command = $command;
$this->identifier = $identifier;
}
public function getIdentifier()
{
return $this->identifier;
}
public function expectExitCode($code)
{
$this->expectedExitCode = $code;
return $this;
}
public function onSuccess($func)
{
$this->onSuccess = $this->makeClosure($func);
return $this;
}
public function onFailure($func)
{
$this->onSuccess = $this->makeClosure($func);
return $this;
}
protected function makeClosure($func)
{
if ($func instanceof Closure) {
return $func;
}
if (is_array($func)) {
return function ($process) use ($func) {
return $func[0]->{$func[1]}($process);
};
}
}
public function onFailureThrow($message, $class = 'Exception')
{
return $this->onFailure(function () use ($message, $class) {
throw new $class($message);
});
}
public function run()
{
exec($this->command, $this->output, $this->exitCode);
if ($this->succeeded()) {
$this->triggerSuccess();
} else {
$this->triggerFailure();
}
}
public function succeeded()
{
return $this->exitCode === $this->expectedExitCode;
}
public function failed()
{
return $this->exitCode !== $this->expectedExitCode;
}
protected function triggerSuccess()
{
if (($func = $this->onSuccess) !== null) {
$func($this);
}
}
protected function triggerFailure()
{
if (($func = $this->onFailure) !== null) {
$func($this);
}
}
public function getExitCode()
{
return $this->exitCode;
}
public function getOutput()
{
return implode("\n", $this->output) . "\n";
}
}
|