2018-07-21 14:43:43 +02:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:45:36 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-07-21 14:43:43 +02:00
|
|
|
|
2019-02-27 12:32:56 +01:00
|
|
|
namespace Friendica\Test\src\Database;
|
2018-07-21 14:43:43 +02:00
|
|
|
|
2019-07-26 15:54:14 +02:00
|
|
|
use Dice\Dice;
|
2019-07-28 17:40:42 +02:00
|
|
|
use Friendica\Database\Database;
|
2018-07-21 14:43:43 +02:00
|
|
|
use Friendica\Database\DBStructure;
|
2019-12-15 23:28:01 +01:00
|
|
|
use Friendica\DI;
|
2018-07-21 14:43:43 +02:00
|
|
|
use Friendica\Test\DatabaseTest;
|
2019-07-28 17:40:42 +02:00
|
|
|
use Friendica\Test\Util\Database\StaticDatabase;
|
2018-07-21 14:43:43 +02:00
|
|
|
|
|
|
|
class DBStructureTest extends DatabaseTest
|
|
|
|
{
|
2021-04-01 23:04:30 +02:00
|
|
|
protected function setUp(): void
|
2018-07-21 14:43:43 +02:00
|
|
|
{
|
2019-02-05 22:03:07 +01:00
|
|
|
parent::setUp();
|
2019-07-26 15:54:14 +02:00
|
|
|
|
2019-08-05 09:02:55 +02:00
|
|
|
$dice = (new Dice())
|
|
|
|
->addRules(include __DIR__ . '/../../../static/dependencies.config.php')
|
|
|
|
->addRule(Database::class, ['instanceOf' => StaticDatabase::class, 'shared' => true]);
|
2019-12-15 23:28:01 +01:00
|
|
|
DI::init($dice);
|
2018-07-21 14:43:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @small
|
|
|
|
*/
|
|
|
|
public function testExists() {
|
2020-10-17 14:19:57 +02:00
|
|
|
self::assertTrue(DBStructure::existsTable('config'));
|
|
|
|
self::assertFalse(DBStructure::existsTable('notatable'));
|
2018-07-21 14:43:43 +02:00
|
|
|
|
2020-10-17 14:19:57 +02:00
|
|
|
self::assertTrue(DBStructure::existsColumn('config', ['k']));
|
|
|
|
self::assertFalse(DBStructure::existsColumn('config', ['nonsense']));
|
|
|
|
self::assertFalse(DBStructure::existsColumn('config', ['k', 'nonsense']));
|
2018-07-21 14:43:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @small
|
|
|
|
*/
|
|
|
|
public function testRename() {
|
|
|
|
$fromColumn = 'k';
|
|
|
|
$toColumn = 'key';
|
|
|
|
$fromType = 'varbinary(255) not null';
|
|
|
|
$toType = 'varbinary(255) not null comment \'Test To Type\'';
|
|
|
|
|
2020-10-17 14:19:57 +02:00
|
|
|
self::assertTrue(DBStructure::rename('config', [ $fromColumn => [ $toColumn, $toType ]]));
|
|
|
|
self::assertTrue(DBStructure::existsColumn('config', [ $toColumn ]));
|
|
|
|
self::assertFalse(DBStructure::existsColumn('config', [ $fromColumn ]));
|
2018-07-21 14:43:43 +02:00
|
|
|
|
2020-10-17 14:19:57 +02:00
|
|
|
self::assertTrue(DBStructure::rename('config', [ $toColumn => [ $fromColumn, $fromType ]]));
|
|
|
|
self::assertTrue(DBStructure::existsColumn('config', [ $fromColumn ]));
|
|
|
|
self::assertFalse(DBStructure::existsColumn('config', [ $toColumn ]));
|
2018-07-21 14:43:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @small
|
|
|
|
*/
|
|
|
|
public function testChangePrimaryKey() {
|
2020-10-18 20:31:57 +02:00
|
|
|
static::markTestSkipped('rename primary key with autoincrement and foreign key support necessary first');
|
2020-05-15 23:09:50 +02:00
|
|
|
$oldID = 'client_id';
|
2018-07-21 14:43:43 +02:00
|
|
|
$newID = 'pw';
|
|
|
|
|
2020-10-17 14:19:57 +02:00
|
|
|
self::assertTrue(DBStructure::rename('clients', [ $newID ], DBStructure::RENAME_PRIMARY_KEY));
|
|
|
|
self::assertTrue(DBStructure::rename('clients', [ $oldID ], DBStructure::RENAME_PRIMARY_KEY));
|
2018-07-21 14:43:43 +02:00
|
|
|
}
|
|
|
|
}
|