Spamworldpro Mini Shell
Spamworldpro


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-phpunit/src/Internal/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/allure-framework/allure-phpunit/src/Internal/TestUpdater.php
<?php

declare(strict_types=1);

namespace Qameta\Allure\PHPUnit\Internal;

use Doctrine\Common\Annotations\AnnotationReader as DoctrineAnnotationReader;
use LogicException;
use Qameta\Allure\Attribute\AttributeParser;
use Qameta\Allure\Attribute\AttributeReader;
use Qameta\Allure\Attribute\LegacyAttributeReader;
use Qameta\Allure\Model\Label;
use Qameta\Allure\Model\Parameter;
use Qameta\Allure\Model\Status;
use Qameta\Allure\Model\StatusDetails;
use Qameta\Allure\Model\TestResult;
use Qameta\Allure\Setup\LinkTemplateCollectionInterface;
use Qameta\Allure\Setup\StatusDetectorInterface;
use ReflectionClass;
use ReflectionMethod;
use Throwable;

/**
 * @internal
 */
class TestUpdater implements TestUpdaterInterface
{
    public function __construct(
        private LinkTemplateCollectionInterface $linkTemplates,
    ) {
    }

    public function setInfo(TestResult $testResult, TestInfo $info): void
    {
        $parser = $this->parseAnnotations($info);

        $testResult
            ->setName($parser->getDisplayName() ?? $info->getName())
            ->setFullName($info->getFullName())
            ->setDescriptionHtml($parser->getDescriptionHtml())
            ->setDescription($parser->getDescription())
            ->addLabels(
                ...$this->createSystemLabels($info),
                ...$parser->getLabels(),
            )
            ->addParameters(
                ...$this->createSystemParameters($info),
                ...$parser->getParameters(),
            )
            ->addLinks(...$parser->getLinks());
    }

    /**
     * @param TestInfo $info
     * @return AttributeParser
     */
    private function parseAnnotations(TestInfo $info): AttributeParser
    {
        $class = $info->getClass();
        if (!isset($class)) {
            return new AttributeParser([], $this->linkTemplates);
        }

        $annotations = [];
        $reader = new LegacyAttributeReader(
            new DoctrineAnnotationReader(),
            new AttributeReader(),
        );
        try {
            $classRef = new ReflectionClass($class);
            $annotations = [
                ...$annotations,
                ...$reader->getClassAnnotations($classRef),
            ];
        } catch (Throwable $e) {
            throw new LogicException("Annotations not loaded", 0, $e);
        }

        $method = $info->getMethod();
        if (!isset($method)) {
            return new AttributeParser($annotations, $this->linkTemplates);
        }

        try {
            $methodRef = new ReflectionMethod($class, $method);
            $annotations = [
                ...$annotations,
                ...$reader->getMethodAnnotations($methodRef),
            ];
        } catch (Throwable $e) {
            throw new LogicException("Annotations not loaded", 0, $e);
        }

        return new AttributeParser($annotations, $this->linkTemplates);
    }

    /**
     * @return list<Label>
     */
    private function createSystemLabels(TestInfo $info): array
    {
        return [
            Label::testClass($info->getClass()),
            Label::testMethod($info->getMethod()),
            Label::host($info->getHost()),
            Label::thread($info->getThread()),
        ];
    }

    /**
     * @return list<Parameter>
     */
    private function createSystemParameters(TestInfo $info): array
    {
        $dataLabel = $info->getDataLabel();

        return isset($dataLabel)
            ? [new Parameter('Data set', $dataLabel)]
            : [];
    }

    public function setRunInfo(TestResult $testResult, TestRunInfo $runInfo): void
    {
        $testResult
            ->setTestCaseId($runInfo->getTestCaseId())
            ->setHistoryId($runInfo->getHistoryId())
            ->setRerunOf($runInfo->getRerunOf());
    }

    public function setDetectedStatus(
        TestResult $test,
        StatusDetectorInterface $statusDetector,
        Throwable $e,
        ?Status $overrideStatus = null,
    ): void {
        $test
            ->setStatus($overrideStatus ?? $statusDetector->getStatus($e))
            ->setStatusDetails($statusDetector->getStatusDetails($e));
    }

    public function setStatus(TestResult $test, ?string $message = null, ?Status $status = null): void
    {
        $test
            ->setStatus($status)
            ->setStatusDetails(new StatusDetails(message: $message));
    }
}

Spamworldpro Mini