!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/opt/alt/php54/usr/share/pear/test/Security/Symfony/Component/Security/Acl/Tests/Domain/   drwxr-xr-x
Free 293.9 GB of 429.69 GB (68.4%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     SecurityIdentityRetrievalStrategyTest.php (7.13 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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\Acl\Tests\Domain;

use 
Symfony\Component\Security\Acl\Domain\RoleSecurityIdentity;
use 
Symfony\Component\Security\Acl\Domain\UserSecurityIdentity;
use 
Symfony\Component\Security\Acl\Domain\SecurityIdentityRetrievalStrategy;

class 
SecurityIdentityRetrievalStrategyTest extends \PHPUnit_Framework_TestCase
{
    
/**
     * @dataProvider getSecurityIdentityRetrievalTests
     */
    
public function testGetSecurityIdentities($user, array $roles$authenticationStatus, array $sids)
    {
        
$strategy $this->getStrategy($roles$authenticationStatus);

        if (
'anonymous' === $authenticationStatus) {
            
$token $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\Token\AnonymousToken')
                                ->
disableOriginalConstructor()
                                ->
getMock();
        } else {
            
$class '';
            if (
is_string($user)) {
                
$class 'MyCustomTokenImpl';
            }

            
$token $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\Token\TokenInterface')
                        ->
setMockClassName($class)
                        ->
getMock();
        }
        
$token
            
->expects($this->once())
            ->
method('getRoles')
            ->
will($this->returnValue(array('foo')))
        ;
        if (
'anonymous' === $authenticationStatus) {
            
$token
                
->expects($this->never())
                ->
method('getUser')
            ;
        } else {
            
$token
                
->expects($this->once())
                ->
method('getUser')
                ->
will($this->returnValue($user))
            ;
        }

        
$extractedSids $strategy->getSecurityIdentities($token);

        foreach (
$extractedSids as $index => $extractedSid) {
            if (!isset(
$sids[$index])) {
                
$this->fail(sprintf('Expected SID at index %d, but there was none.'true));
            }

            if (
false === $sids[$index]->equals($extractedSid)) {
                
$this->fail(sprintf('Index: %d, expected SID "%s", but got "%s".'$index$sids[$index], $extractedSid));
            }
        }
    }

    public function 
getSecurityIdentityRetrievalTests()
    {
        return array(
            array(
$this->getAccount('johannes''FooUser'), array('ROLE_USER''ROLE_SUPERADMIN'), 'fullFledged', array(
                new 
UserSecurityIdentity('johannes''FooUser'),
                new 
RoleSecurityIdentity('ROLE_USER'),
                new 
RoleSecurityIdentity('ROLE_SUPERADMIN'),
                new 
RoleSecurityIdentity('IS_AUTHENTICATED_FULLY'),
                new 
RoleSecurityIdentity('IS_AUTHENTICATED_REMEMBERED'),
                new 
RoleSecurityIdentity('IS_AUTHENTICATED_ANONYMOUSLY'),
            )),
            array(
'johannes', array('ROLE_FOO'), 'fullFledged', array(
                new 
UserSecurityIdentity('johannes''MyCustomTokenImpl'),
                new 
RoleSecurityIdentity('ROLE_FOO'),
                new 
RoleSecurityIdentity('IS_AUTHENTICATED_FULLY'),
                new 
RoleSecurityIdentity('IS_AUTHENTICATED_REMEMBERED'),
                new 
RoleSecurityIdentity('IS_AUTHENTICATED_ANONYMOUSLY'),
            )),
            array(new 
CustomUserImpl('johannes'), array('ROLE_FOO'), 'fullFledged', array(
                new 
UserSecurityIdentity('johannes''Symfony\Component\Security\Acl\Tests\Domain\CustomUserImpl'),
                new 
RoleSecurityIdentity('ROLE_FOO'),
                new 
RoleSecurityIdentity('IS_AUTHENTICATED_FULLY'),
                new 
RoleSecurityIdentity('IS_AUTHENTICATED_REMEMBERED'),
                new 
RoleSecurityIdentity('IS_AUTHENTICATED_ANONYMOUSLY'),
            )),
            array(
$this->getAccount('foo''FooBarUser'), array('ROLE_FOO'), 'rememberMe', array(
                new 
UserSecurityIdentity('foo''FooBarUser'),
                new 
RoleSecurityIdentity('ROLE_FOO'),
                new 
RoleSecurityIdentity('IS_AUTHENTICATED_REMEMBERED'),
                new 
RoleSecurityIdentity('IS_AUTHENTICATED_ANONYMOUSLY'),
            )),
            array(
'guest', array('ROLE_FOO'), 'anonymous', array(
                new 
RoleSecurityIdentity('ROLE_FOO'),
                new 
RoleSecurityIdentity('IS_AUTHENTICATED_ANONYMOUSLY'),
            ))
        );
    }

    protected function 
getAccount($username$class)
    {
        
$account $this->getMock('Symfony\Component\Security\Core\User\UserInterface', array(), array(), $class);
        
$account
            
->expects($this->any())
            ->
method('getUsername')
            ->
will($this->returnValue($username))
        ;

        return 
$account;
    }

    protected function 
getStrategy(array $roles = array(), $authenticationStatus 'fullFledged')
    {
        
$roleHierarchy $this->getMock('Symfony\Component\Security\Core\Role\RoleHierarchyInterface');
        
$roleHierarchy
            
->expects($this->once())
            ->
method('getReachableRoles')
            ->
with($this->equalTo(array('foo')))
            ->
will($this->returnValue($roles))
        ;

        
$trustResolver $this->getMock('Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolver', array(), array(''''));

        
$trustResolver
            
->expects($this->at(0))
            ->
method('isAnonymous')
            ->
will($this->returnValue('anonymous' === $authenticationStatus))
        ;

        if (
'fullFledged' === $authenticationStatus) {
            
$trustResolver
                
->expects($this->once())
                ->
method('isFullFledged')
                ->
will($this->returnValue(true))
            ;
            
$trustResolver
                
->expects($this->never())
                ->
method('isRememberMe')
            ;
        } elseif (
'rememberMe' === $authenticationStatus) {
            
$trustResolver
                
->expects($this->once())
                ->
method('isFullFledged')
                ->
will($this->returnValue(false))
            ;
            
$trustResolver
                
->expects($this->once())
                ->
method('isRememberMe')
                ->
will($this->returnValue(true))
            ;
        } else {
            
$trustResolver
                
->expects($this->at(1))
                ->
method('isAnonymous')
                ->
will($this->returnValue(true))
            ;
            
$trustResolver
                
->expects($this->once())
                ->
method('isFullFledged')
                ->
will($this->returnValue(false))
            ;
            
$trustResolver
                
->expects($this->once())
                ->
method('isRememberMe')
                ->
will($this->returnValue(false))
            ;
        }

        return new 
SecurityIdentityRetrievalStrategy($roleHierarchy$trustResolver);
    }
}

class 
CustomUserImpl
{
    protected 
$name;

    public function 
__construct($name)
    {
        
$this->name $name;
    }

    public function 
__toString()
    {
        return 
$this->name;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0962 ]--