createOne(); $action = new MoveScriptAction($script, fake()->word()); $storageResults = $action->handle(); $result = $storageResults->toActionResult(); $this->assertTrue($result->hasFailed()); }); test('passed', function (): void { /** @var FilesystemAdapter $fs */ $fs = Storage::fake(Config::get(VideoConstants::SCRIPT_DISK_QUALIFIED)); $file = File::fake()->create(fake()->word().'.txt', fake()->randomDigitNotNull()); $directory = fake()->unique()->word(); $script = VideoScript::factory()->createOne([ VideoScript::ATTRIBUTE_PATH => $fs->putFileAs($directory, $file, $file->getClientOriginalName()), ]); $action = new MoveScriptAction($script, Str::replace($directory, fake()->unique()->word(), $script->path)); $storageResults = $action->handle(); $result = $storageResults->toActionResult(); $this->assertTrue($result->getStatus() === ActionStatus::PASSED); }); test('moved in disk', function (): void { /** @var FilesystemAdapter $fs */ $fs = Storage::fake(Config::get(VideoConstants::SCRIPT_DISK_QUALIFIED)); $file = File::fake()->create(fake()->word().'.txt', fake()->randomDigitNotNull()); $directory = fake()->unique()->word(); $script = VideoScript::factory()->createOne([ VideoScript::ATTRIBUTE_PATH => $fs->putFileAs($directory, $file, $file->getClientOriginalName()), ]); $from = $script->path; $to = Str::replace($directory, fake()->unique()->word(), $script->path); $action = new MoveScriptAction($script, $to); $action->handle(); $fs->assertMissing($from); $fs->assertExists($to); }); test('script updated', function (): void { /** @var FilesystemAdapter $fs */ $fs = Storage::fake(Config::get(VideoConstants::SCRIPT_DISK_QUALIFIED)); $file = File::fake()->create(fake()->word().'.txt', fake()->randomDigitNotNull()); $directory = fake()->unique()->word(); $script = VideoScript::factory()->createOne([ VideoScript::ATTRIBUTE_PATH => $fs->putFileAs($directory, $file, $file->getClientOriginalName()), ]); $to = Str::replace($directory, fake()->unique()->word(), $script->path); $action = new MoveScriptAction($script, $to); $result = $action->handle(); $action->then($result); $this->assertDatabaseHas(VideoScript::class, [VideoScript::ATTRIBUTE_PATH => $to]); });