mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
613 lines
18 KiB
PHP
613 lines
18 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Feature\Http\Api\Wiki\Image;
|
|
|
|
use App\Concerns\Actions\Http\Api\SortsModels;
|
|
use App\Contracts\Http\Api\Field\SortableField;
|
|
use App\Enums\Http\Api\Filter\TrashedStatus;
|
|
use App\Enums\Http\Api\Sort\Direction;
|
|
use App\Enums\Models\Wiki\AnimeMediaFormat;
|
|
use App\Enums\Models\Wiki\AnimeSeason;
|
|
use App\Enums\Models\Wiki\ImageFacet;
|
|
use App\Http\Api\Criteria\Filter\TrashedCriteria;
|
|
use App\Http\Api\Criteria\Paging\Criteria;
|
|
use App\Http\Api\Criteria\Paging\OffsetCriteria;
|
|
use App\Http\Api\Field\Field;
|
|
use App\Http\Api\Include\AllowedInclude;
|
|
use App\Http\Api\Parser\FieldParser;
|
|
use App\Http\Api\Parser\FilterParser;
|
|
use App\Http\Api\Parser\IncludeParser;
|
|
use App\Http\Api\Parser\PagingParser;
|
|
use App\Http\Api\Parser\SortParser;
|
|
use App\Http\Api\Query\Query;
|
|
use App\Http\Api\Schema\Wiki\ImageSchema;
|
|
use App\Http\Api\Sort\Sort;
|
|
use App\Http\Resources\Wiki\Collection\ImageCollection;
|
|
use App\Http\Resources\Wiki\Resource\ImageResource;
|
|
use App\Models\BaseModel;
|
|
use App\Models\Wiki\Anime;
|
|
use App\Models\Wiki\Artist;
|
|
use App\Models\Wiki\Image;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Carbon;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* Class ImageIndexTest.
|
|
*/
|
|
class ImageIndexTest extends TestCase
|
|
{
|
|
use SortsModels;
|
|
use WithFaker;
|
|
|
|
/**
|
|
* By default, the Image Index Endpoint shall return a collection of Image Resources.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_default(): void
|
|
{
|
|
$images = Image::factory()
|
|
->count($this->faker->randomDigitNotNull())
|
|
->create();
|
|
|
|
$response = $this->get(route('api.image.index'));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($images, new Query())
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall be paginated.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_paginated(): void
|
|
{
|
|
Image::factory()->count($this->faker->randomDigitNotNull())->create();
|
|
|
|
$response = $this->get(route('api.image.index'));
|
|
|
|
$response->assertJsonStructure([
|
|
ImageCollection::$wrap,
|
|
'links',
|
|
'meta',
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall allow inclusion of related resources.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_allowed_include_paths(): void
|
|
{
|
|
$schema = new ImageSchema();
|
|
|
|
$allowedIncludes = collect($schema->allowedIncludes());
|
|
|
|
$selectedIncludes = $allowedIncludes->random($this->faker->numberBetween(1, $allowedIncludes->count()));
|
|
|
|
$includedPaths = $selectedIncludes->map(fn (AllowedInclude $include) => $include->path());
|
|
|
|
$parameters = [
|
|
IncludeParser::param() => $includedPaths->join(','),
|
|
];
|
|
|
|
Image::factory()
|
|
->has(Anime::factory()->count($this->faker->randomDigitNotNull()))
|
|
->has(Artist::factory()->count($this->faker->randomDigitNotNull()))
|
|
->count($this->faker->randomDigitNotNull())
|
|
->create();
|
|
|
|
$images = Image::with($includedPaths->all())->get();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($images, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall implement sparse fieldsets.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_sparse_fieldsets(): void
|
|
{
|
|
$schema = new ImageSchema();
|
|
|
|
$fields = collect($schema->fields());
|
|
|
|
$includedFields = $fields->random($this->faker->numberBetween(1, $fields->count()));
|
|
|
|
$parameters = [
|
|
FieldParser::param() => [
|
|
ImageResource::$wrap => $includedFields->map(fn (Field $field) => $field->getKey())->join(','),
|
|
],
|
|
];
|
|
|
|
$images = Image::factory()
|
|
->count($this->faker->randomDigitNotNull())
|
|
->create();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($images, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall support sorting resources.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_sorts(): void
|
|
{
|
|
$schema = new ImageSchema();
|
|
|
|
/** @var Sort $sort */
|
|
$sort = collect($schema->fields())
|
|
->filter(fn (Field $field) => $field instanceof SortableField)
|
|
->map(fn (SortableField $field) => $field->getSort())
|
|
->random();
|
|
|
|
$parameters = [
|
|
SortParser::param() => $sort->format(Arr::random(Direction::cases())),
|
|
];
|
|
|
|
$query = new Query($parameters);
|
|
|
|
Image::factory()->count($this->faker->randomDigitNotNull())->create();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$images = $this->sort(Image::query(), $query, $schema)->get();
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($images, $query)
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall support filtering by created_at.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_created_at_filter(): void
|
|
{
|
|
$createdFilter = $this->faker->date();
|
|
$excludedDate = $this->faker->date();
|
|
|
|
$parameters = [
|
|
FilterParser::param() => [
|
|
BaseModel::ATTRIBUTE_CREATED_AT => $createdFilter,
|
|
],
|
|
PagingParser::param() => [
|
|
OffsetCriteria::SIZE_PARAM => Criteria::MAX_RESULTS,
|
|
],
|
|
];
|
|
|
|
Carbon::withTestNow($createdFilter, function () {
|
|
Image::factory()->count($this->faker->randomDigitNotNull())->create();
|
|
});
|
|
|
|
Carbon::withTestNow($excludedDate, function () {
|
|
Image::factory()->count($this->faker->randomDigitNotNull())->create();
|
|
});
|
|
|
|
$image = Image::query()->where(BaseModel::ATTRIBUTE_CREATED_AT, $createdFilter)->get();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($image, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall support filtering by updated_at.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_updated_at_filter(): void
|
|
{
|
|
$updatedFilter = $this->faker->date();
|
|
$excludedDate = $this->faker->date();
|
|
|
|
$parameters = [
|
|
FilterParser::param() => [
|
|
BaseModel::ATTRIBUTE_UPDATED_AT => $updatedFilter,
|
|
],
|
|
PagingParser::param() => [
|
|
OffsetCriteria::SIZE_PARAM => Criteria::MAX_RESULTS,
|
|
],
|
|
];
|
|
|
|
Carbon::withTestNow($updatedFilter, function () {
|
|
Image::factory()->count($this->faker->randomDigitNotNull())->create();
|
|
});
|
|
|
|
Carbon::withTestNow($excludedDate, function () {
|
|
Image::factory()->count($this->faker->randomDigitNotNull())->create();
|
|
});
|
|
|
|
$image = Image::query()->where(BaseModel::ATTRIBUTE_UPDATED_AT, $updatedFilter)->get();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($image, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall support filtering by trashed.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_without_trashed_filter(): void
|
|
{
|
|
$parameters = [
|
|
FilterParser::param() => [
|
|
TrashedCriteria::PARAM_VALUE => TrashedStatus::WITHOUT->value,
|
|
],
|
|
PagingParser::param() => [
|
|
OffsetCriteria::SIZE_PARAM => Criteria::MAX_RESULTS,
|
|
],
|
|
];
|
|
|
|
Image::factory()->count($this->faker->randomDigitNotNull())->create();
|
|
|
|
Image::factory()->trashed()->count($this->faker->randomDigitNotNull())->create();
|
|
|
|
$image = Image::withoutTrashed()->get();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($image, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall support filtering by trashed.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_with_trashed_filter(): void
|
|
{
|
|
$parameters = [
|
|
FilterParser::param() => [
|
|
TrashedCriteria::PARAM_VALUE => TrashedStatus::WITH->value,
|
|
],
|
|
PagingParser::param() => [
|
|
OffsetCriteria::SIZE_PARAM => Criteria::MAX_RESULTS,
|
|
],
|
|
];
|
|
|
|
Image::factory()->count($this->faker->randomDigitNotNull())->create();
|
|
|
|
Image::factory()->trashed()->count($this->faker->randomDigitNotNull())->create();
|
|
|
|
$image = Image::withTrashed()->get();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($image, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall support filtering by trashed.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_only_trashed_filter(): void
|
|
{
|
|
$parameters = [
|
|
FilterParser::param() => [
|
|
TrashedCriteria::PARAM_VALUE => TrashedStatus::ONLY->value,
|
|
],
|
|
PagingParser::param() => [
|
|
OffsetCriteria::SIZE_PARAM => Criteria::MAX_RESULTS,
|
|
],
|
|
];
|
|
|
|
Image::factory()->count($this->faker->randomDigitNotNull())->create();
|
|
|
|
Image::factory()->trashed()->count($this->faker->randomDigitNotNull())->create();
|
|
|
|
$image = Image::onlyTrashed()->get();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($image, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall support filtering by deleted_at.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_deleted_at_filter(): void
|
|
{
|
|
$deletedFilter = $this->faker->date();
|
|
$excludedDate = $this->faker->date();
|
|
|
|
$parameters = [
|
|
FilterParser::param() => [
|
|
BaseModel::ATTRIBUTE_DELETED_AT => $deletedFilter,
|
|
TrashedCriteria::PARAM_VALUE => TrashedStatus::WITH->value,
|
|
],
|
|
PagingParser::param() => [
|
|
OffsetCriteria::SIZE_PARAM => Criteria::MAX_RESULTS,
|
|
],
|
|
];
|
|
|
|
Carbon::withTestNow($deletedFilter, function () {
|
|
Image::factory()->trashed()->count($this->faker->randomDigitNotNull())->create();
|
|
});
|
|
|
|
Carbon::withTestNow($excludedDate, function () {
|
|
Image::factory()->trashed()->count($this->faker->randomDigitNotNull())->create();
|
|
});
|
|
|
|
$image = Image::withTrashed()->where(BaseModel::ATTRIBUTE_DELETED_AT, $deletedFilter)->get();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($image, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall support filtering by facet.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_facet_filter(): void
|
|
{
|
|
$facetFilter = Arr::random(ImageFacet::cases());
|
|
|
|
$parameters = [
|
|
FilterParser::param() => [
|
|
Image::ATTRIBUTE_FACET => $facetFilter->localize(),
|
|
],
|
|
];
|
|
|
|
Image::factory()
|
|
->count($this->faker->randomDigitNotNull())
|
|
->create();
|
|
|
|
$images = Image::query()->where(Image::ATTRIBUTE_FACET, $facetFilter->value)->get();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($images, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall support constrained eager loading of anime by media format.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_anime_by_media_format(): void
|
|
{
|
|
$mediaFormatFilter = Arr::random(AnimeMediaFormat::cases());
|
|
|
|
$parameters = [
|
|
FilterParser::param() => [
|
|
Anime::ATTRIBUTE_MEDIA_FORMAT => $mediaFormatFilter->localize(),
|
|
],
|
|
IncludeParser::param() => Image::RELATION_ANIME,
|
|
];
|
|
|
|
Image::factory()
|
|
->has(Anime::factory()->count($this->faker->randomDigitNotNull()))
|
|
->count($this->faker->randomDigitNotNull())
|
|
->create();
|
|
|
|
$images = Image::with([
|
|
Image::RELATION_ANIME => function (BelongsToMany $query) use ($mediaFormatFilter) {
|
|
$query->where(Anime::ATTRIBUTE_MEDIA_FORMAT, $mediaFormatFilter->value);
|
|
},
|
|
])
|
|
->get();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($images, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall support constrained eager loading of anime by season.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_anime_by_season(): void
|
|
{
|
|
$seasonFilter = Arr::random(AnimeSeason::cases());
|
|
|
|
$parameters = [
|
|
FilterParser::param() => [
|
|
Anime::ATTRIBUTE_SEASON => $seasonFilter->localize(),
|
|
],
|
|
IncludeParser::param() => Image::RELATION_ANIME,
|
|
];
|
|
|
|
Image::factory()
|
|
->has(Anime::factory()->count($this->faker->randomDigitNotNull()))
|
|
->count($this->faker->randomDigitNotNull())
|
|
->create();
|
|
|
|
$images = Image::with([
|
|
Image::RELATION_ANIME => function (BelongsToMany $query) use ($seasonFilter) {
|
|
$query->where(Anime::ATTRIBUTE_SEASON, $seasonFilter->value);
|
|
},
|
|
])
|
|
->get();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($images, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* The Image Index Endpoint shall support constrained eager loading of anime by year.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function test_anime_by_year(): void
|
|
{
|
|
$yearFilter = intval($this->faker->year());
|
|
$excludedYear = $yearFilter + 1;
|
|
|
|
$parameters = [
|
|
FilterParser::param() => [
|
|
Anime::ATTRIBUTE_YEAR => $yearFilter,
|
|
],
|
|
IncludeParser::param() => Image::RELATION_ANIME,
|
|
];
|
|
|
|
Image::factory()
|
|
->has(
|
|
Anime::factory()
|
|
->count($this->faker->randomDigitNotNull())
|
|
->state([
|
|
Anime::ATTRIBUTE_YEAR => $this->faker->boolean() ? $yearFilter : $excludedYear,
|
|
])
|
|
)
|
|
->count($this->faker->randomDigitNotNull())
|
|
->create();
|
|
|
|
$images = Image::with([
|
|
Image::RELATION_ANIME => function (BelongsToMany $query) use ($yearFilter) {
|
|
$query->where(Anime::ATTRIBUTE_YEAR, $yearFilter);
|
|
},
|
|
])
|
|
->get();
|
|
|
|
$response = $this->get(route('api.image.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new ImageCollection($images, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
}
|
|
}
|