123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <?php
- /*
- * This file is part of the Symfony package.
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Tests\Component\Security\Authentication\Provider;
- use Symfony\Component\Security\Authentication\Provider\DaoAuthenticationProvider;
- class DaoAuthenticationProviderTest extends \PHPUnit_Framework_TestCase
- {
- /**
- * @expectedException Symfony\Component\Security\Exception\AuthenticationServiceException
- */
- public function testRetrieveUserWhenProviderDoesNotReturnAnAccountInterface()
- {
- $provider = $this->getProvider('fabien');
- $method = new \ReflectionMethod($provider, 'retrieveUser');
- $method->setAccessible(true);
- $method->invoke($provider, 'fabien', $this->getSupportedToken());
- }
- /**
- * @expectedException Symfony\Component\Security\Exception\UsernameNotFoundException
- */
- public function testRetrieveUserWhenUsernameIsNotFound()
- {
- $userProvider = $this->getMock('Symfony\Component\Security\User\UserProviderInterface');
- $userProvider->expects($this->once())
- ->method('loadUserByUsername')
- ->will($this->throwException($this->getMock('Symfony\Component\Security\Exception\UsernameNotFoundException', null, array(), '', false)))
- ;
- $provider = new DaoAuthenticationProvider($userProvider, $this->getMock('Symfony\Component\Security\User\AccountCheckerInterface'));
- $method = new \ReflectionMethod($provider, 'retrieveUser');
- $method->setAccessible(true);
- $method->invoke($provider, 'fabien', $this->getSupportedToken());
- }
- /**
- * @expectedException Symfony\Component\Security\Exception\AuthenticationServiceException
- */
- public function testRetrieveUserWhenAnExceptionOccurs()
- {
- $userProvider = $this->getMock('Symfony\Component\Security\User\UserProviderInterface');
- $userProvider->expects($this->once())
- ->method('loadUserByUsername')
- ->will($this->throwException($this->getMock('RuntimeException', null, array(), '', false)))
- ;
- $provider = new DaoAuthenticationProvider($userProvider, $this->getMock('Symfony\Component\Security\User\AccountCheckerInterface'));
- $method = new \ReflectionMethod($provider, 'retrieveUser');
- $method->setAccessible(true);
- $method->invoke($provider, 'fabien', $this->getSupportedToken());
- }
- public function testRetrieveUser()
- {
- $user = $this->getMock('Symfony\Component\Security\User\AccountInterface');
- $userProvider = $this->getMock('Symfony\Component\Security\User\UserProviderInterface');
- $userProvider->expects($this->once())
- ->method('loadUserByUsername')
- ->will($this->returnValue($user))
- ;
- $provider = new DaoAuthenticationProvider($userProvider, $this->getMock('Symfony\Component\Security\User\AccountCheckerInterface'));
- $method = new \ReflectionMethod($provider, 'retrieveUser');
- $method->setAccessible(true);
- $this->assertSame($user, $method->invoke($provider, 'fabien', $this->getSupportedToken()));
- }
- /**
- * @expectedException Symfony\Component\Security\Exception\BadCredentialsException
- */
- public function testCheckAuthenticationWhenCredentialsAreEmpty()
- {
- $provider = $this->getProvider();
- $method = new \ReflectionMethod($provider, 'checkAuthentication');
- $method->setAccessible(true);
- $token = $this->getSupportedToken();
- $token->expects($this->once())
- ->method('getCredentials')
- ->will($this->returnValue(''))
- ;
- $method->invoke($provider, $this->getMock('Symfony\Component\Security\User\AccountInterface'), $token);
- }
- /**
- * @expectedException Symfony\Component\Security\Exception\BadCredentialsException
- */
- public function testCheckAuthenticationWhenCredentialsAreNotValid()
- {
- $encoder = $this->getMock('Symfony\Component\Security\Encoder\PasswordEncoderInterface');
- $encoder->expects($this->once())
- ->method('isPasswordValid')
- ->will($this->returnValue(false))
- ;
- $provider = $this->getProvider(false, false, $encoder);
- $method = new \ReflectionMethod($provider, 'checkAuthentication');
- $method->setAccessible(true);
- $token = $this->getSupportedToken();
- $token->expects($this->once())
- ->method('getCredentials')
- ->will($this->returnValue('foo'))
- ;
- $method->invoke($provider, $this->getMock('Symfony\Component\Security\User\AccountInterface'), $token);
- }
- public function testCheckAuthentication()
- {
- $encoder = $this->getMock('Symfony\Component\Security\Encoder\PasswordEncoderInterface');
- $encoder->expects($this->once())
- ->method('isPasswordValid')
- ->will($this->returnValue(true))
- ;
- $provider = $this->getProvider(false, false, $encoder);
- $method = new \ReflectionMethod($provider, 'checkAuthentication');
- $method->setAccessible(true);
- $token = $this->getSupportedToken();
- $token->expects($this->once())
- ->method('getCredentials')
- ->will($this->returnValue('foo'))
- ;
- $method->invoke($provider, $this->getMock('Symfony\Component\Security\User\AccountInterface'), $token);
- }
- protected function getSupportedToken()
- {
- return $this->getMock('Symfony\Component\Security\Authentication\Token\UsernamePasswordToken', array('getCredentials'), array(), '', false);
- }
- protected function getProvider($user = false, $userChecker = false, $passwordEncoder = null)
- {
- $userProvider = $this->getMock('Symfony\Component\Security\User\UserProviderInterface');
- if (false !== $user) {
- $userProvider->expects($this->once())
- ->method('loadUserByUsername')
- ->will($this->returnValue($user))
- ;
- }
- if (false === $userChecker) {
- $userChecker = $this->getMock('Symfony\Component\Security\User\AccountCheckerInterface');
- }
- return new DaoAuthenticationProvider($userProvider, $userChecker, $passwordEncoder);
- }
- }
|