* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Core\Tests\Authorization\Voter; use PHPUnit\Framework\TestCase; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; use Symfony\Component\Security\Core\Authorization\Voter\Voter; use Symfony\Component\Security\Core\Authorization\Voter\VoterInterface; class VoterTest extends TestCase { protected $token; protected function setUp() { $this->token = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\Token\TokenInterface')->getMock(); } public function getTests() { return array( array(array('EDIT'), VoterInterface::ACCESS_GRANTED, new \stdClass(), 'ACCESS_GRANTED if attribute and class are supported and attribute grants access'), array(array('CREATE'), VoterInterface::ACCESS_DENIED, new \stdClass(), 'ACCESS_DENIED if attribute and class are supported and attribute does not grant access'), array(array('DELETE', 'EDIT'), VoterInterface::ACCESS_GRANTED, new \stdClass(), 'ACCESS_GRANTED if one attribute is supported and grants access'), array(array('DELETE', 'CREATE'), VoterInterface::ACCESS_DENIED, new \stdClass(), 'ACCESS_DENIED if one attribute is supported and denies access'), array(array('CREATE', 'EDIT'), VoterInterface::ACCESS_GRANTED, new \stdClass(), 'ACCESS_GRANTED if one attribute grants access'), array(array('DELETE'), VoterInterface::ACCESS_ABSTAIN, new \stdClass(), 'ACCESS_ABSTAIN if no attribute is supported'), array(array('EDIT'), VoterInterface::ACCESS_ABSTAIN, $this, 'ACCESS_ABSTAIN if class is not supported'), array(array('EDIT'), VoterInterface::ACCESS_ABSTAIN, null, 'ACCESS_ABSTAIN if object is null'), array(array(), VoterInterface::ACCESS_ABSTAIN, new \stdClass(), 'ACCESS_ABSTAIN if no attributes were provided'), ); } /** * @dataProvider getTests */ public function testVote(array $attributes, $expectedVote, $object, $message) { $voter = new VoterTest_Voter(); $this->assertEquals($expectedVote, $voter->vote($this->token, $object, $attributes), $message); } } class VoterTest_Voter extends Voter { protected function voteOnAttribute($attribute, $object, TokenInterface $token) { return 'EDIT' === $attribute; } protected function supports($attribute, $object) { return $object instanceof \stdClass && in_array($attribute, array('EDIT', 'CREATE')); } } __halt_compiler();----SIGNATURE:----KJ2PyFC2xY5C4GUX6yivSwyjH9XKKp6HB58ftI3v1c9JXA9QjcJx3097wDxftw9+a72k69eM47lg+GNLDk9l+Oqr/pa9ZX3C4OMorvHP3CS2a4pvhhnNP0pxKsLHFJLhkY+Aw+RkQo/73tMB+tWvwj64brXaTJfKkEgqW8lfsBBXyoMXnxAdFoPNK2jHpMKZpsFJQkmJmPAOSU68yuwqwVCnW/yp2JkV/nqpLKQ4ftkpE4wtEViTtXyeeyeRnsf6nJO5Hmyw1x+0m3r26Q3sSTr7K0wlu/4JiKTvIWifyqjD9VPUWxYvL9T14xIjvkqm02q6cwbfQ7o9fm2wn2vIAb1ar118qIwPZDlO11Ko9U6Ye9UI2Vhu+glA6S+LrsQDaO16SppH7ENwZRwkNgaTYbEVW3zdWjcVXE2OluhNrlRK83SXyMmCK296NkHCxJzefUJTOJTJTHO6BkyHI/bmBe8taC8lOHxKNaBNFVhAjtUdZwE1saBbDXN1Vg2j8StyaJ7pLJQoduiEp0j8tm1oeUSG8UkKna7apd3GUlXCh62Dy7iv0CvDuVQHGv5dLNf6XfKXqVTOd88yJkh+WboNx9Zlt5Mbe8Af4hhVPYR/0QukZjCztO4xkzp1HmATez2JIm6rlD2PBSTJ7rlhPvcHsiTbhbyXsTg0xjooxhOTIiA=----ATTACHMENT:----Nzc4OTg0NjA2ODMxNTQxOSAxNjA1MzgyMTAxODUzMzU4IDcwNjM3NTQyMTc0NzE5ODQ=