43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Tests\Lib;
|
|
|
|
use Illuminate\Testing\TestResponse;
|
|
use PHPUnit\Framework\Assert as PHPUnit;
|
|
|
|
trait TestsInertia {
|
|
|
|
public function assertInertiaHas($value, TestResponse $response, ?string $key = null): void
|
|
{
|
|
$bindings = json_decode(json_encode($value), true);
|
|
$viewData = json_decode(json_encode(
|
|
data_get($response->viewData('page')['props'], $key)
|
|
), true);
|
|
$bindings = is_array($bindings) ? $bindings : [$bindings];
|
|
$viewData = is_array($viewData) ? $viewData : [$viewData];
|
|
$this->assertInertiaDeepNest($bindings, $viewData);
|
|
}
|
|
|
|
public function assertComponent(string $component, TestResponse $response) {
|
|
PHPUnit::assertEquals($component, $response->viewData('page')['component']);
|
|
}
|
|
|
|
public function assertInertiaDeepNest($should, $is) {
|
|
foreach ($should as $key => $value) {
|
|
PHPUnit::assertArrayHasKey($key, $is);
|
|
|
|
if (is_array($value)) {
|
|
$this->assertInertiaDeepNest($value, $is[$key]);
|
|
continue;
|
|
}
|
|
|
|
PHPUnit::assertSame($value, $is[$key]);
|
|
}
|
|
}
|
|
|
|
public function inertia(TestResponse $response, string $key) {
|
|
return data_get($response->viewData('page')['props'], $key);
|
|
}
|
|
|
|
}
|