123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <?php
- /**
- * Copyright (c) 2014 Vincent Petry <pvince81@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
- namespace Test\Repair;
- /**
- * Tests for the converting of legacy storages to home storages.
- *
- * @see \OC\Repair\RepairLegacyStorages
- */
- class RepairLegacyStorages extends \Test\TestCase {
- private $connection;
- private $config;
- private $user;
- private $repair;
- private $dataDir;
- private $oldDataDir;
- private $legacyStorageId;
- private $newStorageId;
- private $warnings;
- protected function setUp() {
- parent::setUp();
- $this->config = \OC::$server->getConfig();
- $this->connection = \OC_DB::getConnection();
- $this->oldDataDir = $this->config->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data/');
- $this->repair = new \OC\Repair\RepairLegacyStorages($this->config, $this->connection);
- $this->warnings = [];
- $this->repair->listen('\OC\Repair', 'warning', function ($description){
- $this->warnings[] = $description;
- });
- }
- protected function tearDown() {
- \OC_User::deleteUser($this->user);
- $sql = 'DELETE FROM `*PREFIX*storages`';
- $this->connection->executeQuery($sql);
- $sql = 'DELETE FROM `*PREFIX*filecache`';
- $this->connection->executeQuery($sql);
- \OCP\Config::setSystemValue('datadirectory', $this->oldDataDir);
- $this->config->setAppValue('core', 'repairlegacystoragesdone', 'no');
- parent::tearDown();
- }
- function prepareSettings($dataDir, $userId) {
- // hard-coded string as we want a predictable fixed length
- // no data will be written there
- $this->dataDir = $dataDir;
- \OCP\Config::setSystemValue('datadirectory', $this->dataDir);
- $this->user = $userId;
- $this->legacyStorageId = 'local::' . $this->dataDir . $this->user . '/';
- $this->newStorageId = 'home::' . $this->user;
- \OC_User::createUser($this->user, $this->user);
- }
- /**
- * Create a storage entry
- *
- * @param string $storageId
- */
- private function createStorage($storageId) {
- $sql = 'INSERT INTO `*PREFIX*storages` (`id`)'
- . ' VALUES (?)';
- $storageId = \OC\Files\Cache\Storage::adjustStorageId($storageId);
- $numRows = $this->connection->executeUpdate($sql, array($storageId));
- $this->assertEquals(1, $numRows);
- return \OC_DB::insertid('*PREFIX*storages');
- }
- /**
- * Returns the storage id based on the numeric id
- *
- * @param int $numericId numeric id of the storage
- * @return string storage id or null if not found
- */
- private function getStorageId($storageId) {
- $numericId = \OC\Files\Cache\Storage::getNumericStorageId($storageId);
- if (!is_null($numericId)) {
- return (int)$numericId;
- }
- return null;
- }
- /**
- * Create dummy data in the filecache for the given storage numeric id
- *
- * @param string $storageId storage id
- */
- private function createData($storageId) {
- $cache = new \OC\Files\Cache\Cache($storageId);
- $cache->put(
- 'dummyfile.txt',
- array('size' => 5, 'mtime' => 12, 'mimetype' => 'text/plain')
- );
- }
- /**
- * Test that existing home storages are left alone when valid.
- * @dataProvider settingsProvider
- */
- public function testNoopWithExistingHomeStorage($dataDir, $userId) {
- $this->prepareSettings($dataDir, $userId);
- $newStorageNumId = $this->createStorage($this->newStorageId);
- $this->repair->run();
- $this->assertNull($this->getStorageId($this->legacyStorageId));
- $this->assertEquals($newStorageNumId, $this->getStorageId($this->newStorageId));
- }
- /**
- * Test that legacy storages are converted to home storages when
- * the latter does not exist.
- * @dataProvider settingsProvider
- */
- public function testConvertLegacyToHomeStorage($dataDir, $userId) {
- $this->prepareSettings($dataDir, $userId);
- $legacyStorageNumId = $this->createStorage($this->legacyStorageId);
- $this->repair->run();
- $this->assertNull($this->getStorageId($this->legacyStorageId));
- $this->assertEquals($legacyStorageNumId, $this->getStorageId($this->newStorageId));
- }
- /**
- * Test that legacy storages are converted to home storages
- * when home storage already exists but has no data.
- * @dataProvider settingsProvider
- */
- public function testConvertLegacyToExistingEmptyHomeStorage($dataDir, $userId) {
- $this->prepareSettings($dataDir, $userId);
- $legacyStorageNumId = $this->createStorage($this->legacyStorageId);
- $newStorageNumId = $this->createStorage($this->newStorageId);
- $this->createData($this->legacyStorageId);
- $this->repair->run();
- $this->assertNull($this->getStorageId($this->legacyStorageId));
- $this->assertEquals($legacyStorageNumId, $this->getStorageId($this->newStorageId));
- }
- /**
- * Test that legacy storages are converted to home storages
- * when home storage already exists and the legacy storage
- * has no data.
- * @dataProvider settingsProvider
- */
- public function testConvertEmptyLegacyToHomeStorage($dataDir, $userId) {
- $this->prepareSettings($dataDir, $userId);
- $legacyStorageNumId = $this->createStorage($this->legacyStorageId);
- $newStorageNumId = $this->createStorage($this->newStorageId);
- $this->createData($this->newStorageId);
- $this->repair->run();
- $this->assertNull($this->getStorageId($this->legacyStorageId));
- $this->assertEquals($newStorageNumId, $this->getStorageId($this->newStorageId));
- }
- /**
- * Test that nothing is done when both conflicting legacy
- * and home storage have data.
- * @dataProvider settingsProvider
- */
- public function testConflictNoop($dataDir, $userId) {
- $this->prepareSettings($dataDir, $userId);
- $legacyStorageNumId = $this->createStorage($this->legacyStorageId);
- $newStorageNumId = $this->createStorage($this->newStorageId);
- $this->createData($this->legacyStorageId);
- $this->createData($this->newStorageId);
- $this->repair->run();
- $this->assertEquals(2, count($this->warnings));
- $this->assertEquals('Could not repair legacy storage ', substr(current($this->warnings), 0, 32));
- // storages left alone
- $this->assertEquals($legacyStorageNumId, $this->getStorageId($this->legacyStorageId));
- $this->assertEquals($newStorageNumId, $this->getStorageId($this->newStorageId));
- // do not set the done flag
- $this->assertNotEquals('yes', $this->config->getAppValue('core', 'repairlegacystoragesdone'));
- }
- /**
- * Test that the data dir local entry is left alone
- * @dataProvider settingsProvider
- */
- public function testDataDirEntryNoop($dataDir, $userId) {
- $this->prepareSettings($dataDir, $userId);
- $storageId = 'local::' . $this->dataDir;
- $numId = $this->createStorage($storageId);
- $this->repair->run();
- $this->assertEquals($numId, $this->getStorageId($storageId));
- }
- /**
- * Test that external local storages are left alone
- * @dataProvider settingsProvider
- */
- public function testLocalExtStorageNoop($dataDir, $userId) {
- $this->prepareSettings($dataDir, $userId);
- $storageId = 'local::/tmp/somedir/' . $this->user;
- $numId = $this->createStorage($storageId);
- $this->repair->run();
- $this->assertEquals($numId, $this->getStorageId($storageId));
- }
- /**
- * Test that other external storages are left alone
- * @dataProvider settingsProvider
- */
- public function testExtStorageNoop($dataDir, $userId) {
- $this->prepareSettings($dataDir, $userId);
- $storageId = 'smb::user@password/tmp/somedir/' . $this->user;
- $numId = $this->createStorage($storageId);
- $this->repair->run();
- $this->assertEquals($numId, $this->getStorageId($storageId));
- }
- /**
- * Provides data dir and user name
- */
- function settingsProvider() {
- return array(
- // regular data dir
- array(
- '/tmp/oc-autotest/datadir/',
- $this->getUniqueID('user_'),
- ),
- // long datadir / short user
- array(
- '/tmp/oc-autotest/datadir01234567890123456789012345678901234567890123456789END/',
- $this->getUniqueID('user_'),
- ),
- // short datadir / long user
- array(
- '/tmp/oc-autotest/datadir/',
- 'u123456789012345678901234567890123456789012345678901234567890END', // 64 chars
- ),
- );
- }
- /**
- * Only run the repair once
- */
- public function testOnlyRunOnce() {
- $output = array();
- $this->repair->listen('\OC\Repair', 'info', function ($description) use (&$output) {
- $output[] = 'info: ' . $description;
- });
- $this->prepareSettings('/tmp/oc-autotest/datadir', $this->getUniqueID('user_'));
- $this->assertNotEquals('yes', $this->config->getAppValue('core', 'repairlegacystoragesdone'));
- $this->repair->run();
- $this->assertEquals(1, count($output));
- $this->assertEquals('yes', $this->config->getAppValue('core', 'repairlegacystoragesdone'));
- $output = array();
- $this->repair->run();
- // no output which means it did not run
- $this->assertEquals(0, count($output));
- $this->assertEquals('yes', $this->config->getAppValue('core', 'repairlegacystoragesdone'));
- }
- }
|