summaryrefslogtreecommitdiffstats
path: root/Tests/Http/RememberMe/AbstractRememberMeServicesTest.php
diff options
context:
space:
mode:
authorBernhard Schussek <bschussek@gmail.com>2013-09-16 10:03:00 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2013-09-18 09:16:41 +0200
commit5a6aaab2c35213f5ca7e57f061fbb2675e2ece35 (patch)
tree461816fef8160401dc113d3fef190fb437d01cc7 /Tests/Http/RememberMe/AbstractRememberMeServicesTest.php
parent513a354be10f0ed87933adcb788e48660f8e6ed4 (diff)
downloadsymfony-security-5a6aaab2c35213f5ca7e57f061fbb2675e2ece35.zip
symfony-security-5a6aaab2c35213f5ca7e57f061fbb2675e2ece35.tar.gz
symfony-security-5a6aaab2c35213f5ca7e57f061fbb2675e2ece35.tar.bz2
[Security] Split the component into 3 sub-components Core, ACL, HTTP
Diffstat (limited to 'Tests/Http/RememberMe/AbstractRememberMeServicesTest.php')
-rw-r--r--Tests/Http/RememberMe/AbstractRememberMeServicesTest.php261
1 files changed, 0 insertions, 261 deletions
diff --git a/Tests/Http/RememberMe/AbstractRememberMeServicesTest.php b/Tests/Http/RememberMe/AbstractRememberMeServicesTest.php
deleted file mode 100644
index 20ac195..0000000
--- a/Tests/Http/RememberMe/AbstractRememberMeServicesTest.php
+++ /dev/null
@@ -1,261 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\Security\Tests\Http\RememberMe;
-
-use Symfony\Component\Security\Http\RememberMe\RememberMeServicesInterface;
-use Symfony\Component\HttpFoundation\Request;
-use Symfony\Component\HttpFoundation\Response;
-
-class AbstractRememberMeServicesTest extends \PHPUnit_Framework_TestCase
-{
- public function testGetRememberMeParameter()
- {
- $service = $this->getService(null, array('remember_me_parameter' => 'foo'));
-
- $this->assertEquals('foo', $service->getRememberMeParameter());
- }
-
- public function testGetKey()
- {
- $service = $this->getService();
- $this->assertEquals('fookey', $service->getKey());
- }
-
- public function testAutoLoginReturnsNullWhenNoCookie()
- {
- $service = $this->getService(null, array('name' => 'foo', 'path' => null, 'domain' => null));
-
- $this->assertNull($service->autoLogin(new Request()));
- }
-
- /**
- * @expectedException \RuntimeException
- */
- public function testAutoLoginThrowsExceptionWhenImplementationDoesNotReturnUserInterface()
- {
- $service = $this->getService(null, array('name' => 'foo', 'path' => null, 'domain' => null));
- $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', 'path' => null, 'domain' => null));
- $request = new Request();
- $request->cookies->set('foo', 'foo');
-
- $user = $this->getMock('Symfony\Component\Security\Core\User\UserInterface');
- $user
- ->expects($this->once())
- ->method('getRoles')
- ->will($this->returnValue(array()))
- ;
-
- $service
- ->expects($this->once())
- ->method('processAutoLoginCookie')
- ->will($this->returnValue($user))
- ;
-
- $returnedToken = $service->autoLogin($request);
-
- $this->assertSame($user, $returnedToken->getUser());
- $this->assertSame('fookey', $returnedToken->getKey());
- $this->assertSame('fookey', $returnedToken->getProviderKey());
- }
-
- 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');
-
- $service->logout($request, $response, $token);
-
- $this->assertTrue($request->attributes->get(RememberMeServicesInterface::COOKIE_ATTR_NAME)->isCleared());
- }
-
- public function testLoginFail()
- {
- $service = $this->getService(null, array('name' => 'foo', 'path' => null, 'domain' => null));
- $request = new Request();
-
- $service->loginFail($request);
-
- $this->assertTrue($request->attributes->get(RememberMeServicesInterface::COOKIE_ATTR_NAME)->isCleared());
- }
-
- public function testLoginSuccessIsNotProcessedWhenTokenDoesNotContainUserInterfaceImplementation()
- {
- $service = $this->getService(null, array('name' => 'foo', 'always_remember_me' => true, 'path' => null, 'domain' => null));
- $request = new Request;
- $response = new Response;
- $account = $this->getMock('Symfony\Component\Security\Core\User\UserInterface');
- $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', 'path' => null, 'domain' => null));
- $request = new Request;
- $response = new Response;
- $account = $this->getMock('Symfony\Component\Security\Core\User\UserInterface');
- $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, 'path' => null, 'domain' => null));
- $request = new Request;
- $response = new Response;
- $account = $this->getMock('Symfony\Component\Security\Core\User\UserInterface');
- $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 testLoginSuccessWhenRememberMeParameterWithPathIsPositive($value)
- {
- $service = $this->getService(null, array('name' => 'foo', 'always_remember_me' => false, 'remember_me_parameter' => 'foo[bar]', 'path' => null, 'domain' => null));
-
- $request = new Request;
- $request->request->set('foo', array('bar' => $value));
- $response = new Response;
- $account = $this->getMock('Symfony\Component\Security\Core\User\UserInterface');
- $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);
- }
-
- /**
- * @dataProvider getPositiveRememberMeParameterValues
- */
- public function testLoginSuccessWhenRememberMeParameterIsPositive($value)
- {
- $service = $this->getService(null, array('name' => 'foo', 'always_remember_me' => false, 'remember_me_parameter' => 'foo', 'path' => null, 'domain' => null));
-
- $request = new Request;
- $request->request->set('foo', $value);
- $response = new Response;
- $account = $this->getMock('Symfony\Component\Security\Core\User\UserInterface');
- $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'),
- );
- }
-
- protected function getService($userProvider = null, $options = array(), $logger = null)
- {
- if (null === $userProvider) {
- $userProvider = $this->getProvider();
- }
-
- return $this->getMockForAbstractClass('Symfony\Component\Security\Http\RememberMe\AbstractRememberMeServices', 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;
- }
-}