2015-03-03 13:27:06 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2015 Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\Repair;
|
2016-04-22 16:35:39 +03:00
|
|
|
use OCP\Migration\IOutput;
|
2015-03-03 13:27:06 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests for the dropping old tables
|
|
|
|
*
|
2015-11-03 03:52:41 +03:00
|
|
|
* @group DB
|
|
|
|
*
|
2015-03-03 13:27:06 +03:00
|
|
|
* @see \OC\Repair\DropOldTables
|
|
|
|
*/
|
2016-05-20 16:38:20 +03:00
|
|
|
class DropOldTablesTest extends \Test\TestCase {
|
2015-03-03 13:27:06 +03:00
|
|
|
/** @var \OCP\IDBConnection */
|
|
|
|
protected $connection;
|
|
|
|
|
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->connection = \OC::$server->getDatabaseConnection();
|
|
|
|
$manager = new \OC\DB\MDB2SchemaManager($this->connection);
|
|
|
|
$manager->createDbFromStructure(__DIR__ . '/fixtures/dropoldtables.xml');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRun() {
|
|
|
|
$this->assertFalse($this->connection->tableExists('sharing'), 'Asserting that the table oc_sharing does not exist before repairing');
|
|
|
|
$this->assertTrue($this->connection->tableExists('permissions'), 'Asserting that the table oc_permissions does exist before repairing');
|
|
|
|
|
2016-04-22 16:35:39 +03:00
|
|
|
/** @var IOutput | \PHPUnit_Framework_MockObject_MockObject $outputMock */
|
|
|
|
$outputMock = $this->getMockBuilder('\OCP\Migration\IOutput')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
2015-03-03 13:27:06 +03:00
|
|
|
$repair = new \OC\Repair\DropOldTables($this->connection);
|
2016-04-22 16:35:39 +03:00
|
|
|
$repair->run($outputMock);
|
2015-03-03 13:27:06 +03:00
|
|
|
|
|
|
|
$this->assertFalse($this->connection->tableExists('sharing'), 'Asserting that the table oc_sharing does not exist after repairing');
|
|
|
|
$this->assertFalse($this->connection->tableExists('permissions'), 'Asserting that the table oc_permissions does not exist after repairing');
|
|
|
|
}
|
|
|
|
}
|