Files
animethemes-server/tests/Feature/Console/Commands/Storage/Admin/DumpPruneTest.php
T

43 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
use App\Actions\Storage\Admin\Dump\DumpContentAction;
use App\Console\Commands\Storage\Admin\DumpPruneCommand;
use App\Constants\Config\DumpConstants;
use Illuminate\Foundation\Testing\WithFaker;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\Date;
use Illuminate\Support\Facades\Storage;
uses(WithFaker::class);
test('no results', function (): void {
Storage::fake(Config::get(DumpConstants::DISK_QUALIFIED));
$this->artisan(DumpPruneCommand::class, ['--hours' => 0])
->assertFailed()
->expectsOutput('No prunings were attempted.');
});
test('deleted', function (): void {
Storage::fake(Config::get(DumpConstants::DISK_QUALIFIED));
$prunedCount = fake()->randomDigitNotNull();
Collection::times($prunedCount, function (): void {
Date::setTestNow(fake()->iso8601());
$action = new DumpContentAction();
$action->handle();
});
Date::setTestNow();
$this->artisan(DumpPruneCommand::class, ['--hours' => -1])
->assertSuccessful()
->expectsOutputToContain('Pruned');
});