56 lines
1.2 KiB
PHP
56 lines
1.2 KiB
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* tests for correctness of SQL parser data
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
|
|
/*
|
|
* Include to test.
|
|
*/
|
|
require_once 'libraries/sqlparser.data.php';
|
|
|
|
class PMA_SQL_parser_data_test extends PHPUnit_Framework_TestCase
|
|
{
|
|
private function _assertSorted($array)
|
|
{
|
|
$copy = $array;
|
|
sort($copy);
|
|
$difference = array_diff_assoc($array, $copy);
|
|
$this->assertEquals($difference, array());
|
|
}
|
|
|
|
private function _assertParserData($name)
|
|
{
|
|
$this->_assertSorted($GLOBALS[$name]);
|
|
}
|
|
|
|
public function testPMA_SQPdata_function_name()
|
|
{
|
|
$this->_assertParserData('PMA_SQPdata_function_name');
|
|
}
|
|
|
|
public function testPMA_SQPdata_column_attrib()
|
|
{
|
|
$this->_assertParserData('PMA_SQPdata_column_attrib');
|
|
}
|
|
|
|
public function testPMA_SQPdata_reserved_word()
|
|
{
|
|
$this->_assertParserData('PMA_SQPdata_reserved_word');
|
|
}
|
|
|
|
public function testPMA_SQPdata_forbidden_word()
|
|
{
|
|
$this->_assertParserData('PMA_SQPdata_forbidden_word');
|
|
}
|
|
|
|
public function testPMA_SQPdata_column_type()
|
|
{
|
|
$this->_assertParserData('PMA_SQPdata_column_type');
|
|
}
|
|
|
|
}
|
|
?>
|