!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.4.16. PHP/5.4.16 

uname -a: Linux roko-bkp 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64 

uid=48(apache) gid=48(apache) groups=48(apache),1003(webmaster) 

Safe-mode: OFF (not secure)

/usr/share/phpMyAdmin/test/libraries/   drwxr-xr-x
Free 9.18 GB of 93.48 GB (9.82%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     PMA_tbl_indexes_test.php (6.6 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Tests for libraries/tbl_indexes.lib.php
 *
 * @package PhpMyAdmin-test
 */

/*
 * Include to test.
 */
require_once 'libraries/tbl_indexes.lib.php';
require_once 
'libraries/Util.class.php';
require_once 
'libraries/Index.class.php';
require_once 
'libraries/Message.class.php';
require_once 
'libraries/database_interface.inc.php';
require_once 
'libraries/php-gettext/gettext.inc';
require_once 
'libraries/relation.lib.php';
require_once 
'libraries/url_generating.lib.php';
require_once 
'libraries/Theme.class.php';
require_once 
'libraries/sanitizing.lib.php';

/**
 * Tests for libraries/tbl_indexes.lib.php
 *
 * @package PhpMyAdmin-test
 */
class PMA_TblIndexTest extends PHPUnit_Framework_TestCase
{

    
/**
     * Setup function for test cases
     *
     * @access protected
     * @return void
     */
    
protected function setUp()
    {
        
/**
         * SET these to avoid undefined index error
         */
        
$GLOBALS['server'] = 1;
        
$GLOBALS['cfg']['Server']['pmadb'] = '';
        
$GLOBALS['pmaThemeImage'] = 'theme/';
        
$GLOBALS['cfg']['ServerDefault'] = "server";
        
$GLOBALS['cfg']['ShowHint'] = true;

        
$dbi $this->getMockBuilder('PMA_DatabaseInterface')
            ->
disableOriginalConstructor()
            ->
getMock();

        
$indexs = array(
            array(
                
"Schema" => "Schema1",
                
"Key_name"=>"Key_name1",
                
"Column_name"=>"Column_name1"
            
),
            array(
                
"Schema" => "Schema2",
                
"Key_name"=>"Key_name2",
                
"Column_name"=>"Column_name2"
            
),
            array(
                
"Schema" => "Schema3",
                
"Key_name"=>"Key_name3",
                
"Column_name"=>"Column_name3"
            
),
        );

        
$dbi->expects($this->any())->method('getTableIndexes')
            ->
will($this->returnValue($indexs));

        
$GLOBALS['dbi'] = $dbi;

        
//$_SESSION
        
$_SESSION['PMA_Theme'] = PMA_Theme::load('./themes/pmahomme');
        
$_SESSION['PMA_Theme'] = new PMA_Theme();
    }

    
/**
     * Tests for PMA_getSqlQueryForIndexCreateOrEdit() method.
     *
     * @return void
     * @test
     */
    
public function testPMAGetSqlQueryForIndexCreateOrEdit()
    {
        
$db "pma_db";
        
$table "pma_table";
        
$index = new PMA_Index();
        
$error false;

        
$_REQUEST['old_index'] = "PRIMARY";

        
$sql PMA_getSqlQueryForIndexCreateOrEdit(
            
$db$table$index$error
        
);

        
$this->assertEquals(
            
"ALTER TABLE `pma_db`.`pma_table` DROP PRIMARY KEY, ADD UNIQUE ;",
            
$sql
        
);
    }

    
/**
     * Tests for PMA_getNumberOfFieldsForForm() method.
     *
     * @return void
     * @test
     */
    
public function testPMAGetNumberOfFieldsForForm()
    {
        
$index = new PMA_Index();

        
$add_fields PMA_getNumberOfFieldsForForm($index);

        
$this->assertEquals(
            
0,
            
$add_fields
        
);

        
$_REQUEST['create_index'] = true;
        
$_REQUEST['added_fields'] = 2;
        
$add_fields PMA_getNumberOfFieldsForForm($index);
        
$this->assertEquals(
            
$_REQUEST['added_fields'],
            
$add_fields
        
);
    }

    
/**
     * Tests for PMA_getFormParameters() method.
     *
     * @return void
     * @test
     */
    
public function testPMAGetFormParameters()
    {
        
$db "pma_db";
        
$table "pma_table";

        
$form_params PMA_getFormParameters($db$table);
        
$expect = array(
            
'db' => $db,
            
'table' => $table,
        );
        
$this->assertEquals(
            
$expect,
            
$form_params
        
);

        
$_REQUEST['index'] = "index";
        
$form_params PMA_getFormParameters($db$table);
        
$expect = array(
            
'db' => $db,
            
'table' => $table,
            
'old_index' => $_REQUEST['index'],
        );
        
$this->assertEquals(
            
$expect,
            
$form_params
        
);

        
$_REQUEST['old_index'] = "old_index";
        
$form_params PMA_getFormParameters($db$table);
        
$expect = array(
            
'db' => $db,
            
'table' => $table,
            
'old_index' => $_REQUEST['old_index'],
        );
        
$this->assertEquals(
            
$expect,
            
$form_params
        
);

        
$_REQUEST['create_index'] = "create_index";
        
$form_params PMA_getFormParameters($db$table);
        
$expect = array(
            
'db' => $db,
            
'table' => $table,
            
'create_index' => 1,
        );
        
$this->assertEquals(
            
$expect,
            
$form_params
        
);
    }

    
/**
     * Tests for PMA_getHtmlForIndexForm() method.
     *
     * @return void
     * @test
     */
    
public function testPMAGetHtmlForIndexForm()
    {
        
$fields = array("field_name" => "field_type");
        
$index = new PMA_Index();
        
$form_params = array(
            
'db' => 'db',
            
'table' => 'table',
            
'create_index' => 1,
        );
        
$add_fields 3;

        
$html PMA_getHtmlForIndexForm($fields$index$form_params$add_fields);

        
//PMA_URL_getHiddenInputs
        
$this->assertContains(
            
PMA_URL_getHiddenInputs($form_params),
            
$html
        
);

        
//Index name
        
$this->assertContains(
            
__('Index name:'),
            
$html
        
);
        
$doc_html PMA_Util::showHint(
            
PMA_Message::notice(
                
__(
                    
'"PRIMARY" <b>must</b> be the name of'
                    
' and <b>only of</b> a primary key!'
                
)
            )
        );
        
$this->assertContains(
            
$doc_html,
            
$html
        
);

        
//Index name
        
$this->assertContains(
            
__('Index name:'),
            
$html
        
);
        
$this->assertContains(
            
PMA_Util::showMySQLDocu('ALTER_TABLE'),
            
$html
        
);

        
//generateIndexSelector
        
$this->assertContains(
            
$index->generateIndexChoiceSelector(false),
            
$html
        
);

        
//items
        
$this->assertContains(
            
__('Column'),
            
$html
        
);
        
$this->assertContains(
            
__('Size'),
            
$html
        
);
        
$this->assertContains(
            
sprintf(__('Add %s column(s) to index'), 1),
            
$html
        
);

        
//$field_name & $field_type
        
$this->assertContains(
            
"field_name",
            
$html
        
);
        
$this->assertContains(
            
"field_type",
            
$html
        
);
    }
}
?>

:: 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 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0051 ]--