Файл: symfony-2.7/src/Symfony/Component/Security/Core/Tests/LegacySecurityContextTest.php
Строк: 242
<?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 SymfonyComponentSecurityCoreTests;
use SymfonyComponentSecurityCoreAuthenticationTokenStorageTokenStorage;
use SymfonyComponentSecurityCoreAuthorizationAuthorizationChecker;
use SymfonyComponentSecurityCoreSecurityContext;
class LegacySecurityContextTest extends PHPUnit_Framework_TestCase
{
private $tokenStorage;
private $authorizationChecker;
private $securityContext;
public function setUp()
{
$this->iniSet('error_reporting', -1 & ~E_USER_DEPRECATED);
$this->tokenStorage = $this->getMock('SymfonyComponentSecurityCoreAuthenticationTokenStorageTokenStorageInterface');
$this->authorizationChecker = $this->getMock('SymfonyComponentSecurityCoreAuthorizationAuthorizationCheckerInterface');
$this->securityContext = new SecurityContext($this->tokenStorage, $this->authorizationChecker);
}
public function testGetTokenDelegation()
{
$token = $this->getMock('SymfonyComponentSecurityCoreAuthenticationTokenTokenInterface');
$this->tokenStorage
->expects($this->once())
->method('getToken')
->will($this->returnValue($token));
$this->assertTrue($token === $this->securityContext->getToken());
}
public function testSetTokenDelegation()
{
$token = $this->getMock('SymfonyComponentSecurityCoreAuthenticationTokenTokenInterface');
$this->tokenStorage
->expects($this->once())
->method('setToken')
->with($token);
$this->securityContext->setToken($token);
}
/**
* @dataProvider isGrantedDelegationProvider
*/
public function testIsGrantedDelegation($attributes, $object, $return)
{
$this->authorizationChecker
->expects($this->once())
->method('isGranted')
->with($attributes, $object)
->will($this->returnValue($return));
$this->assertEquals($return, $this->securityContext->isGranted($attributes, $object));
}
public function isGrantedDelegationProvider()
{
return array(
array(array(), new stdClass(), true),
array(array('henk'), new stdClass(), false),
array(null, new stdClass(), false),
array('henk', null, true),
array(array(1), 'henk', true),
);
}
/**
* Test dedicated to check if the backwards compatibility is still working
*/
public function testOldConstructorSignature()
{
$authenticationManager = $this->getMock('SymfonyComponentSecurityCoreAuthenticationAuthenticationManagerInterface');
$accessDecisionManager = $this->getMock('SymfonyComponentSecurityCoreAuthorizationAccessDecisionManagerInterface');
new SecurityContext($authenticationManager, $accessDecisionManager);
}
/**
* @dataProvider oldConstructorSignatureFailuresProvider
* @expectedException BadMethodCallException
*/
public function testOldConstructorSignatureFailures($first, $second)
{
new SecurityContext($first, $second);
}
public function oldConstructorSignatureFailuresProvider()
{
$tokenStorage = $this->getMock('SymfonyComponentSecurityCoreAuthenticationTokenStorageTokenStorageInterface');
$authorizationChecker = $this->getMock('SymfonyComponentSecurityCoreAuthorizationAuthorizationCheckerInterface');
$authenticationManager = $this->getMock('SymfonyComponentSecurityCoreAuthenticationAuthenticationManagerInterface');
$accessDecisionManager = $this->getMock('SymfonyComponentSecurityCoreAuthorizationAccessDecisionManagerInterface');
return array(
array(new stdClass(), new stdClass()),
array($tokenStorage, $accessDecisionManager),
array($accessDecisionManager, $tokenStorage),
array($authorizationChecker, $accessDecisionManager),
array($accessDecisionManager, $authorizationChecker),
array($tokenStorage, $accessDecisionManager),
array($authenticationManager, $authorizationChecker),
array('henk', 'hans'),
array(null, false),
array(true, null),
);
}
}