Files
kimai2/tests/Validator/Constraints/RoleValidatorTest.php
Kevin Papst 0e91dd886e release 2.0 beta 2 (#3757)
* do not traverse into invoice template subdirectories (#3735)
* fix security open api definition
* fix currency can be null, removed fluent interface
* merged release 1.30.3
* allow to pre-fill timesheet metafields via URL
* fix api description
* added test accounts with simpler names and password
* upgrade to Symfony 6.2
* removed FrameworkExtraBundle (by Sensio) and replaced with new native SF annotations
* fixed symfony 6.2 deprecations
* fixed #3768
2023-01-18 14:47:48 +01:00

105 lines
2.7 KiB
PHP

<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Tests\Validator\Constraints;
use App\Entity\User;
use App\Tests\Mocks\Security\RoleServiceFactory;
use App\Validator\Constraints\Role;
use App\Validator\Constraints\RoleValidator;
use Symfony\Component\Validator\Constraints\NotBlank;
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
use Symfony\Component\Validator\Test\ConstraintValidatorTestCase;
/**
* @covers \App\Validator\Constraints\Role
* @covers \App\Validator\Constraints\RoleValidator
* @extends ConstraintValidatorTestCase<RoleValidator>
*/
class RoleValidatorTest extends ConstraintValidatorTestCase
{
protected function createValidator(): RoleValidator
{
$factory = new RoleServiceFactory($this);
$roleService = $factory->create();
return new RoleValidator($roleService);
}
public function getValidRoles()
{
return [
[User::ROLE_USER],
[User::ROLE_TEAMLEAD],
[User::ROLE_ADMIN],
[User::ROLE_SUPER_ADMIN],
];
}
public function testConstraintIsInvalid()
{
$this->expectException(UnexpectedTypeException::class);
$this->validator->validate('foo', new NotBlank());
}
/**
* @dataProvider getValidRoles
* @param string $role
*/
public function testConstraintWithValidRole($role)
{
$constraint = new Role();
$this->validator->validate($role, $constraint);
$this->assertNoViolation();
}
public function testNullIsInvalid()
{
$this->validator->validate(null, new Role(['message' => 'myMessage']));
$this->buildViolation('myMessage')
->setParameter('{{ value }}', 'null')
->setCode(Role::ROLE_ERROR)
->assertRaised();
}
public function getInvalidRoles()
{
return [
['foo'],
[0],
['role_user'],
['ROLE-CUSTOMER'],
['anonymous'],
[''],
];
}
/**
* @dataProvider getInvalidRoles
* @param mixed $role
*/
public function testValidationError($role)
{
$constraint = new Role([
'message' => 'myMessage',
]);
$this->validator->validate($role, $constraint);
$expectedFormat = \is_string($role) ? '"' . $role . '"' : (string) $role;
$this->buildViolation('myMessage')
->setParameter('{{ value }}', $expectedFormat)
->setCode(Role::ROLE_ERROR)
->assertRaised();
}
}