mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
87 lines
2.4 KiB
PHP
87 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Actions\Storage\Wiki\Video\Script\UploadScriptAction;
|
|
use App\Constants\Config\VideoConstants;
|
|
use App\Enums\Actions\ActionStatus;
|
|
use App\Models\Wiki\Video;
|
|
use App\Models\Wiki\Video\VideoScript;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Illuminate\Http\Testing\File;
|
|
use Illuminate\Support\Facades\Config;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
uses(WithFaker::class);
|
|
|
|
test('default', function (): void {
|
|
Config::set(VideoConstants::SCRIPT_DISK_QUALIFIED, []);
|
|
Storage::fake(Config::get(VideoConstants::SCRIPT_DISK_QUALIFIED));
|
|
|
|
$file = File::fake()->create(fake()->word().'.txt', fake()->randomDigitNotNull());
|
|
|
|
$action = new UploadScriptAction($file, fake()->word());
|
|
|
|
$storageResults = $action->handle();
|
|
|
|
$result = $storageResults->toActionResult();
|
|
|
|
$this->assertTrue($result->hasFailed());
|
|
});
|
|
|
|
test('passed', function (): void {
|
|
Storage::fake(Config::get(VideoConstants::SCRIPT_DISK_QUALIFIED));
|
|
|
|
$file = File::fake()->create(fake()->word().'.txt', fake()->randomDigitNotNull());
|
|
|
|
$action = new UploadScriptAction($file, fake()->word());
|
|
|
|
$storageResults = $action->handle();
|
|
|
|
$result = $storageResults->toActionResult();
|
|
|
|
$this->assertTrue($result->getStatus() === ActionStatus::PASSED);
|
|
});
|
|
|
|
test('uploaded to disk', function (): void {
|
|
$fs = Storage::fake(Config::get(VideoConstants::SCRIPT_DISK_QUALIFIED));
|
|
|
|
$file = File::fake()->create(fake()->word().'.txt', fake()->randomDigitNotNull());
|
|
|
|
$action = new UploadScriptAction($file, fake()->word());
|
|
|
|
$action->handle();
|
|
|
|
$this->assertCount(1, $fs->allFiles());
|
|
});
|
|
|
|
test('created video', function (): void {
|
|
Storage::fake(Config::get(VideoConstants::SCRIPT_DISK_QUALIFIED));
|
|
|
|
$file = File::fake()->create(fake()->word().'.txt', fake()->randomDigitNotNull());
|
|
|
|
$action = new UploadScriptAction($file, fake()->word());
|
|
|
|
$result = $action->handle();
|
|
|
|
$action->then($result);
|
|
|
|
$this->assertDatabaseCount(VideoScript::class, 1);
|
|
});
|
|
|
|
test('attaches video', function (): void {
|
|
Storage::fake(Config::get(VideoConstants::SCRIPT_DISK_QUALIFIED));
|
|
|
|
$file = File::fake()->create(fake()->word().'.txt', fake()->randomDigitNotNull());
|
|
|
|
$video = Video::factory()->createOne();
|
|
|
|
$action = new UploadScriptAction($file, fake()->word(), $video);
|
|
|
|
$result = $action->handle();
|
|
|
|
$action->then($result);
|
|
|
|
$this->assertTrue($video->videoscript()->exists());
|
|
});
|