Files
UNIT3D/tests/Unit/Http/Requests/Staff/StoreRssRequestTest.php
Roardom 5a6259cea7 remove: sd content and stream optimized flags
SD content is represented by the resolutions table now instead of this flag. Most people prefer web-dls over stream-optimized encodes these days.
2025-03-09 03:33:32 +00:00

150 lines
3.2 KiB
PHP

<?php
declare(strict_types=1);
/**
* NOTICE OF LICENSE.
*
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D Community Edition
*
* @author HDVinnie <hdinnovations@protonmail.com>
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
*/
use App\Http\Requests\Staff\StoreRssRequest;
beforeEach(function (): void {
$this->subject = new StoreRssRequest();
});
test('authorize', function (): void {
$actual = $this->subject->authorize();
expect($actual)->toBeTrue();
});
test('rules', function (): void {
$actual = $this->subject->rules();
$this->assertValidationRules([
'name' => [
'required',
'min:3',
'max:255',
],
'search' => [
'max:255',
],
'description' => [
'max:255',
],
'uploader' => [
'max:255',
],
'categories' => [
'sometimes',
'array',
'max:999',
],
'categories.*' => [
'sometimes',
'exists:categories,id',
],
'types' => [
'sometimes',
'array',
'max:999',
],
'types.*' => [
'sometimes',
'exists:types,id',
],
'resolutions' => [
'sometimes',
'array',
'max:999',
],
'resolutions.*' => [
'sometimes',
'exists:resolutions,id',
],
'genres' => [
'sometimes',
'array',
'max:999',
],
'genres.*' => [
'sometimes',
'exists:genres,id',
],
'position' => [
'sometimes',
'integer',
'max:9999',
],
'imdb' => [
'sometimes',
'nullable',
'integer',
],
'tvdb' => [
'sometimes',
'nullable',
'integer',
],
'tmdb' => [
'sometimes',
'nullable',
'integer',
],
'mal' => [
'sometimes',
'nullable',
'integer',
],
'freeleech' => [
'sometimes',
'boolean',
],
'doubleupload' => [
'sometimes',
'boolean',
],
'featured' => [
'sometimes',
'boolean',
],
'highspeed' => [
'sometimes',
'boolean',
],
'internal' => [
'sometimes',
'boolean',
],
'personalrelease' => [
'sometimes',
'boolean',
],
'bookmark' => [
'sometimes',
'boolean',
],
'alive' => [
'sometimes',
'boolean',
],
'dying' => [
'sometimes',
'boolean',
],
'dead' => [
'sometimes',
'boolean',
],
], $actual);
});