createOne(); $action = new DeleteVideoAction($video); $storageResults = $action->handle(); $result = $storageResults->toActionResult(); static::assertTrue($result->hasFailed()); } /** * The Delete Video Action shall pass if there are deletions. * * @return void */ public function testPassed(): void { Config::set(VideoConstants::DISKS_QUALIFIED, [Config::get(VideoConstants::DEFAULT_DISK_QUALIFIED)]); Storage::fake(Config::get(VideoConstants::DEFAULT_DISK_QUALIFIED)); $file = File::fake()->create($this->faker->word().'.webm', $this->faker->randomDigitNotNull()); $video = Video::factory()->createOne([ Video::ATTRIBUTE_BASENAME => FileFacade::basename($file->path()), Video::ATTRIBUTE_FILENAME => FileFacade::name($file->path()), Video::ATTRIBUTE_MIMETYPE => MimeType::from($file->path()), Video::ATTRIBUTE_PATH => $file->path(), ]); $action = new DeleteVideoAction($video); $storageResults = $action->handle(); $result = $storageResults->toActionResult(); static::assertTrue(ActionStatus::PASSED()->is($result->getStatus())); } /** * The Delete Video Action shall delete the file from the configured disks. * * @return void */ public function testDeletedFromDisk(): void { Config::set(VideoConstants::DISKS_QUALIFIED, [Config::get(VideoConstants::DEFAULT_DISK_QUALIFIED)]); Storage::fake(Config::get(VideoConstants::DEFAULT_DISK_QUALIFIED)); $file = File::fake()->create($this->faker->word().'.webm', $this->faker->randomDigitNotNull()); $video = Video::factory()->createOne([ Video::ATTRIBUTE_BASENAME => FileFacade::basename($file->path()), Video::ATTRIBUTE_FILENAME => FileFacade::name($file->path()), Video::ATTRIBUTE_MIMETYPE => MimeType::from($file->path()), Video::ATTRIBUTE_PATH => $file->path(), ]); $action = new DeleteVideoAction($video); $action->handle(); static::assertEmpty(Storage::disk(Config::get(VideoConstants::DEFAULT_DISK_QUALIFIED))->allFiles()); } /** * The Delete Video Action shall delete the video. * * @return void * * @throws Exception */ public function testVideoDeleted(): void { Config::set(VideoConstants::DISKS_QUALIFIED, [Config::get(VideoConstants::DEFAULT_DISK_QUALIFIED)]); Storage::fake(Config::get(VideoConstants::DEFAULT_DISK_QUALIFIED)); $file = File::fake()->create($this->faker->word().'.webm', $this->faker->randomDigitNotNull()); $video = Video::factory()->createOne([ Video::ATTRIBUTE_BASENAME => FileFacade::basename($file->path()), Video::ATTRIBUTE_FILENAME => FileFacade::name($file->path()), Video::ATTRIBUTE_MIMETYPE => MimeType::from($file->path()), Video::ATTRIBUTE_PATH => $file->path(), ]); $action = new DeleteVideoAction($video); $result = $action->handle(); $action->then($result); static::assertSoftDeleted($video); } }