Files

154 lines
5.1 KiB
PHP

<?php
declare(strict_types=1);
use App\Models\Wiki\Artist;
use App\Models\Wiki\ExternalResource;
use App\Models\Wiki\Image;
use App\Models\Wiki\Song;
use App\Models\Wiki\Song\Performance;
use App\Models\Wiki\Synonym;
use App\Pivots\Morph\Imageable;
use App\Pivots\Morph\Resourceable;
use App\Pivots\Wiki\ArtistMember;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\MorphMany;
use Illuminate\Database\Eloquent\Relations\MorphToMany;
use Illuminate\Foundation\Testing\WithFaker;
uses(WithFaker::class);
test('searchable as', function (): void {
$artist = Artist::factory()->createOne();
$this->assertIsString($artist->searchableAs());
});
test('to searchable array', function (): void {
$artist = Artist::factory()->createOne();
$this->assertIsArray($artist->toSearchableArray());
});
test('nameable', function (): void {
$artist = Artist::factory()->createOne();
$this->assertIsString($artist->getName());
});
test('has subtitle', function (): void {
$artist = Artist::factory()->createOne();
$this->assertIsString($artist->getSubtitle());
});
test('synonyms', function (): void {
$synonymCount = fake()->randomDigitNotNull();
$artist = Artist::factory()
->has(Synonym::factory()->count($synonymCount))
->createOne();
$this->assertInstanceOf(MorphMany::class, $artist->synonyms());
$this->assertEquals($synonymCount, $artist->synonyms()->count());
$this->assertInstanceOf(Synonym::class, $artist->synonyms()->first());
});
test('songs', function (): void {
$songCount = fake()->randomDigitNotNull();
$artist = Artist::factory()
->has(Song::factory()->count($songCount))
->createOne();
$this->assertInstanceOf(BelongsToMany::class, $artist->songs());
$this->assertEquals($songCount, $artist->songs()->count());
$this->assertInstanceOf(Song::class, $artist->songs()->first());
});
test('performances', function (): void {
$performanceCount = fake()->randomDigitNotNull();
$artist = Artist::factory()
->createOne();
Performance::factory()
->for($artist, Performance::RELATION_ARTIST)
->count($performanceCount)
->create();
$this->assertInstanceOf(HasMany::class, $artist->performances());
$this->assertEquals($performanceCount, $artist->performances()->count());
$this->assertInstanceOf(Performance::class, $artist->performances()->first());
});
test('member performances', function (): void {
$performanceCount = fake()->randomDigitNotNull();
$member = Artist::factory()
->createOne();
Performance::factory()
->for(Artist::factory(), Performance::RELATION_ARTIST)
->for($member, Performance::RELATION_MEMBER)
->count($performanceCount)
->create();
$this->assertInstanceOf(HasMany::class, $member->memberPerformances());
$this->assertEquals($performanceCount, $member->memberPerformances()->count());
$this->assertInstanceOf(Performance::class, $member->memberPerformances()->first());
});
test('members', function (): void {
$memberCount = fake()->randomDigitNotNull();
$artist = Artist::factory()
->has(Artist::factory()->count($memberCount), Artist::RELATION_MEMBERS)
->createOne();
$this->assertInstanceOf(BelongsToMany::class, $artist->members());
$this->assertEquals($memberCount, $artist->members()->count());
$this->assertInstanceOf(Artist::class, $artist->members()->first());
$this->assertEquals(ArtistMember::class, $artist->members()->getPivotClass());
});
test('groups', function (): void {
$groupCount = fake()->randomDigitNotNull();
$artist = Artist::factory()
->has(Artist::factory()->count($groupCount), Artist::RELATION_GROUPS)
->createOne();
$this->assertInstanceOf(BelongsToMany::class, $artist->groups());
$this->assertEquals($groupCount, $artist->groups()->count());
$this->assertInstanceOf(Artist::class, $artist->groups()->first());
$this->assertEquals(ArtistMember::class, $artist->groups()->getPivotClass());
});
test('images', function (): void {
$imageCount = fake()->randomDigitNotNull();
$artist = Artist::factory()
->has(Image::factory()->count($imageCount))
->createOne();
$this->assertInstanceOf(MorphToMany::class, $artist->images());
$this->assertEquals($imageCount, $artist->images()->count());
$this->assertInstanceOf(Image::class, $artist->images()->first());
$this->assertEquals(Imageable::class, $artist->images()->getPivotClass());
});
test('external resources', function (): void {
$resourceCount = fake()->randomDigitNotNull();
$artist = Artist::factory()
->has(ExternalResource::factory()->count($resourceCount), 'resources')
->createOne();
$this->assertInstanceOf(MorphToMany::class, $artist->resources());
$this->assertEquals($resourceCount, $artist->resources()->count());
$this->assertInstanceOf(ExternalResource::class, $artist->resources()->first());
$this->assertEquals(Resourceable::class, $artist->resources()->getPivotClass());
});