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

49 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
use App\Models\Wiki\Anime;
use App\Models\Wiki\Series;
use App\Pivots\Wiki\AnimeSeries;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Foundation\Testing\WithFaker;
uses(WithFaker::class);
test('searchable as', function () {
$series = Series::factory()->createOne();
$this->assertIsString($series->searchableAs());
});
test('to searchable array', function () {
$series = Series::factory()->createOne();
$this->assertIsArray($series->toSearchableArray());
});
test('nameable', function () {
$series = Series::factory()->createOne();
$this->assertIsString($series->getName());
});
test('has subtitle', function () {
$series = Series::factory()->createOne();
$this->assertIsString($series->getSubtitle());
});
test('anime', function () {
$animeCount = fake()->randomDigitNotNull();
$series = Series::factory()
->has(Anime::factory()->count($animeCount))
->createOne();
$this->assertInstanceOf(BelongsToMany::class, $series->anime());
$this->assertEquals($animeCount, $series->anime()->count());
$this->assertInstanceOf(Anime::class, $series->anime()->first());
$this->assertEquals(AnimeSeries::class, $series->anime()->getPivotClass());
});