Skip to content

test: execute tests in random order #573

test: execute tests in random order

test: execute tests in random order #573

Re-run triggered October 14, 2023 07:56
Status Failure
Total duration 2m 44s
Artifacts

ci.yml

on: push
Matrix: Build PHP/TYPO3
Fit to window
Zoom out
Zoom in

Annotations

2 errors and 10 warnings
Build PHP/TYPO3 (8.3, ^11)
Process completed with exit code 2.
Build PHP/TYPO3 (8.3, ^12)
Process completed with exit code 2.
Code Quality: Classes/AdminPanel/TypesInformation.php#L78
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ { /** @var StandaloneView $view */ $view = GeneralUtility::makeInstance(StandaloneView::class); - $view->setTemplatePathAndFilename('EXT:' . Extension::KEY . '/Resources/Private/Templates/AdminPanel/TypesInformation.html'); + return $view; } private function getLanguageService() : LanguageService
Code Quality: Classes/AdminPanel/TypesInformation.php#L79
Escaped Mutant for Mutator "Concat": --- Original +++ New @@ @@ { /** @var StandaloneView $view */ $view = GeneralUtility::makeInstance(StandaloneView::class); - $view->setTemplatePathAndFilename('EXT:' . Extension::KEY . '/Resources/Private/Templates/AdminPanel/TypesInformation.html'); + $view->setTemplatePathAndFilename(Extension::KEY . 'EXT:' . '/Resources/Private/Templates/AdminPanel/TypesInformation.html'); return $view; } private function getLanguageService() : LanguageService
Code Quality: Classes/AdminPanel/TypesInformation.php#L79
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ { /** @var StandaloneView $view */ $view = GeneralUtility::makeInstance(StandaloneView::class); - $view->setTemplatePathAndFilename('EXT:' . Extension::KEY . '/Resources/Private/Templates/AdminPanel/TypesInformation.html'); + $view->setTemplatePathAndFilename(Extension::KEY . '/Resources/Private/Templates/AdminPanel/TypesInformation.html'); return $view; } private function getLanguageService() : LanguageService
Code Quality: Classes/AdminPanel/TypesInformation.php#L79
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ { /** @var StandaloneView $view */ $view = GeneralUtility::makeInstance(StandaloneView::class); - $view->setTemplatePathAndFilename('EXT:' . Extension::KEY . '/Resources/Private/Templates/AdminPanel/TypesInformation.html'); + $view->setTemplatePathAndFilename('EXT:' . '/Resources/Private/Templates/AdminPanel/TypesInformation.html'); return $view; } private function getLanguageService() : LanguageService
Code Quality: Classes/AdminPanel/TypesInformation.php#L79
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ { /** @var StandaloneView $view */ $view = GeneralUtility::makeInstance(StandaloneView::class); - $view->setTemplatePathAndFilename('EXT:' . Extension::KEY . '/Resources/Private/Templates/AdminPanel/TypesInformation.html'); + $view->setTemplatePathAndFilename('EXT:' . Extension::KEY); return $view; } private function getLanguageService() : LanguageService
Code Quality: Classes/AdminPanel/TypesInformation.php#L79
Escaped Mutant for Mutator "Concat": --- Original +++ New @@ @@ { /** @var StandaloneView $view */ $view = GeneralUtility::makeInstance(StandaloneView::class); - $view->setTemplatePathAndFilename('EXT:' . Extension::KEY . '/Resources/Private/Templates/AdminPanel/TypesInformation.html'); + $view->setTemplatePathAndFilename('EXT:' . '/Resources/Private/Templates/AdminPanel/TypesInformation.html' . Extension::KEY); return $view; } private function getLanguageService() : LanguageService
Code Quality: Classes/Cache/PagesCacheService.php#L31
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ } public function getMarkupFromCache() : ?string { - $this->initialiseTypoScriptFrontendController(); + return $this->cache->get($this->getCacheIdentifier()) ?: null; } private function getCacheIdentifier() : string
Code Quality: Classes/Cache/PagesCacheService.php#L43
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ } public function storeMarkupInCache(string $markup) : void { - $this->initialiseTypoScriptFrontendController(); + if ($this->controller instanceof TypoScriptFrontendController) { $this->cache->set($this->getCacheIdentifier(), $markup, \array_merge(['pageId_' . $this->controller->page['uid']], $this->controller->getPageCacheTags()), $this->controller->get_cache_timeout()); }
Code Quality: Classes/Cache/PagesCacheService.php#L44
Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ public function storeMarkupInCache(string $markup) : void { $this->initialiseTypoScriptFrontendController(); - if ($this->controller instanceof TypoScriptFrontendController) { + if (true) { $this->cache->set($this->getCacheIdentifier(), $markup, \array_merge(['pageId_' . $this->controller->page['uid']], $this->controller->getPageCacheTags()), $this->controller->get_cache_timeout()); } }
Code Quality: Classes/Cache/PagesCacheService.php#L56
Escaped Mutant for Mutator "InstanceOf_": --- Original +++ New @@ @@ } private function initialiseTypoScriptFrontendController() : void { - if (!$this->controller instanceof TypoScriptFrontendController) { + if (!true) { $this->controller = $GLOBALS['TSFE']; } }