Merge pull request #3775 from owncloud/test_fixes_for_dbschema

use executeAudited, add table name to assert message, skip schema changi...
This commit is contained in:
Thomas Müller 2013-07-01 14:38:28 -07:00
commit c777026506
3 changed files with 64 additions and 62 deletions

View File

@ -941,18 +941,21 @@ class OC_DB {
* @return bool * @return bool
*/ */
public static function isError($result) { public static function isError($result) {
if(self::$backend==self::BACKEND_PDO and $result === false) { //MDB2 returns an MDB2_Error object
if (class_exists('PEAR') === true && PEAR::isError($result)) {
return true; return true;
}elseif(self::$backend==self::BACKEND_MDB2 and PEAR::isError($result)) {
return true;
}else{
return false;
} }
//PDO returns false on error (and throws an exception)
if (self::$backend===self::BACKEND_PDO and $result === false) {
return true;
}
return false;
} }
/** /**
* check if a result is an error and throws an exception, works with MDB2 and PDOException * check if a result is an error and throws an exception, works with MDB2 and PDOException
* @param mixed $result * @param mixed $result
* @param string message * @param string $message
* @return void * @return void
* @throws DatabaseException * @throws DatabaseException
*/ */
@ -968,12 +971,15 @@ class OC_DB {
} }
public static function getErrorCode($error) { public static function getErrorCode($error) {
if ( self::$backend==self::BACKEND_MDB2 and PEAR::isError($error) ) { if ( class_exists('PEAR') === true && PEAR::isError($error) ) {
$code = $error->getCode(); /** @var $error PEAR_Error */
} elseif ( self::$backend==self::BACKEND_PDO and self::$PDO ) { return $error->getCode();
$code = self::$PDO->errorCode();
} }
return $code; if ( self::$backend==self::BACKEND_PDO and self::$PDO ) {
return self::$PDO->errorCode();
}
return -1;
} }
/** /**
* returns the error code and message as a string for logging * returns the error code and message as a string for logging
@ -982,23 +988,24 @@ class OC_DB {
* @return string * @return string
*/ */
public static function getErrorMessage($error) { public static function getErrorMessage($error) {
if ( self::$backend==self::BACKEND_MDB2 and PEAR::isError($error) ) { if ( class_exists('PEAR') === true && PEAR::isError($error) ) {
$msg = $error->getCode() . ': ' . $error->getMessage(); $msg = $error->getCode() . ': ' . $error->getMessage();
$msg .= ' (' . $error->getDebugInfo() . ')'; $msg .= ' (' . $error->getDebugInfo() . ')';
} elseif (self::$backend==self::BACKEND_PDO and self::$PDO) {
return $msg;
}
if (self::$backend==self::BACKEND_PDO and self::$PDO) {
$msg = self::$PDO->errorCode() . ': '; $msg = self::$PDO->errorCode() . ': ';
$errorInfo = self::$PDO->errorInfo(); $errorInfo = self::$PDO->errorInfo();
if (is_array($errorInfo)) { if (is_array($errorInfo)) {
$msg .= 'SQLSTATE = '.$errorInfo[0] . ', '; $msg .= 'SQLSTATE = '.$errorInfo[0] . ', ';
$msg .= 'Driver Code = '.$errorInfo[1] . ', '; $msg .= 'Driver Code = '.$errorInfo[1] . ', ';
$msg .= 'Driver Message = '.$errorInfo[2]; $msg .= 'Driver Message = '.$errorInfo[2];
}else{
$msg = '';
} }
}else{ return $msg;
$msg = '';
} }
return $msg;
return '';
} }
/** /**

View File

@ -49,8 +49,9 @@
<field> <field>
<name>description</name> <name>description</name>
<type>clob</type> <type>text</type>
<notnull>false</notnull> <notnull>false</notnull>
<length>1024</length>
</field> </field>
<field> <field>

View File

@ -7,9 +7,8 @@
*/ */
class Test_DBSchema extends PHPUnit_Framework_TestCase { class Test_DBSchema extends PHPUnit_Framework_TestCase {
protected static $schema_file = 'static://test_db_scheme'; protected $schema_file = 'static://test_db_scheme';
protected static $schema_file2 = 'static://test_db_scheme2'; protected $schema_file2 = 'static://test_db_scheme2';
protected $test_prefix;
protected $table1; protected $table1;
protected $table2; protected $table2;
@ -20,19 +19,20 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase {
$r = '_'.OC_Util::generate_random_bytes('4').'_'; $r = '_'.OC_Util::generate_random_bytes('4').'_';
$content = file_get_contents( $dbfile ); $content = file_get_contents( $dbfile );
$content = str_replace( '*dbprefix*', '*dbprefix*'.$r, $content ); $content = str_replace( '*dbprefix*', '*dbprefix*'.$r, $content );
file_put_contents( self::$schema_file, $content ); file_put_contents( $this->schema_file, $content );
$content = file_get_contents( $dbfile2 ); $content = file_get_contents( $dbfile2 );
$content = str_replace( '*dbprefix*', '*dbprefix*'.$r, $content ); $content = str_replace( '*dbprefix*', '*dbprefix*'.$r, $content );
file_put_contents( self::$schema_file2, $content ); file_put_contents( $this->schema_file2, $content );
$this->test_prefix = $r; $prefix = OC_Config::getValue( "dbtableprefix", "oc_" );
$this->table1 = $this->test_prefix.'cntcts_addrsbks';
$this->table2 = $this->test_prefix.'cntcts_cards'; $this->table1 = $prefix.$r.'cntcts_addrsbks';
$this->table2 = $prefix.$r.'cntcts_cards';
} }
public function tearDown() { public function tearDown() {
unlink(self::$schema_file); unlink($this->schema_file);
unlink(self::$schema_file2); unlink($this->schema_file2);
} }
// everything in one test, they depend on each other // everything in one test, they depend on each other
@ -47,13 +47,13 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase {
} }
public function doTestSchemaCreating() { public function doTestSchemaCreating() {
OC_DB::createDbFromStructure(self::$schema_file); OC_DB::createDbFromStructure($this->schema_file);
$this->assertTableExist($this->table1); $this->assertTableExist($this->table1);
$this->assertTableExist($this->table2); $this->assertTableExist($this->table2);
} }
public function doTestSchemaChanging() { public function doTestSchemaChanging() {
OC_DB::updateDbFromStructure(self::$schema_file2); OC_DB::updateDbFromStructure($this->schema_file2);
$this->assertTableExist($this->table2); $this->assertTableExist($this->table2);
} }
@ -66,67 +66,61 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase {
} }
public function doTestSchemaRemoving() { public function doTestSchemaRemoving() {
OC_DB::removeDBStructure(self::$schema_file); OC_DB::removeDBStructure($this->schema_file);
$this->assertTableNotExist($this->table1); $this->assertTableNotExist($this->table1);
$this->assertTableNotExist($this->table2); $this->assertTableNotExist($this->table2);
} }
public function tableExist($table) { public function tableExist($table) {
$table = '*PREFIX*' . $table;
switch (OC_Config::getValue( 'dbtype', 'sqlite' )) { switch (OC_Config::getValue( 'dbtype', 'sqlite' )) {
case 'sqlite': case 'sqlite':
case 'sqlite3': case 'sqlite3':
$sql = "SELECT name FROM sqlite_master " $sql = "SELECT name FROM sqlite_master "
. "WHERE type = 'table' AND name != 'sqlite_sequence' " . "WHERE type = 'table' AND name = ? "
. "AND name != 'geometry_columns' AND name != 'spatial_ref_sys' " . "UNION ALL SELECT name FROM sqlite_temp_master "
. "UNION ALL SELECT name FROM sqlite_temp_master " . "WHERE type = 'table' AND name = ?";
. "WHERE type = 'table' AND name = '".$table."'"; $result = \OC_DB::executeAudited($sql, array($table, $table));
$query = OC_DB::prepare($sql);
$result = $query->execute(array());
$exists = $result && $result->fetchOne();
break; break;
case 'mysql': case 'mysql':
$sql = 'SHOW TABLES LIKE "'.$table.'"'; $sql = 'SHOW TABLES LIKE ?';
$query = OC_DB::prepare($sql); $result = \OC_DB::executeAudited($sql, array($table));
$result = $query->execute(array());
$exists = $result && $result->fetchOne();
break; break;
case 'pgsql': case 'pgsql':
$sql = "SELECT tablename AS table_name, schemaname AS schema_name " $sql = 'SELECT tablename AS table_name, schemaname AS schema_name '
. "FROM pg_tables WHERE schemaname NOT LIKE 'pg_%' " . 'FROM pg_tables WHERE schemaname NOT LIKE \'pg_%\' '
. "AND schemaname != 'information_schema' " . 'AND schemaname != \'information_schema\' '
. "AND tablename = '".$table."'"; . 'AND tablename = ?';
$query = OC_DB::prepare($sql); $result = \OC_DB::executeAudited($sql, array($table));
$result = $query->execute(array());
$exists = $result && $result->fetchOne();
break; break;
case 'oci': case 'oci':
$sql = 'SELECT table_name FROM user_tables WHERE table_name = ?'; $sql = 'SELECT TABLE_NAME FROM USER_TABLES WHERE TABLE_NAME = ?';
$result = \OC_DB::executeAudited($sql, array($table)); $result = \OC_DB::executeAudited($sql, array($table));
$exists = (bool)$result->fetchOne(); //oracle uses MDB2 and returns null
break; break;
case 'mssql': case 'mssql':
$sql = "SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = '{$table}'"; $sql = 'SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = ?';
$query = OC_DB::prepare($sql); $result = \OC_DB::executeAudited($sql, array($table));
$result = $query->execute(array());
$exists = $result && $result->fetchOne();
break; break;
} }
return $exists;
$name = $result->fetchOne(); //FIXME checking with '$result->numRows() === 1' does not seem to work?
if ($name === $table) {
return true;
} else {
return false;
}
} }
public function assertTableExist($table) { public function assertTableExist($table) {
$this->assertTrue($this->tableExist($table)); $this->assertTrue($this->tableExist($table), 'Table ' . $table . ' does not exist');
} }
public function assertTableNotExist($table) { public function assertTableNotExist($table) {
$type=OC_Config::getValue( "dbtype", "sqlite" ); $type=OC_Config::getValue( "dbtype", "sqlite" );
if( $type == 'sqlite' || $type == 'sqlite3' ) { if( $type == 'sqlite' || $type == 'sqlite3' ) {
// sqlite removes the tables after closing the DB // sqlite removes the tables after closing the DB
} } else {
else { $this->assertFalse($this->tableExist($table), 'Table ' . $table . ' exists.');
$this->assertFalse($this->tableExist($table));
} }
} }
} }