Test cases for new mount management

This commit is contained in:
Robin Appelman 2013-01-26 23:49:14 +01:00
parent 69f11151e9
commit 8c42e2de8c
1 changed files with 37 additions and 0 deletions

37
tests/lib/files/mount.php Normal file
View File

@ -0,0 +1,37 @@
<?php
/**
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace Test\Files;
use \OC\Files\Storage\Temporary;
class Mount extends \PHPUnit_Framework_TestCase {
public function setup() {
\OC_Util::setupFS();
\OC\Files\Mount::clear();
}
public function testFind() {
$this->assertNull(\OC\Files\Mount::find('/'));
$rootMount = new \OC\Files\Mount(new Temporary(array()), '/');
$this->assertEquals($rootMount, \OC\Files\Mount::find('/'));
$this->assertEquals($rootMount, \OC\Files\Mount::find('/foo/bar'));
$mount = new \OC\Files\Mount(new Temporary(array()), '/foo');
$this->assertEquals($rootMount, \OC\Files\Mount::find('/'));
$this->assertEquals($mount, \OC\Files\Mount::find('/foo/bar'));
$this->assertEquals(1, count(\OC\Files\Mount::findIn('/')));
new \OC\Files\Mount(new Temporary(array()), '/bar');
$this->assertEquals(2, count(\OC\Files\Mount::findIn('/')));
$id = $mount->getStorageId();
$this->assertEquals($mount, \OC\Files\Mount::findById($id));
}
}