Files
animethemes-server/tests/Unit/Rules/Api/IsValidBooleanTest.php
T

82 lines
1.9 KiB
PHP

<?php
declare(strict_types=1);
use App\Rules\Api\IsValidBoolean;
use Illuminate\Foundation\Testing\WithFaker;
use Illuminate\Support\Facades\Validator;
uses(WithFaker::class);
test('passes if boolean', function (): void {
$attribute = fake()->word();
$validator = Validator::make(
[$attribute => fake()->boolean()],
[$attribute => new IsValidBoolean()]
);
$this->assertTrue($validator->passes());
});
test('passes if boolean string', function (): void {
$booleanString = fake()->boolean() ? 'true' : 'false';
$attribute = fake()->word();
$validator = Validator::make(
[$attribute => $booleanString],
[$attribute => new IsValidBoolean()]
);
$this->assertTrue($validator->passes());
});
test('passes if boolean integer', function (): void {
$booleanInteger = fake()->boolean() ? 1 : 0;
$attribute = fake()->word();
$validator = Validator::make(
[$attribute => $booleanInteger],
[$attribute => new IsValidBoolean()]
);
$this->assertTrue($validator->passes());
});
test('passes if boolean checkbox', function (): void {
$booleanCheckbox = fake()->boolean() ? 'on' : 'off';
$attribute = fake()->word();
$validator = Validator::make(
[$attribute => $booleanCheckbox],
[$attribute => new IsValidBoolean()]
);
$this->assertTrue($validator->passes());
});
test('fails if string', function (): void {
$attribute = fake()->word();
$validator = Validator::make(
[$attribute => fake()->word()],
[$attribute => new IsValidBoolean()]
);
$this->assertFalse($validator->passes());
});
test('fails if number', function (): void {
$attribute = fake()->word();
$validator = Validator::make(
[$attribute => fake()->numberBetween(2, 9)],
[$attribute => new IsValidBoolean()]
);
$this->assertFalse($validator->passes());
});