|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
|
4
|
|
|
|
|
5
|
|
|
namespace Paraunit\Parser\JSON; |
|
6
|
|
|
|
|
7
|
|
|
use Paraunit\Lifecycle\ProcessEvent; |
|
8
|
|
|
use Paraunit\Process\AbstractParaunitProcess; |
|
9
|
|
|
use Paraunit\TestResult\Interfaces\TestResultHandlerInterface; |
|
10
|
|
|
use Paraunit\TestResult\Interfaces\TestResultInterface; |
|
11
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface; |
|
12
|
|
|
use Symfony\Component\EventDispatcher\EventSubscriberInterface; |
|
13
|
|
|
|
|
14
|
|
|
/** |
|
15
|
|
|
* Class LogParser |
|
16
|
|
|
* @package Paraunit\Parser\JSON |
|
17
|
|
|
*/ |
|
18
|
|
|
class LogParser implements EventSubscriberInterface |
|
19
|
|
|
{ |
|
20
|
|
|
/** @var LogFetcher */ |
|
21
|
|
|
private $logLocator; |
|
22
|
|
|
|
|
23
|
|
|
/** @var TestResultHandlerInterface */ |
|
24
|
|
|
private $noTestExecutedResultContainer; |
|
25
|
|
|
|
|
26
|
|
|
/** @var EventDispatcherInterface */ |
|
27
|
|
|
private $eventDispatcher; |
|
28
|
|
|
|
|
29
|
|
|
/** @var RetryParser */ |
|
30
|
|
|
private $retryParser; |
|
31
|
|
|
|
|
32
|
|
|
/** @var ParserChainElementInterface[] */ |
|
33
|
|
|
private $parsers; |
|
34
|
|
|
|
|
35
|
|
|
/** |
|
36
|
|
|
* LogParser constructor. |
|
37
|
|
|
* @param LogFetcher $logLocator |
|
38
|
|
|
* @param TestResultHandlerInterface $noTestExecutedResultContainer |
|
39
|
|
|
* @param EventDispatcherInterface $eventDispatcher |
|
40
|
|
|
* @param RetryParser $retryParser |
|
41
|
|
|
*/ |
|
42
|
44 |
|
public function __construct( |
|
43
|
|
|
LogFetcher $logLocator, |
|
44
|
|
|
TestResultHandlerInterface $noTestExecutedResultContainer, |
|
45
|
|
|
EventDispatcherInterface $eventDispatcher, |
|
46
|
|
|
RetryParser $retryParser |
|
47
|
|
|
) { |
|
48
|
44 |
|
$this->logLocator = $logLocator; |
|
49
|
44 |
|
$this->noTestExecutedResultContainer = $noTestExecutedResultContainer; |
|
50
|
44 |
|
$this->eventDispatcher = $eventDispatcher; |
|
51
|
44 |
|
$this->retryParser = $retryParser; |
|
52
|
44 |
|
$this->parsers = []; |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
70 |
|
public static function getSubscribedEvents(): array |
|
56
|
|
|
{ |
|
57
|
|
|
return [ |
|
58
|
70 |
|
ProcessEvent::PROCESS_TERMINATED => 'onProcessTerminated', |
|
59
|
|
|
]; |
|
60
|
|
|
} |
|
61
|
|
|
|
|
62
|
|
|
/** |
|
63
|
|
|
* @param ParserChainElementInterface $container |
|
64
|
|
|
*/ |
|
65
|
44 |
|
public function addParser(ParserChainElementInterface $container) |
|
66
|
|
|
{ |
|
67
|
44 |
|
$this->parsers[] = $container; |
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
|
|
/** |
|
71
|
|
|
* @return ParserChainElementInterface[] |
|
72
|
|
|
*/ |
|
73
|
|
|
public function getParsers(): array |
|
74
|
|
|
{ |
|
75
|
|
|
return $this->parsers; |
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
/** |
|
79
|
|
|
* @param ProcessEvent $processEvent |
|
80
|
|
|
*/ |
|
81
|
42 |
|
public function onProcessTerminated(ProcessEvent $processEvent) |
|
82
|
|
|
{ |
|
83
|
42 |
|
$process = $processEvent->getProcess(); |
|
84
|
42 |
|
$logs = $this->logLocator->fetch($process); |
|
85
|
|
|
|
|
86
|
42 |
|
if ($this->noTestsExecuted($process, $logs)) { |
|
87
|
4 |
|
$this->noTestExecutedResultContainer->addProcessToFilenames($process); |
|
88
|
|
|
|
|
89
|
4 |
|
return; |
|
90
|
|
|
} |
|
91
|
|
|
|
|
92
|
38 |
|
if ($this->retryParser->processWillBeRetried($process, $logs)) { |
|
93
|
7 |
|
$this->eventDispatcher->dispatch(ProcessEvent::PROCESS_TO_BE_RETRIED, new ProcessEvent($process)); |
|
94
|
|
|
|
|
95
|
7 |
|
return; |
|
96
|
|
|
} |
|
97
|
|
|
|
|
98
|
37 |
|
foreach ($logs as $singleLog) { |
|
99
|
37 |
|
$this->processLog($process, $singleLog); |
|
100
|
|
|
} |
|
101
|
|
|
|
|
102
|
37 |
|
$this->eventDispatcher->dispatch(ProcessEvent::PROCESS_PARSING_COMPLETED, new ProcessEvent($process)); |
|
103
|
|
|
} |
|
104
|
|
|
|
|
105
|
|
|
/** |
|
106
|
|
|
* @param AbstractParaunitProcess $process |
|
107
|
|
|
* @param \stdClass $logItem |
|
108
|
|
|
*/ |
|
109
|
37 |
|
private function processLog(AbstractParaunitProcess $process, \stdClass $logItem) |
|
110
|
|
|
{ |
|
111
|
|
|
/** @var ParserChainElementInterface $resultContainer */ |
|
112
|
37 |
|
foreach ($this->parsers as $resultContainer) { |
|
113
|
37 |
|
if ($resultContainer->handleLogItem($process, $logItem) instanceof TestResultInterface) { |
|
114
|
37 |
|
return; |
|
115
|
|
|
} |
|
116
|
|
|
} |
|
117
|
|
|
} |
|
118
|
|
|
|
|
119
|
|
|
/** |
|
120
|
|
|
* @param AbstractParaunitProcess $process |
|
121
|
|
|
* @param array $logs |
|
122
|
|
|
* @return bool |
|
123
|
|
|
*/ |
|
124
|
42 |
|
private function noTestsExecuted(AbstractParaunitProcess $process, array $logs): bool |
|
125
|
|
|
{ |
|
126
|
42 |
|
return $process->getExitCode() === 0 && count($logs) === 1; |
|
127
|
|
|
} |
|
128
|
|
|
} |
|
129
|
|
|
|