mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 19:55:05 +02:00
44 lines
1.0 KiB
PHP
44 lines
1.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Unit\Http\Api\Scope;
|
|
|
|
use App\Http\Api\Scope\GlobalScope;
|
|
use App\Http\Api\Scope\RelationScope;
|
|
use App\Http\Api\Scope\ScopeParser;
|
|
use App\Http\Api\Scope\TypeScope;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Tests\TestCase;
|
|
|
|
class ScopeParserTest extends TestCase
|
|
{
|
|
use WithFaker;
|
|
|
|
/**
|
|
* The Scope Parser shall parse global scopes.
|
|
*/
|
|
public function testParseGlobalScope(): void
|
|
{
|
|
static::assertInstanceOf(GlobalScope::class, ScopeParser::parse(''));
|
|
}
|
|
|
|
/**
|
|
* The Scope Parser shall parse type scopes.
|
|
*/
|
|
public function testParseTypeScope(): void
|
|
{
|
|
static::assertInstanceOf(TypeScope::class, ScopeParser::parse($this->faker->word()));
|
|
}
|
|
|
|
/**
|
|
* The Scope Parser shall parse relation scopes.
|
|
*/
|
|
public function testParseRelationScope(): void
|
|
{
|
|
$relation = collect($this->faker->words())->join('.');
|
|
|
|
static::assertInstanceOf(RelationScope::class, ScopeParser::parse($relation));
|
|
}
|
|
}
|