2014-04-17 18:12:48 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2014 Thomas Müller <deepdiver@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\DB;
|
|
|
|
|
2014-10-23 16:32:37 +04:00
|
|
|
use Doctrine\DBAL\Platforms\OraclePlatform;
|
|
|
|
|
2015-11-03 03:52:41 +03:00
|
|
|
/**
|
|
|
|
* Class MDB2SchemaManager
|
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*
|
|
|
|
* @package Test\DB
|
|
|
|
*/
|
2016-05-20 16:38:20 +03:00
|
|
|
class MDB2SchemaManagerTest extends \Test\TestCase {
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function tearDown(): void {
|
2014-08-20 17:57:30 +04:00
|
|
|
// do not drop the table for Oracle as it will create a bogus transaction
|
|
|
|
// that will break the following test suites requiring transactions
|
2014-12-20 17:30:02 +03:00
|
|
|
if (\OC::$server->getConfig()->getSystemValue('dbtype', 'sqlite') !== 'oci') {
|
2016-01-07 12:12:08 +03:00
|
|
|
\OC::$server->getDatabaseConnection()->dropTable('table');
|
2014-08-20 17:57:30 +04:00
|
|
|
}
|
2014-11-11 01:30:38 +03:00
|
|
|
|
|
|
|
parent::tearDown();
|
2014-04-17 18:12:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testAutoIncrement() {
|
2016-01-07 12:26:00 +03:00
|
|
|
$connection = \OC::$server->getDatabaseConnection();
|
2014-10-23 16:32:37 +04:00
|
|
|
if ($connection->getDatabasePlatform() instanceof OraclePlatform) {
|
2014-04-17 18:12:48 +04:00
|
|
|
$this->markTestSkipped('Adding auto increment columns in Oracle is not supported.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$manager = new \OC\DB\MDB2SchemaManager($connection);
|
|
|
|
|
|
|
|
$manager->createDbFromStructure(__DIR__ . '/ts-autoincrement-before.xml');
|
2020-03-26 11:30:18 +03:00
|
|
|
$connection->executeUpdate('insert into `*PREFIX*table` values (?)', ['abc']);
|
|
|
|
$connection->executeUpdate('insert into `*PREFIX*table` values (?)', ['abc']);
|
|
|
|
$connection->executeUpdate('insert into `*PREFIX*table` values (?)', ['123']);
|
|
|
|
$connection->executeUpdate('insert into `*PREFIX*table` values (?)', ['123']);
|
2014-04-17 18:12:48 +04:00
|
|
|
$manager->updateDbFromStructure(__DIR__ . '/ts-autoincrement-after.xml');
|
|
|
|
|
2018-01-25 13:23:12 +03:00
|
|
|
$this->addToAssertionCount(1);
|
2014-04-17 18:12:48 +04:00
|
|
|
}
|
|
|
|
}
|