!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/selenium/   drwxr-xr-x
Free 9.18 GB of 93.48 GB (9.83%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     PmaSeleniumTableStructureTest.php (4.05 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Selenium TestCase for table related tests
 *
 * @package    PhpMyAdmin-test
 * @subpackage Selenium
 */

require_once 'TestBase.php';

/**
 * PmaSeleniumTableStructureTest class
 *
 * @package    PhpMyAdmin-test
 * @subpackage Selenium
 * @group      selenium
 */
class PMA_SeleniumTableStructureTest extends PMA_SeleniumBase
{
    
/**
     * Setup the browser environment to run the selenium test case
     *
     * @return void
     */
    
public function setUp()
    {
        
parent::setUp();
        
$this->dbQuery(
            
"CREATE TABLE `test_table` ("
            
" `id` int(11) NOT NULL AUTO_INCREMENT,"
            
" `val` int(11) NOT NULL,"
            
" `val2` int(11) NOT NULL,"
            
" PRIMARY KEY (`id`)"
            
")"
        
);
    }

    
/**
     * setUp function that can use the selenium session (called before each test)
     *
     * @return void
     */
    
public function setUpPage()
    {
        
$this->login();
        
$this->waitForElement('byLinkText'$this->database_name)->click();

        
$this->navigateTable('test_table');

        
$this->waitForElement(
            
"byXPath",
            
"(//a[contains(., 'Structure')])"
        
)->click();

        
$this->waitForElement("byId""tablestructure");
    }

    
/**
     * Test for adding a new column
     *
     * @return void
     *
     * @group large
     */
    
public function testAddColumn()
    {
        
$this->byCssSelector("label[for='field_where_after']")->click();
        
$this->byCssSelector("input[value='Go']")->click();

        
$this->waitForElement("byClassName""append_fields_form");

        
$this->byId("field_0_1")->value('val3');
        
$this->byCssSelector("input[name='do_save_data']")->click();

        
$this->waitForElement(
            
"byXPath",
            
"//div[@class='success' and contains(., "
            
"'Table test_table has been altered successfully')]"
        
);

        
$this->byLinkText("Structure")->click();
        
$this->waitForElement("byId""tablestructure");

        
$this->assertEquals(
            
"val3",
            
$this->byCssSelector('label[for=checkbox_row_2]')->text()
        );

        
$this->assertEquals(
            
"int(11)",
            
$this->getCellByTableId('tablestructure'24)
        );
    }

    
/**
     * Test for changing a column
     *
     * @return void
     *
     * @group large
     */
    
public function testChangeColumn()
    {
        
$this->byXPath("(//a[contains(., 'Change')])[2]")->click();

        
$this->waitForElement("byClassName""append_fields_form");

        
$this->assertEquals("val"$this->byId("field_0_1")->value());
        
$this->byId("field_0_1")->clear();
        
$this->byId("field_0_1")->value('val3');
        
$this->byCssSelector("input[name='do_save_data']")->click();

        
$this->waitForElement(
            
"byXPath",
            
"//div[@class='success' and contains(., "
            
"'Table test_table has been altered successfully')]"
        
);

        
$this->byLinkText("Structure")->click();
        
$this->waitForElement("byId""tablestructure");

        
$this->assertEquals(
            
"val3",
            
$this->byCssSelector('label[for=checkbox_row_2]')->text()
        );
    }

    
/**
     * Test for dropping columns
     *
     * @return void
     *
     * @group large
     */
    
public function testDropColumns()
    {
        
$this->byCssSelector('label[for=checkbox_row_2]')->click();
        
$this->byCssSelector('label[for=checkbox_row_3]')->click();
        
$this->byXPath(
            
"//button[@class='mult_submit' and contains(., 'Drop')]"
        
)->click();

        
$this->waitForElement(
            
"byCssSelector""input[id='buttonYes']"
        
)->click();

        
$this->waitForElement(
            
"byXPath",
            
"//div[@class='success' and contains(., "
            
"'Your SQL query has been executed successfully')]"
        
);

        
$this->assertFalse(
            
$this->isElementPresent(
                
'byCssSelector''label[for=checkbox_row_2]'
            
)
        );
    }
}

:: 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.0049 ]--