!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_server_replication_test.php (7.99 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * tests for replication_gui.lib.php
 *
 * @package PhpMyAdmin-test
 */

/*
 * Include to test.
 */
require_once 'libraries/Util.class.php';
require_once 
'libraries/php-gettext/gettext.inc';
require_once 
'libraries/url_generating.lib.php';
require_once 
'libraries/Tracker.class.php';
require_once 
'libraries/database_interface.inc.php';
require_once 
'libraries/replication.inc.php';
require_once 
'libraries/replication_gui.lib.php';
require_once 
'libraries/Theme.class.php';
require_once 
'libraries/Message.class.php';
require_once 
'libraries/sanitizing.lib.php';
require_once 
'libraries/sqlparser.lib.php';
require_once 
'libraries/js_escape.lib.php';

/**
 * PMA_Serverreplication_Test class
 *
 * this class is for testing replication_gui.lib.php functions
 *
 * @package PhpMyAdmin-test
 */
class PMA_ServerReplication_Test extends PHPUnit_Framework_TestCase
{
    
/**
     * Prepares environment for the test.
     *
     * @return void
     */
    
public function setUp()
    {
        
//$_REQUEST
        
$_REQUEST['log'] = "index1";
        
$_REQUEST['pos'] = 3;
        
$_REQUEST['mr_adduser'] = "mr_adduser";

        
//$GLOBALS
        
$GLOBALS['cfg']['MaxRows'] = 10;
        
$GLOBALS['cfg']['ServerDefault'] = "server";
        
$GLOBALS['cfg']['RememberSorting'] = true;
        
$GLOBALS['cfg']['SQP'] = array();
        
$GLOBALS['cfg']['MaxCharactersInDisplayedSQL'] = 1000;
        
$GLOBALS['cfg']['ShowSQL'] = true;
        
$GLOBALS['cfg']['TableNavigationLinksMode'] = 'icons';
        
$GLOBALS['cfg']['LimitChars'] = 100;
        
$GLOBALS['cfg']['DBG']['sql'] = false;
        
$GLOBALS['cfg']['ShowHint'] = true;

        
$GLOBALS['table'] = "table";
        
$GLOBALS['url_params'] = array();
        
$GLOBALS['pmaThemeImage'] = 'image';

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

        
//Mock DBI

        
$slave_host = array(
            array(
'Server_id'=>'Server_id1''Host'=>'Host1'),
            array(
'Server_id'=>'Server_id2''Host'=>'Host2'),
        );

        
$fetchResult = array(
            array(
                
"SHOW SLAVE HOSTS",
                
null,
                
null,
                
null,
                
0,
                
$slave_host
            
),
        );

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

        
$dbi->expects($this->any())->method('fetchResult')
            ->
will($this->returnValueMap($fetchResult));

        
$fields_info = array(
            
"Host" => array(
                
"Field" => "host",
                
"Type" => "char(60)",
                
"Null" => "NO",
            )
        );
        
$dbi->expects($this->any())->method('getColumns')
            ->
will($this->returnValue($fields_info));

        
$GLOBALS['dbi'] = $dbi;
    }

    
/**
     * Test for PMA_getHtmlForMasterReplication
     *
     * @return void
     * @group medium
     */
    
public function testPMAGetHtmlForMasterReplication()
    {
        global 
$master_variables_alerts;
        global 
$master_variables_oks;
        global 
$strReplicationStatus_master;

        
$master_variables_alerts null;
        
$master_variables_oks null;
        
$strReplicationStatus_master null;

        
//Call the test function
        
$html PMA_getHtmlForMasterReplication();

        
//validate 1: Master replication
        
$this->assertContains(
            
'<legend>Master replication</legend>',
            
$html
        
);
        
$this->assertContains(
            
'This server is configured as master in a replication process.',
            
$html
        
);

        
//validate 2: PMA_getHtmlForReplicationStatusTable
        
$this->assertContains(
            
'<div id="replication_master_section"',
            
$html
        
);
        
//$master_variables
        
$this->assertContains(
            
"Binlog_Do_DB",
            
$html
        
);
        
$this->assertContains(
            
"Binlog_Ignore_DB",
            
$html
        
);
        
//$server_master_replication
        
$this->assertContains(
            
"master-bin.000030",
            
$html
        
);

        
//validate 3: PMA_getHtmlForReplicationSlavesTable
        
$this->assertContains(
            
'replication_slaves_section',
            
$html
        
);
        
$this->assertContains(
            
'<th>Server ID</th>',
            
$html
        
);
        
$this->assertContains(
            
'<th>Host</th>',
            
$html
        
);
        
//slave host
        
$this->assertContains(
            
'<td class="value">Server_id1</td>',
            
$html
        
);
        
$this->assertContains(
            
'<td class="value">Server_id2</td>',
            
$html
        
);
        
$this->assertContains(
            
'<td class="value">Host1</td>',
            
$html
        
);
        
$this->assertContains(
            
'<td class="value">Host2</td>',
            
$html
        
);
        
//Notice
        
$this->assertContains(
            
'Only slaves started with the',
            
$html
        
);

        
//validate 4: navigation URL
        
$this->assertContains(
            
'<a href="server_replication.php',
            
$html
        
);
        
$this->assertContains(
            
'Add slave replication user',
            
$html
        
);

        
//validate 5: 'Add replication slave user' form
        
$this->assertContains(
            
'<div id="master_addslaveuser_gui">',
            
$html
        
);
    }

    
/**
     * Test for PMA_getHtmlForNotServerReplication
     *
     * @return void
     */
    
public function testPMAGetHtmlForNotServerReplication()
    {
        
//Call the test function
        
$html PMA_getHtmlForNotServerReplication();

        
$this->assertContains(
            
'<legend>Master replication</legend>',
            
$html
        
);
        
$this->assertContains(
            
'This server is not configured as master in a replication process.',
            
$html
        
);
    }

    
/**
     * Test for PMA_getHtmlForSlaveConfiguration
     *
     * @return void
     */
    
public function testPMAGetHtmlForSlaveConfiguration()
    {
        global 
$server_slave_replication;

        
//Call the test function
        
$html PMA_getHtmlForSlaveConfiguration(
            
true,
            
$server_slave_replication
        
);

        
//legend
        
$this->assertContains(
            
'<legend>Slave replication</legend>',
            
$html
        
);
        
$this->assertContains(
            
'<div id="slave_configuration_gui">',
            
$html
        
);
        
//notice
        
$this->assertContains(
            
'Server is configured as slave in a replication process.',
            
$html
        
);
        
//slave session
        
$this->assertContains(
            
'<div id="replication_slave_section"',
            
$html
        
);
        
//variable
        
$this->assertContains(
            
'Master_SSL_CA_Path',
            
$html
        
);
        
$this->assertContains(
            
'Master_SSL_Cert',
            
$html
        
);
        
$this->assertContains(
            
'Master_SSL_Cipher',
            
$html
        
);
        
$this->assertContains(
            
'Seconds_Behind_Master',
            
$html
        
);
    }

    
/**
     * Test for PMA_getHtmlForReplicationChangeMaster
     *
     * @return void
     */
    
public function testPMAGetHtmlForReplicationChangeMaster()
    {
        
//Call the test function
        
$html PMA_getHtmlForReplicationChangeMaster("slave_changemaster");

        
$this->assertContains(
            
'<form method="post" action="server_replication.php">',
            
$html
        
);
        
$this->assertContains(
            
'Slave configuration',
            
$html
        
);
        
$this->assertContains(
            
'Change or reconfigure master server',
            
$html
        
);
        
$notice 'Make sure, you have unique server-id '
            
'in your configuration file (my.cnf)';
        
$this->assertContains(
            
$notice,
            
$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.0045 ]--