* * 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\Authentication\Provider; use PHPUnit\Framework\TestCase; use Symfony\Component\Security\Core\Authentication\Provider\RememberMeAuthenticationProvider; use Symfony\Component\Security\Core\Exception\DisabledException; use Symfony\Component\Security\Core\Role\Role; class RememberMeAuthenticationProviderTest extends TestCase { public function testSupports() { $provider = $this->getProvider(); $this->assertTrue($provider->supports($this->getSupportedToken())); $this->assertFalse($provider->supports($this->getMockBuilder('Symfony\Component\Security\Core\Authentication\Token\TokenInterface')->getMock())); } /** * @expectedException \Symfony\Component\Security\Core\Exception\AuthenticationException * @expectedExceptionMessage The token is not supported by this authentication provider. */ public function testAuthenticateWhenTokenIsNotSupported() { $provider = $this->getProvider(); $token = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\Token\TokenInterface')->getMock(); $provider->authenticate($token); } /** * @expectedException \Symfony\Component\Security\Core\Exception\BadCredentialsException */ public function testAuthenticateWhenSecretsDoNotMatch() { $provider = $this->getProvider(null, 'secret1'); $token = $this->getSupportedToken(null, 'secret2'); $provider->authenticate($token); } /** * @expectedException \Symfony\Component\Security\Core\Exception\DisabledException */ public function testAuthenticateWhenPreChecksFails() { $userChecker = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserCheckerInterface')->getMock(); $userChecker->expects($this->once()) ->method('checkPreAuth') ->will($this->throwException(new DisabledException())); $provider = $this->getProvider($userChecker); $provider->authenticate($this->getSupportedToken()); } public function testAuthenticate() { $user = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserInterface')->getMock(); $user->expects($this->exactly(2)) ->method('getRoles') ->will($this->returnValue(array('ROLE_FOO'))); $provider = $this->getProvider(); $token = $this->getSupportedToken($user); $authToken = $provider->authenticate($token); $this->assertInstanceOf('Symfony\Component\Security\Core\Authentication\Token\RememberMeToken', $authToken); $this->assertSame($user, $authToken->getUser()); $this->assertEquals(array(new Role('ROLE_FOO')), $authToken->getRoles()); $this->assertEquals('', $authToken->getCredentials()); } protected function getSupportedToken($user = null, $secret = 'test') { if (null === $user) { $user = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserInterface')->getMock(); $user ->expects($this->any()) ->method('getRoles') ->will($this->returnValue(array())); } $token = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\Token\RememberMeToken')->setMethods(array('getProviderKey'))->setConstructorArgs(array($user, 'foo', $secret))->getMock(); $token ->expects($this->once()) ->method('getProviderKey') ->will($this->returnValue('foo')); return $token; } protected function getProvider($userChecker = null, $key = 'test') { if (null === $userChecker) { $userChecker = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserCheckerInterface')->getMock(); } return new RememberMeAuthenticationProvider($userChecker, $key, 'foo'); } } __halt_compiler();----SIGNATURE:----ChEZnbYiubUKbsb0XglCdplQBMaBslZ1JQx3TPJbT3I1tY9bqdwd6GHda4yTrPL5w5+JWqOjgD55R/KIhVnw0C/Mi+gcFglVwv9kvNq7RScxzu6n4us7c59WIUny0owRvbDkG3Z0bAsTbkjvl2QCYn7N73IGvgBCbC+nIL30jbHvf0V1Znj+v8on4MUQukaO5pbB6uhmDjZ88qm25q/lfKipKzi87RkLQbIJ54vhIWk4ozJzaMUA5lZXCeVPd4tlJ7PHrSVL46dLEEf0VyE641VH8qi7MaPUT65Cm/Zv0Z4xHDMLh4ITMrboRK0JU1m6gfipZDVkzudgUJTt0XhbS0v9XcpxxKCG2uWUGS0taVHqAAxyawVERsRkO6CEiavQxbUpsPDj7Q89+nmn1XJmIHg/ZKMqV7Kt1/RZ5T1nCSDGwAA84mSSJLljt5L0dwo6xgGk8I8J5wGQ0L6aZ2bUu18lWqKYQw/ToLkV6zTrHjrvu6Ay3LKZaPPGNBg5N/7alg1ULwMUfbE8H+QsfpLFlOGFxOdICslAT2Fjr/OCf7qTVKBYdJHqu1sNwDy7UCkpXkVumcKKg9PQaOK9poQqiTgY4SKHm8buG29kr+eTMYgIVgwRmowhogZWTPHIKDhCsuoteeycH6Mwd4q2oGdCq4Nl4PYCuqm2YeoCgFcVbPU=----ATTACHMENT:----MjMxODkyNjc1MjE4ODc2MSA5NjcxNTk1NTk5NTE3MjEwIDU4NTM5MTc5NzMzNjkwODk=