Files
animethemes-server/tests/Unit/Models/User/Report/ReportStepTest.php
T
2025-07-29 23:31:12 -03:00

73 lines
1.9 KiB
PHP

<?php
declare(strict_types=1);
use App\Enums\Models\User\ApprovableStatus;
use App\Enums\Models\User\ReportActionType;
use App\Models\User\Report;
use App\Models\User\Report\ReportStep;
use App\Models\Wiki\Anime;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Support\Carbon;
uses(Illuminate\Foundation\Testing\WithFaker::class);
test('nameable', function () {
$step = ReportStep::factory()
->for(Report::factory())
->createOne();
$this->assertIsString($step->getName());
});
test('has subtitle', function () {
$step = ReportStep::factory()
->for(Report::factory())
->createOne();
$this->assertIsString($step->getSubtitle());
});
test('casts action to enum', function () {
$step = ReportStep::factory()
->for(Report::factory())
->createOne();
$this->assertInstanceOf(ReportActionType::class, $step->action);
});
test('casts fields to array', function () {
$anime = Anime::factory()->makeOne();
$step = ReportStep::factory()
->for(Report::factory())
->createOne([ReportStep::ATTRIBUTE_FIELDS => $anime->attributesToArray()]);
$this->assertIsArray($step->fields);
});
test('casts finished at', function () {
$step = ReportStep::factory()
->for(Report::factory())
->createOne([ReportStep::ATTRIBUTE_FINISHED_AT => now()]);
$this->assertInstanceOf(Carbon::class, $step->finished_at);
});
test('casts status to enum', function () {
$step = ReportStep::factory()
->for(Report::factory())
->createOne();
$this->assertInstanceOf(ApprovableStatus::class, $step->status);
});
test('report', function () {
$step = ReportStep::factory()
->for(Report::factory())
->createOne();
$this->assertInstanceOf(BelongsTo::class, $step->report());
$this->assertInstanceOf(Report::class, $step->report()->first());
});