* * 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:----eA6CUbxEwhES4DKGemXfKsRGU/5rbE9xXegrrblUyzK5Zgocrs18mi6X9hDGYnRP2XIh8Vi/NAtGQKKNg+w9guWfhvFxjnhZs4ndNjtudv3s8jhkmeDR23nCtmIZh2cWfxVNUqG7soZkxPEJoiS+tAQPvpuY/r/kG2lztinaHwpJn4lzWDqxZmuAl9h8JocUaA7W2iQ49eIutgWHYZW1ZmuvgzmsKKh7L6OxU2A8iD8qMKEAOc1RlK/6szX7bLh8zjpUFYias8t8f7TGCDdnLFMrygbVrK2+2CT2zI2/d8zYthtkEE4W2pw48KkU3C1eR5/KNbfQhc/gVfmYEaiy0wGHAtPipYpozxAqvlVcDVYJOqVV45LU55nL7eMGB65P2KthRoEF6J3AzxGMv9fpDTM7ueJTfjiUwd5iABx0PArhIOpFYFKPrIaUjyrDf/rYXovPO7U8w8jQzyggDh82EkeqkUzqygi5GeEFEyaLL7RK7GGoevb1QJHARLSQjDouKm+w4CAJAxpr9xuHMJvw7A6tiEzt9MPX0wHfy9C14epUJB4qXGstmLfk4dIiMwY3qSa0GgLhwP5AnrNbDY8J0Y8dtDFE7gBOT2XwQT8810zBiF8eXV4+aeGt/nT/CQtFdx4+Jid6OtaGW7XZYLoq87L99YQRhVVAFtoNsWZSQi8=----ATTACHMENT:----NjYyODIzNzM1NzE0ODIzMCA2OTg0NzgyNzE1NTk3OTk2IDU2Nzk3NTEyNjQ0OTM5MjU=