![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/allure-framework/allure-codeception/src/ |
<?php declare(strict_types=1); namespace Qameta\Allure\Codeception; use PHPUnit\Framework\AssertionFailedError; use PHPUnit\Framework\ExceptionWrapper; use PHPUnit\Framework\SkippedTestError; use Qameta\Allure\Model\Status; use Qameta\Allure\Model\StatusDetails; use Qameta\Allure\Setup\StatusDetectorInterface; use Throwable; /** * @deprecated This class is not used anymore and will be removed in next major version. * @psalm-suppress UnusedClass */ final class StatusDetector implements StatusDetectorInterface { public function __construct( private StatusDetectorInterface $defaultStatusDetector, ) { } public function getStatus(Throwable $error): ?Status { return $this->getUnwrappedStatus( $this->unwrapError($error), ); } private function getUnwrappedStatus(Throwable $error): Status { return match (true) { $error instanceof SkippedTestError => Status::skipped(), $error instanceof AssertionFailedError => Status::failed(), default => Status::broken(), }; } public function getStatusDetails(Throwable $error): ?StatusDetails { $unwrappedError = $this->unwrapError($error); $unwrappedStatus = $this->getUnwrappedStatus($unwrappedError); return match (true) { Status::skipped() === $unwrappedStatus, Status::failed() === $unwrappedStatus => new StatusDetails( message: $error->getMessage(), trace: $error->getTraceAsString(), ), default => $this->defaultStatusDetector->getStatusDetails($unwrappedError), }; } private function unwrapError(Throwable $error): Throwable { /** @psalm-suppress InternalMethod */ return $error instanceof ExceptionWrapper ? $error->getOriginalException() ?? $error : $error; } private function buildMessage(Throwable $error): string { /** @psalm-suppress InternalMethod */ return $error instanceof AssertionFailedError ? $error->toString() : $error->getMessage(); } }