mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-25 16:24:35 +02:00
40 lines
929 B
PHP
40 lines
929 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Rules\Storage\StorageDirectoryExistsRule;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Illuminate\Support\Facades\Validator;
|
|
|
|
uses(Illuminate\Foundation\Testing\WithFaker::class);
|
|
|
|
test('passes if directory exists', function () {
|
|
$directory = fake()->word();
|
|
|
|
$fs = Storage::fake(fake()->word());
|
|
|
|
$fs->makeDirectory($directory);
|
|
|
|
$attribute = fake()->word();
|
|
|
|
$validator = Validator::make(
|
|
[$attribute => $directory],
|
|
[$attribute => new StorageDirectoryExistsRule($fs)]
|
|
);
|
|
|
|
$this->assertTrue($validator->passes());
|
|
});
|
|
|
|
test('fails if directory does not exist', function () {
|
|
$fs = Storage::fake(fake()->word());
|
|
|
|
$attribute = fake()->word();
|
|
|
|
$validator = Validator::make(
|
|
[$attribute => fake()->word()],
|
|
[$attribute => new StorageDirectoryExistsRule($fs)]
|
|
);
|
|
|
|
$this->assertFalse($validator->passes());
|
|
});
|