2015-01-27 18:55:59 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2015 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\Files\Mount;
|
|
|
|
|
2016-09-07 21:01:13 +03:00
|
|
|
use OC\Files\Storage\StorageFactory;
|
|
|
|
use OCP\Files\Storage;
|
|
|
|
|
2019-11-22 10:37:58 +03:00
|
|
|
class DummyStorage {
|
|
|
|
}
|
|
|
|
|
2016-05-20 16:38:20 +03:00
|
|
|
class MountPointTest extends \Test\TestCase {
|
2015-01-27 18:55:59 +03:00
|
|
|
public function testGetStorage() {
|
2016-09-07 21:01:13 +03:00
|
|
|
$storage = $this->createMock(Storage::class);
|
2015-01-27 18:55:59 +03:00
|
|
|
$storage->expects($this->once())
|
|
|
|
->method('getId')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn(123);
|
2015-01-27 18:55:59 +03:00
|
|
|
|
2016-09-07 21:01:13 +03:00
|
|
|
$loader = $this->createMock(StorageFactory::class);
|
2015-01-27 18:55:59 +03:00
|
|
|
$loader->expects($this->once())
|
2016-08-22 16:12:39 +03:00
|
|
|
->method('wrap')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturn($storage);
|
2015-01-27 18:55:59 +03:00
|
|
|
|
|
|
|
$mountPoint = new \OC\Files\Mount\MountPoint(
|
|
|
|
// just use this because a real class is needed
|
2019-11-22 10:37:58 +03:00
|
|
|
'\Test\Files\Mount\DummyStorage',
|
2015-01-27 18:55:59 +03:00
|
|
|
'/mountpoint',
|
|
|
|
null,
|
|
|
|
$loader
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals($storage, $mountPoint->getStorage());
|
|
|
|
$this->assertEquals(123, $mountPoint->getStorageId());
|
2015-04-13 13:36:47 +03:00
|
|
|
$this->assertEquals('/mountpoint/', $mountPoint->getMountPoint());
|
|
|
|
|
|
|
|
$mountPoint->setMountPoint('another');
|
|
|
|
$this->assertEquals('/another/', $mountPoint->getMountPoint());
|
2015-01-27 18:55:59 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testInvalidStorage() {
|
2016-09-07 21:01:13 +03:00
|
|
|
$loader = $this->createMock(StorageFactory::class);
|
2015-01-27 18:55:59 +03:00
|
|
|
$loader->expects($this->once())
|
2016-08-22 16:12:39 +03:00
|
|
|
->method('wrap')
|
2015-01-27 18:55:59 +03:00
|
|
|
->will($this->throwException(new \Exception('Test storage init exception')));
|
|
|
|
|
|
|
|
$called = false;
|
2020-04-09 14:53:40 +03:00
|
|
|
$wrapper = function ($mountPoint, $storage) use ($called) {
|
2015-01-27 18:55:59 +03:00
|
|
|
$called = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
$mountPoint = new \OC\Files\Mount\MountPoint(
|
|
|
|
// just use this because a real class is needed
|
2019-11-22 10:37:58 +03:00
|
|
|
'\Test\Files\Mount\DummyStorage',
|
2015-01-27 18:55:59 +03:00
|
|
|
'/mountpoint',
|
|
|
|
null,
|
|
|
|
$loader
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertNull($mountPoint->getStorage());
|
|
|
|
// call it again to make sure the init code only ran once
|
|
|
|
$this->assertNull($mountPoint->getStorage());
|
|
|
|
|
|
|
|
$this->assertNull($mountPoint->getStorageId());
|
|
|
|
|
|
|
|
// wrapping doesn't fail
|
|
|
|
$mountPoint->wrapStorage($wrapper);
|
|
|
|
|
|
|
|
$this->assertNull($mountPoint->getStorage());
|
|
|
|
|
|
|
|
// storage wrapper never called
|
|
|
|
$this->assertFalse($called);
|
|
|
|
}
|
|
|
|
}
|