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