!C99Shell v. 2.6 Mod (06.03.2026)!

Software: Apache. PHP/7.2.34 

uname -a: Linux li456-155.members.linode.com 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01
UTC 2023 x86_64
 

uid=48(apache) gid=48(apache) groups=48(apache) 

Safe-mode: OFF (not secure)

/usr/share/phpMyAdmin/test/libraries/sql-formatter/lib/   drwxr-xr-x
Free 1.68 GB of 47.23 GB (3.56%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Bind    Proc.    FTP brute    Sec.    SQL    PHP-code    Self remove    Logout    


Viewing file:     SqlFormatter_test.php (2.53 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* tests for sql-formatter/lib/SqlFormatter.php
*
* @package PhpMyAdmin-test
*/

/*
* Include to test.
*/
require_once 'libraries/sql-formatter/lib/SqlFormatter.php';

/**
* tests for SqlFormatter
*
* @package PhpMyAdmin-test
*/
class SqlFormatter_Test extends PHPUnit_Framework_TestCase
{
    
/**
    * Data provider for testSqlFormatter_format
    *
    * @return array with test data
    */
    
public function formatDataProvider() {
        return array(
array(
"SELECT * FROM `test`",
"SELECT 
    * 
FROM 
    `test`"
,
),

array(
"SELECT customer_id, customer_name, COUNT(order_id) as total FROM customers
INNER JOIN orders ON customers.customer_id = orders.customer_id GROUP BY customer_id,
customer_name HAVING COUNT(order_id) > 5 ORDER BY COUNT(order_id) DESC;"
,
"SELECT 
    customer_id, 
    customer_name, 
    COUNT(order_id) as total 
FROM 
    customers 
    INNER JOIN orders ON customers.customer_id = orders.customer_id 
GROUP BY 
    customer_id, 
    customer_name 
HAVING 
    COUNT(order_id) > 5 
ORDER BY 
    COUNT(order_id) DESC;"
),

array(
"SELECT a,b as c FROM `ab`; UPDATE `cd` SET `col` = REPLACE(col, 'find', 'replace')
WHERE row_id in (SELECT row_id FROM new_table WHERE col = 's' AND col2 = '3') LIMIT 256"
,
"SELECT 
    a, 
    b as c 
FROM 
    `ab`; 
UPDATE 
    `cd` 
SET 
    `col` = REPLACE(col, 'find', 'replace') 
WHERE 
    row_id in (
        SELECT 
            row_id 
        FROM 
            new_table 
        WHERE 
            col = 's' 
            AND col2 = '3'
    ) 
LIMIT 
    256"
),

array(
"INSERT INTO `a_long_table_name_it_is_really_log_but_still_not_that_long`
(a, b, c, d, e, f, g, a, b, c, d, e, f, c, d, e) 
VALUES (1, 0, '', 1, NOW(), NOW(), 0),
(1, 0, 'helloabcdefgijk', 1, 'hello_world_again', NOW(), 0)"
,
"INSERT INTO `a_long_table_name_it_is_really_log_but_still_not_that_long` (
    a, b, c, d, e, f, g, a, b, c, d, e, f, c, d, e

VALUES 
    (1, 0, '', 1, NOW(), NOW(), 0), 
    (
        1, 0, 'helloabcdefgijk', 1, 'hello_world_again', 
        NOW(), 0
    )"
),

array(
"ALTER TABLE `PREFIX_product` DROP `reduction_price`,DROP `reduction_percent`, 
DROP `reduction_from`, DROP `reduction_to`"
,
"ALTER TABLE 
    `PREFIX_product` 
DROP 
    `reduction_price`, 
DROP 
    `reduction_percent`, 
DROP 
    `reduction_from`, 
DROP 
    `reduction_to`"
),
        );
    }

    
/**
    * Test for SqlFormatter::format
    *
    * @return void
    *
    * @dataProvider formatDataProvider
    */
    
public function testSqlFormatter_format($query$expected)
    {
        
SqlFormatter::$tab "\t";
        
$this->assertEquals(
            
$expected,
            
SqlFormatter::format($queryfalse)
        );
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

c99shell Mod — c99shell.com © 2026
Generation time: 0.0448