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.
|
|
|
|
*/
|
|
|
|
|
2016-05-19 10:27:21 +03:00
|
|
|
namespace Test\DB;
|
|
|
|
|
2016-06-29 15:54:41 +03:00
|
|
|
use Doctrine\DBAL\Platforms\SqlitePlatform;
|
2016-05-19 10:27:21 +03:00
|
|
|
use OC_DB;
|
2017-01-04 17:54:44 +03:00
|
|
|
use OCP\ITempManager;
|
2014-10-23 16:32:37 +04:00
|
|
|
use OCP\Security\ISecureRandom;
|
2016-06-29 15:54:41 +03:00
|
|
|
use Test\TestCase;
|
2014-10-23 16:32:37 +04:00
|
|
|
|
2015-11-03 03:52:41 +03:00
|
|
|
/**
|
2016-05-19 10:27:21 +03:00
|
|
|
* Class DBSchemaTest
|
2015-11-03 03:52:41 +03:00
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*/
|
2016-06-29 15:54:41 +03:00
|
|
|
class DBSchemaTest extends TestCase {
|
2017-01-04 17:54:44 +03:00
|
|
|
protected $schema_file;
|
|
|
|
protected $schema_file2;
|
2012-10-12 17:47:35 +04:00
|
|
|
protected $table1;
|
|
|
|
protected $table2;
|
2017-01-04 17:54:44 +03:00
|
|
|
/** @var ITempManager */
|
|
|
|
protected $tempManager;
|
2012-10-12 17:47:35 +04:00
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2014-11-11 00:59:50 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
2017-01-04 17:54:44 +03:00
|
|
|
$this->tempManager = \OC::$server->getTempManager();
|
|
|
|
$this->schema_file = $this->tempManager->getTemporaryFile();
|
|
|
|
$this->schema_file2 = $this->tempManager->getTemporaryFile();
|
|
|
|
|
2016-05-19 10:27:21 +03:00
|
|
|
$dbfile = \OC::$SERVERROOT.'/tests/data/db_structure.xml';
|
|
|
|
$dbfile2 = \OC::$SERVERROOT.'/tests/data/db_structure2.xml';
|
2012-10-12 17:47:35 +04:00
|
|
|
|
2016-01-11 22:05:30 +03:00
|
|
|
$r = '_' . \OC::$server->getSecureRandom()->
|
2014-10-23 16:32:37 +04:00
|
|
|
generate(4, ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_DIGITS) . '_';
|
2020-04-09 17:07:47 +03:00
|
|
|
$content = file_get_contents($dbfile);
|
|
|
|
$content = str_replace('*dbprefix*', '*dbprefix*'.$r, $content);
|
|
|
|
file_put_contents($this->schema_file, $content);
|
|
|
|
$content = file_get_contents($dbfile2);
|
|
|
|
$content = str_replace('*dbprefix*', '*dbprefix*'.$r, $content);
|
|
|
|
file_put_contents($this->schema_file2, $content);
|
2012-10-12 17:47:35 +04:00
|
|
|
|
2014-05-12 15:54:20 +04:00
|
|
|
$this->table1 = $r.'cntcts_addrsbks';
|
|
|
|
$this->table2 = $r.'cntcts_cards';
|
2012-10-12 17:47:35 +04:00
|
|
|
}
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function tearDown(): void {
|
2013-06-18 20:24:48 +04:00
|
|
|
unlink($this->schema_file);
|
|
|
|
unlink($this->schema_file2);
|
2014-11-11 00:59:50 +03:00
|
|
|
|
|
|
|
parent::tearDown();
|
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->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 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);
|
|
|
|
}
|
|
|
|
|
2014-02-19 12:31:54 +04:00
|
|
|
/**
|
|
|
|
* @param string $table
|
|
|
|
*/
|
2012-10-12 17:47:35 +04:00
|
|
|
public function assertTableExist($table) {
|
2014-05-12 15:54:20 +04:00
|
|
|
$this->assertTrue(OC_DB::tableExists($table), 'Table ' . $table . ' does not exist');
|
2012-10-12 17:47:35 +04:00
|
|
|
}
|
|
|
|
|
2014-02-19 12:31:54 +04:00
|
|
|
/**
|
|
|
|
* @param string $table
|
|
|
|
*/
|
2012-10-12 17:47:35 +04:00
|
|
|
public function assertTableNotExist($table) {
|
2016-01-07 12:26:00 +03:00
|
|
|
$platform = \OC::$server->getDatabaseConnection()->getDatabasePlatform();
|
2016-06-29 15:54:41 +03:00
|
|
|
if ($platform instanceof SqlitePlatform) {
|
2012-10-12 17:47:35 +04:00
|
|
|
// sqlite removes the tables after closing the DB
|
2018-01-25 13:23:12 +03:00
|
|
|
$this->addToAssertionCount(1);
|
2013-06-18 20:24:48 +04:00
|
|
|
} else {
|
2014-05-12 15:54:20 +04:00
|
|
|
$this->assertFalse(OC_DB::tableExists($table), 'Table ' . $table . ' exists.');
|
2012-10-12 17:47:35 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|