mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
218 lines
5.6 KiB
PHP
218 lines
5.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Contracts\Http\Api\Field\SortableField;
|
|
use App\Enums\Http\Api\Sort\Direction;
|
|
use App\Http\Api\Criteria\Paging\Criteria;
|
|
use App\Http\Api\Criteria\Paging\OffsetCriteria;
|
|
use App\Http\Api\Field\Field;
|
|
use App\Http\Api\Parser\FieldParser;
|
|
use App\Http\Api\Parser\FilterParser;
|
|
use App\Http\Api\Parser\PagingParser;
|
|
use App\Http\Api\Parser\SortParser;
|
|
use App\Http\Api\Query\Query;
|
|
use App\Http\Api\Schema\Admin\DumpSchema;
|
|
use App\Http\Api\Sort\Sort;
|
|
use App\Http\Resources\Admin\Collection\DumpCollection;
|
|
use App\Http\Resources\Admin\Resource\DumpResource;
|
|
use App\Models\Admin\Dump;
|
|
use App\Models\BaseModel;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
use function Pest\Laravel\get;
|
|
|
|
uses(App\Concerns\Actions\Http\Api\SortsModels::class);
|
|
|
|
uses(Illuminate\Foundation\Testing\WithFaker::class);
|
|
|
|
test('default', function () {
|
|
$dumps = Dump::factory()->count(fake()->randomDigitNotNull())->create();
|
|
|
|
$response = get(route('api.dump.index'));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new DumpCollection($dumps, new Query())
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
});
|
|
|
|
test('unsafe', function () {
|
|
Dump::factory()
|
|
->unsafe()
|
|
->count(fake()->randomDigitNotNull())
|
|
->create();
|
|
|
|
$dumps = Dump::factory()
|
|
->count(fake()->randomDigitNotNull())
|
|
->create();
|
|
|
|
$response = get(route('api.dump.index'));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new DumpCollection($dumps, new Query())
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
});
|
|
|
|
test('paginated', function () {
|
|
Dump::factory()->count(fake()->randomDigitNotNull())->create();
|
|
|
|
$response = get(route('api.dump.index'));
|
|
|
|
$response->assertJsonStructure([
|
|
DumpCollection::$wrap,
|
|
'links',
|
|
'meta',
|
|
]);
|
|
});
|
|
|
|
test('sparse fieldsets', function () {
|
|
$schema = new DumpSchema();
|
|
|
|
$fields = collect($schema->fields());
|
|
|
|
$includedFields = $fields->random(fake()->numberBetween(1, $fields->count()));
|
|
|
|
$parameters = [
|
|
FieldParser::param() => [
|
|
DumpResource::$wrap => $includedFields->map(fn (Field $field) => $field->getKey())->join(','),
|
|
],
|
|
];
|
|
|
|
$dumps = Dump::factory()->count(fake()->randomDigitNotNull())->create();
|
|
|
|
$response = get(route('api.dump.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new DumpCollection($dumps, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
});
|
|
|
|
test('sorts', function () {
|
|
$schema = new DumpSchema();
|
|
|
|
/** @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);
|
|
|
|
Dump::factory()->count(fake()->randomDigitNotNull())->create();
|
|
|
|
$response = get(route('api.dump.index', $parameters));
|
|
|
|
$dumps = $this->sort(Dump::query(), $query, $schema)->get();
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new DumpCollection($dumps, $query)
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
});
|
|
|
|
test('created at filter', function () {
|
|
$createdFilter = fake()->date();
|
|
$excludedDate = fake()->date();
|
|
|
|
$parameters = [
|
|
FilterParser::param() => [
|
|
BaseModel::ATTRIBUTE_CREATED_AT => $createdFilter,
|
|
],
|
|
PagingParser::param() => [
|
|
OffsetCriteria::SIZE_PARAM => Criteria::MAX_RESULTS,
|
|
],
|
|
];
|
|
|
|
Carbon::withTestNow($createdFilter, function () {
|
|
Dump::factory()->count(fake()->randomDigitNotNull())->create();
|
|
});
|
|
|
|
Carbon::withTestNow($excludedDate, function () {
|
|
Dump::factory()->count(fake()->randomDigitNotNull())->create();
|
|
});
|
|
|
|
$dump = Dump::query()->where(BaseModel::ATTRIBUTE_CREATED_AT, $createdFilter)->get();
|
|
|
|
$response = get(route('api.dump.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new DumpCollection($dump, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
});
|
|
|
|
test('updated at filter', function () {
|
|
$updatedFilter = fake()->date();
|
|
$excludedDate = fake()->date();
|
|
|
|
$parameters = [
|
|
FilterParser::param() => [
|
|
BaseModel::ATTRIBUTE_UPDATED_AT => $updatedFilter,
|
|
],
|
|
PagingParser::param() => [
|
|
OffsetCriteria::SIZE_PARAM => Criteria::MAX_RESULTS,
|
|
],
|
|
];
|
|
|
|
Carbon::withTestNow($updatedFilter, function () {
|
|
Dump::factory()->count(fake()->randomDigitNotNull())->create();
|
|
});
|
|
|
|
Carbon::withTestNow($excludedDate, function () {
|
|
Dump::factory()->count(fake()->randomDigitNotNull())->create();
|
|
});
|
|
|
|
$dump = Dump::query()->where(BaseModel::ATTRIBUTE_UPDATED_AT, $updatedFilter)->get();
|
|
|
|
$response = get(route('api.dump.index', $parameters));
|
|
|
|
$response->assertJson(
|
|
json_decode(
|
|
json_encode(
|
|
new DumpCollection($dump, new Query($parameters))
|
|
->response()
|
|
->getData()
|
|
),
|
|
true
|
|
)
|
|
);
|
|
});
|