Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/tests/Helpers/
Upload File :
Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/tests/Helpers/Assertions.php

<?php

declare(strict_types=1);

use Illuminate\Support\Arr;
use Illuminate\Testing\Constraints\SeeInOrder;
use PHPUnit\Framework\Assert as PHPUnit;

function assertSeeHtml($actual, $values): void
{
    if ($actual instanceof \Illuminate\View\View) {
        $actual = $actual->toHtml();
    }
    $actual = preg_replace('/\s+/', ' ', (string) $actual);
    foreach (Arr::wrap($values) as $value) {
        $value = preg_replace('/\s+/', ' ', $value);
        PHPUnit::assertStringContainsString(
            $value,
            $actual
        );
    }
}
function assertDontSeeHtml($actual, $values): void
{
    if ($actual instanceof \Illuminate\Support\HtmlString) {
        $actual = $actual->toHtml();
    }
    foreach (Arr::wrap($values) as $value) {
        PHPUnit::assertStringNotContainsString(
            $value,
            (string) $actual
        );
    }
}

function assertSeeHtmlInOrder($actual, array $values): void
{
    if ($actual instanceof \Illuminate\Support\HtmlString) {
        $actual = $actual->toHtml();
    }
    PHPUnit::assertThat(
        $values,
        new SeeInOrder((string) $actual)
    );
}

function assertExpectedCreditsSize($expectedCredits, $actual): void
{
    $getSize = function ($expectedCredits) {
        // calculate the size of the user credits array
        $size = 0;
        foreach ($expectedCredits as $element) {
            $size++; // Count engines
            if (is_array($element)) {
                // Count only the first-level elements in the sub-array (Entities)
                $size += count($element);
            } else {
                // Count the element if it's not an array
                $size++;
            }
        }

        return $size;
    };

    PHPUnit::assertSame(
        $getSize($expectedCredits),
        $actual
    );
}