123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- <?php
- namespace Symfony\Tests\Component\Security\Http\RememberMe;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\HttpFoundation\Response;
- class RememberMeServicesTest extends \PHPUnit_Framework_TestCase
- {
- public function testGetRememberMeParameter()
- {
- $service = $this->getService(null, array('remember_me_parameter' => 'foo'));
- $this->assertEquals('foo', $service->getRememberMeParameter());
- }
- public function testAutoLoginReturnsNullWhenNoCookie()
- {
- $service = $this->getService(null, array('name' => 'foo'));
- $this->assertNull($service->autoLogin(new Request()));
- }
- /**
- * @expectedException \RuntimeException
- * @expectedMessage processAutoLoginCookie() must return a TokenInterface implementation.
- */
- public function testAutoLoginThrowsExceptionWhenImplementationDoesNotReturnTokenInterface()
- {
- $service = $this->getService(null, array('name' => 'foo'));
- $request = new Request;
- $request->cookies->set('foo', 'foo');
- $service
- ->expects($this->once())
- ->method('processAutoLoginCookie')
- ->will($this->returnValue(null))
- ;
- $service->autoLogin($request);
- }
- public function testAutoLogin()
- {
- $service = $this->getService(null, array('name' => 'foo'));
- $request = new Request();
- $request->cookies->set('foo', 'foo');
- $token = $this->getMock('Symfony\Component\Security\Core\Authentication\Token\TokenInterface');
- $service
- ->expects($this->once())
- ->method('processAutoLoginCookie')
- ->will($this->returnValue($token))
- ;
- $returnedToken = $service->autoLogin($request);
- $this->assertSame($token, $returnedToken);
- }
- public function testLogout()
- {
- $service = $this->getService(null, array('name' => 'foo', 'path' => null, 'domain' => null));
- $request = new Request();
- $response = new Response();
- $token = $this->getMock('Symfony\Component\Security\Core\Authentication\Token\TokenInterface');
- $this->assertFalse($response->headers->hasCookie('foo'));
- $service->logout($request, $response, $token);
- $this->assertTrue($response->headers->getCookie('foo')->isCleared());
- }
- public function testLoginFail()
- {
- $service = $this->getService(null, array('name' => 'foo', 'path' => null, 'domain' => null));
- $request = new Request();
- $response = new Response();
- $this->assertFalse($response->headers->hasCookie('foo'));
- $service->loginFail($request, $response);
- $this->assertTrue($response->headers->getCookie('foo')->isCleared());
- }
- public function testLoginSuccessIsNotProcessedWhenTokenDoesNotContainAccountInterfaceImplementation()
- {
- $service = $this->getService(null, array('name' => 'foo', 'always_remember_me' => true));
- $request = new Request;
- $response = new Response;
- $account = $this->getMock('Symfony\Component\Security\Core\User\AccountInterface');
- $token = $this->getMock('Symfony\Component\Security\Core\Authentication\Token\TokenInterface');
- $token
- ->expects($this->once())
- ->method('getUser')
- ->will($this->returnValue('foo'))
- ;
- $service
- ->expects($this->never())
- ->method('onLoginSuccess')
- ;
- $this->assertFalse($request->request->has('foo'));
- $service->loginSuccess($request, $response, $token);
- }
- public function testLoginSuccessIsNotProcessedWhenRememberMeIsNotRequested()
- {
- $service = $this->getService(null, array('name' => 'foo', 'always_remember_me' => false, 'remember_me_parameter' => 'foo'));
- $request = new Request;
- $response = new Response;
- $account = $this->getMock('Symfony\Component\Security\Core\User\AccountInterface');
- $token = $this->getMock('Symfony\Component\Security\Core\Authentication\Token\TokenInterface');
- $token
- ->expects($this->once())
- ->method('getUser')
- ->will($this->returnValue($account))
- ;
- $service
- ->expects($this->never())
- ->method('onLoginSuccess')
- ->will($this->returnValue(null))
- ;
- $this->assertFalse($request->request->has('foo'));
- $service->loginSuccess($request, $response, $token);
- }
- public function testLoginSuccessWhenRememberMeAlwaysIsTrue()
- {
- $service = $this->getService(null, array('name' => 'foo', 'always_remember_me' => true));
- $request = new Request;
- $response = new Response;
- $account = $this->getMock('Symfony\Component\Security\Core\User\AccountInterface');
- $token = $this->getMock('Symfony\Component\Security\Core\Authentication\Token\TokenInterface');
- $token
- ->expects($this->once())
- ->method('getUser')
- ->will($this->returnValue($account))
- ;
- $service
- ->expects($this->once())
- ->method('onLoginSuccess')
- ->will($this->returnValue(null))
- ;
- $service->loginSuccess($request, $response, $token);
- }
- /**
- * @dataProvider getPositiveRememberMeParameterValues
- */
- public function testLoginSuccessWhenRememberMeParameterIsPositive($value)
- {
- $service = $this->getService(null, array('name' => 'foo', 'always_remember_me' => false, 'remember_me_parameter' => 'foo'));
- $request = new Request;
- $request->request->set('foo', $value);
- $response = new Response;
- $account = $this->getMock('Symfony\Component\Security\Core\User\AccountInterface');
- $token = $this->getMock('Symfony\Component\Security\Core\Authentication\Token\TokenInterface');
- $token
- ->expects($this->once())
- ->method('getUser')
- ->will($this->returnValue($account))
- ;
- $service
- ->expects($this->once())
- ->method('onLoginSuccess')
- ->will($this->returnValue(true))
- ;
- $service->loginSuccess($request, $response, $token);
- }
- public function getPositiveRememberMeParameterValues()
- {
- return array(
- array('true'),
- array('1'),
- array('on'),
- array('yes'),
- );
- }
- public function testLoginSuccessRenewsRememberMeCookie()
- {
- $service = $this->getService();
- $token = $this->getMock(
- 'Symfony\Component\Security\Core\Authentication\Token\RememberMeToken',
- array(),
- array(),
- 'NonFunctionalRememberMeTokenMockClass',
- false
- );
- $service
- ->expects($this->once())
- ->method('onLoginSuccess')
- ->will($this->returnValue(null))
- ;
- $service->loginSuccess(new Request(), new Response(), $token);
- }
- protected function getService($userProvider = null, $options = array(), $logger = null)
- {
- if (null === $userProvider) {
- $userProvider = $this->getProvider();
- }
- return $this->getMockForAbstractClass('Symfony\Component\Security\Http\RememberMe\RememberMeServices', array(
- array($userProvider), 'fookey', 'fookey', $options, $logger
- ));
- }
- protected function getProvider()
- {
- $provider = $this->getMock('Symfony\Component\Security\Core\User\UserProviderInterface');
- $provider
- ->expects($this->any())
- ->method('supportsClass')
- ->will($this->returnValue(true))
- ;
- return $provider;
- }
- }
|