]> source.dussan.org Git - nextcloud-server.git/commitdiff
use executeAudited, add table name to assert message, skip schema changing test on...
authorJörn Friedrich Dreyer <jfd@butonic.de>
Tue, 18 Jun 2013 16:24:48 +0000 (18:24 +0200)
committerJörn Friedrich Dreyer <jfd@butonic.de>
Fri, 28 Jun 2013 18:13:48 +0000 (20:13 +0200)
tests/lib/dbschema.php

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