Improve impossible exception-handler for storage move

This commit is contained in:
Philipp Holzer 2020-01-17 21:01:37 +01:00
parent 14c97f7b62
commit 732992a296
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
2 changed files with 15 additions and 2 deletions

View File

@ -240,8 +240,8 @@ class StorageManager
*/ */
public function move(Storage\IStorage $destination, array $tables = self::TABLES, int $limit = 5000) public function move(Storage\IStorage $destination, array $tables = self::TABLES, int $limit = 5000)
{ {
if ($destination === null) { if (!$this->isValidBackend($destination, true)) {
throw new Storage\StorageException('Can\'t move to NULL storage backend'); throw new Storage\StorageException(sprintf("Can't move to storage backend '%s'", $destination::getName()));
} }
$moved = 0; $moved = 0;

View File

@ -265,4 +265,17 @@ class StorageManagerTest extends DatabaseTest
$this->assertNotEmpty($data); $this->assertNotEmpty($data);
} }
} }
/**
* Test moving data to a WRONG storage
*
* @expectedException \Friendica\Model\Storage\StorageException
* @expectedExceptionMessageRegExp /Can't move to storage backend '.*'/
*/
public function testMoveStorageWrong()
{
$storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n);
$storage = $storageManager->getByName(Storage\SystemResource::getName());
$storageManager->move($storage);
}
} }