2012-10-12 17:47:35 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2013-01-24 19:47:17 +04:00
|
|
|
class Test_DBSchema extends PHPUnit_Framework_TestCase {
|
2013-06-18 20:24:48 +04:00
|
|
|
protected $schema_file = 'static://test_db_scheme';
|
|
|
|
protected $schema_file2 = 'static://test_db_scheme2';
|
2012-10-12 17:47:35 +04:00
|
|
|
protected $table1;
|
|
|
|
protected $table2;
|
|
|
|
|
|
|
|
public function setUp() {
|
|
|
|
$dbfile = OC::$SERVERROOT.'/tests/data/db_structure.xml';
|
|
|
|
$dbfile2 = OC::$SERVERROOT.'/tests/data/db_structure2.xml';
|
|
|
|
|
2013-08-15 10:49:19 +04:00
|
|
|
$r = '_'.OC_Util::generateRandomBytes('4').'_';
|
2012-10-12 17:47:35 +04:00
|
|
|
$content = file_get_contents( $dbfile );
|
|
|
|
$content = str_replace( '*dbprefix*', '*dbprefix*'.$r, $content );
|
2013-06-18 20:24:48 +04:00
|
|
|
file_put_contents( $this->schema_file, $content );
|
2012-10-12 17:47:35 +04:00
|
|
|
$content = file_get_contents( $dbfile2 );
|
|
|
|
$content = str_replace( '*dbprefix*', '*dbprefix*'.$r, $content );
|
2013-06-18 20:24:48 +04:00
|
|
|
file_put_contents( $this->schema_file2, $content );
|
2012-10-12 17:47:35 +04:00
|
|
|
|
2013-06-18 20:24:48 +04:00
|
|
|
$prefix = OC_Config::getValue( "dbtableprefix", "oc_" );
|
|
|
|
|
|
|
|
$this->table1 = $prefix.$r.'cntcts_addrsbks';
|
|
|
|
$this->table2 = $prefix.$r.'cntcts_cards';
|
2012-10-12 17:47:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown() {
|
2013-06-18 20:24:48 +04:00
|
|
|
unlink($this->schema_file);
|
|
|
|
unlink($this->schema_file2);
|
2012-10-12 17:47:35 +04:00
|
|
|
}
|
|
|
|
|
2012-10-12 20:49:47 +04:00
|
|
|
// everything in one test, they depend on each other
|
2013-06-10 11:31:22 +04:00
|
|
|
/**
|
|
|
|
* @medium
|
|
|
|
*/
|
2012-10-12 17:47:35 +04:00
|
|
|
public function testSchema() {
|
|
|
|
$this->doTestSchemaCreating();
|
|
|
|
$this->doTestSchemaChanging();
|
|
|
|
$this->doTestSchemaDumping();
|
|
|
|
$this->doTestSchemaRemoving();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function doTestSchemaCreating() {
|
2013-06-18 20:24:48 +04:00
|
|
|
OC_DB::createDbFromStructure($this->schema_file);
|
2012-10-12 17:47:35 +04:00
|
|
|
$this->assertTableExist($this->table1);
|
|
|
|
$this->assertTableExist($this->table2);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function doTestSchemaChanging() {
|
2013-06-18 20:24:48 +04:00
|
|
|
OC_DB::updateDbFromStructure($this->schema_file2);
|
2012-10-12 17:47:35 +04:00
|
|
|
$this->assertTableExist($this->table2);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function doTestSchemaDumping() {
|
|
|
|
$outfile = 'static://db_out.xml';
|
|
|
|
OC_DB::getDbStructure($outfile);
|
|
|
|
$content = file_get_contents($outfile);
|
|
|
|
$this->assertContains($this->table1, $content);
|
|
|
|
$this->assertContains($this->table2, $content);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function doTestSchemaRemoving() {
|
2013-06-18 20:24:48 +04:00
|
|
|
OC_DB::removeDBStructure($this->schema_file);
|
2012-10-12 17:47:35 +04:00
|
|
|
$this->assertTableNotExist($this->table1);
|
|
|
|
$this->assertTableNotExist($this->table2);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tableExist($table) {
|
|
|
|
|
|
|
|
switch (OC_Config::getValue( 'dbtype', 'sqlite' )) {
|
|
|
|
case 'sqlite':
|
|
|
|
case 'sqlite3':
|
|
|
|
$sql = "SELECT name FROM sqlite_master "
|
2013-06-18 20:24:48 +04:00
|
|
|
. "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));
|
2012-10-12 17:47:35 +04:00
|
|
|
break;
|
|
|
|
case 'mysql':
|
2013-06-18 20:24:48 +04:00
|
|
|
$sql = 'SHOW TABLES LIKE ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($table));
|
2012-10-12 17:47:35 +04:00
|
|
|
break;
|
|
|
|
case 'pgsql':
|
2013-06-18 20:24:48 +04:00
|
|
|
$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));
|
2013-02-15 00:59:24 +04:00
|
|
|
break;
|
2013-06-14 14:12:32 +04:00
|
|
|
case 'oci':
|
2013-06-18 20:24:48 +04:00
|
|
|
$sql = 'SELECT TABLE_NAME FROM USER_TABLES WHERE TABLE_NAME = ?';
|
2013-06-14 14:12:32 +04:00
|
|
|
$result = \OC_DB::executeAudited($sql, array($table));
|
|
|
|
break;
|
2013-02-15 00:59:24 +04:00
|
|
|
case 'mssql':
|
2013-06-18 20:24:48 +04:00
|
|
|
$sql = 'SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($table));
|
2012-10-12 17:47:35 +04:00
|
|
|
break;
|
|
|
|
}
|
2013-06-18 20:24:48 +04:00
|
|
|
|
2013-12-17 04:28:05 +04:00
|
|
|
$name = $result->fetchOne();
|
2013-06-18 20:24:48 +04:00
|
|
|
if ($name === $table) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2012-10-12 17:47:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function assertTableExist($table) {
|
2013-06-18 20:24:48 +04:00
|
|
|
$this->assertTrue($this->tableExist($table), 'Table ' . $table . ' does not exist');
|
2012-10-12 17:47:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function assertTableNotExist($table) {
|
|
|
|
$type=OC_Config::getValue( "dbtype", "sqlite" );
|
|
|
|
if( $type == 'sqlite' || $type == 'sqlite3' ) {
|
|
|
|
// sqlite removes the tables after closing the DB
|
2013-06-18 20:24:48 +04:00
|
|
|
} else {
|
|
|
|
$this->assertFalse($this->tableExist($table), 'Table ' . $table . ' exists.');
|
2012-10-12 17:47:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|